Quite simple to do if I only remember the command.
find -name *partoffilename* |
Will search from the current directory or a directory can be specified
find /the/path/ -name *partoffilename* |
Quite simple to do if I only remember the command.
find -name *partoffilename* |
Will search from the current directory or a directory can be specified
find /the/path/ -name *partoffilename* |
To add a existing user to a group
usermod -a -G thegroup theuser |
To add a user to a group when the user is created
useradd -G thegroup theuser |