Investigating launched programs
In the previous chapter, we already discussed the process of profile creation for Linux-based systems, so now we'll restrict ourselves to checking which profiles you have available.
Let's assume that you have created a profile and placed it in the profiles folder. Don't forget that you need to pass the path to this folder using the --plugins
option. To check that your profiles are available for use you can run --info
. In order to get only the necessary output, we use grep
, a command-line utility that allows us to find lines that match a given regular expression in the input and print them out:
As you can see, we have several Ubuntu profiles at our disposal, as well as a Debian profile. Similarly, we can see a list of all plugins available for use with these profiles:
Now that we have ensured...