MyLinux Learning Path
Do Linux to learn Linux. Set current directory to: ~/Desktop/. File and group owner is javierma36.
- Create a txt file (Code1.txt) using touch command. Identify and print separately (user, group, other) the default access control assigned.
- Create a directory (Delta_Proyect) using mkdir command. Identify and print separately (user, group, other) the default access control assigned.
- What does it means: xrw access control.
- Change user access control permissions of Code1.txt to: x-- and try to open the file.
- What does it means: $ chmod u-x Code1.txt ?
- What does it means: $ chmod ug+w Code1.txt ?
- What does it means: $ chmod a+x Code1.txt ?
- What does it means: $ chmod 444 Code1.txt ?
- What does it means: $ chmod 111 Code1.txt ?
- What does it means: $ chmod 222 Code1.txt ?
- What does it means: $ chmod 666 Code1.txt ?
- What does it means: $ chmod 777 Code1.txt ?
- What does it means: $ chmod 600 Code1.txt ?
- Is this possible: chmod 777 Code1.txt Delta_Proyect/ ?
- Imagine that user "alex" exists. Is this possible: $ chown alex Delta_Proyect/ ? Who is the group owner ?
- Imagine that user "alex" exists. Is this possible: $ sudo chown alex Delta_Proyect/ ? Who is the group owner ?
- Imagine that user "alex" exists. Is this possible: # chown alex Delta_Proyect/ ? Who is the group owner ?
- Imagine that user "alex" exists. Is this possible: $ chown alex:alex Code1.txt/ ? Who is the user and group owner now.?
- Imagine that user "alex" exists. Is this possible: $ sudo chown alex:alex Code1.txt/ ? Who is the user and group owner now.?
- Imagine that user "alex" exists. Is this possible: # chown alex:alex Code1.txt/ ? Who is the user and group owner now.?
- Imagine that user "alex" exists. Is this possible: # chgrp alex Code1.txt/ ? Who is the user and group owner now.?
- Imagine that user "alex" exists. Is this possible: $ chgrp alex Code1.txt/ ? Who is the user and group owner now.?
- Imagine that user "alex" exists. Is this possible: $ sudo chgrp alex Code1.txt/ ? Who is the user and group owner now.?
No comments:
Post a Comment