This is a low level command to add groups.
What is groupadd?
This command displays UID, GID, and groups you are a part of.
What is id?
This command allows the system administrator to change your password.
What is sudo passwd user -?
This command changes the group on the file wigs4me.txt that doesn't use chown.
What is chgrp empire wigs4me.txt?
This command gives others only the read privilege and not the write or execute privileges on test.txt
What is chmod o=r test.txt?
This is a low level command to remove groups
What is groupdel?
This command displays UID, GID, and groups of the username.
What is id username?
This command shows information about files including size, permissions, owner, and modified date
What is ls -l?
This command gives all permissions to the user, group, and others on the file test.txt
What is chmod 777 test.txt?
These are permissions on a symbolic link.
What is 'lrwxrwxrwx'?
This command Adds a bob to students group
What is addgroup bob students?
This command allows you to switch user to bob - requires sudo permissions or bob's password
What is su - bob?
This command changes the user-owner to 'vader' for the file wigs4me.txt
What is chown vader wigs4me.txt?
This command gives read and write permissions to the user, group, and others on the file test.txt
What is chmod 666 test.txt?
This command gives the user, group, and others the privilege to read and write but not to execute.
What is chmod a=rw test.txt?
This command removes bob from students group
What is delgroup bob students?
This command allows you to login as bob.
What is sudo login bob -?
This command changes the group to 'empire' for the file wigs4me.txt
What is chown :empire wigs4me.txt?
This command gives the user write privileges on test.txt
What is chmod u+w test.txt?
This is the octal representation for read.
What is 100 - 4?
This command tells user which groups the user belongs to.
What is groups?
This command allows the user to change their password
What is passwd?
This command changes the user-owner to 'vader' and the group to 'empire' on the file wigs4me.txt
What is chown vader:empire wigs4me.txt?
This command takes away the execute privilege for the group on the file test.txt
What is chmod g-x test.txt?
This is the octal representation for write.
What is 010 - 2?