mkdir:ai:b8447
Créer /home/etudiant/projet1 avec 3 fichiers et 1 sous-répertoire. • Appliquer des permissions différentes (u,g,o) avec chmod symbolique et octal. • Changer propriétaire et groupe avec chown/chgrp. • Créer un 2e utilisateur et tester les accès.
$ mkdir -p /home/etudiant/projet1 && touch /home/etudiant/projet1/file1 /home/etudiant/projet1/file2 /home/etudiant/projet1/file3 && mkdir /home/etudiant/projet1/sous_repertoire && chmod u=rw,g=r,o=r /home/etudiant/projet1/file1 && chmod 740 /home/etudiant/projet1/file2 && chown user1 /home/etudiant/projet1/file3 && chgrp group1 /home/etudiant/projet1/file3
try on your machine
Creates /home/etudiant/projet1 with 3 files and 1 sub-directory, applies different permissions using chmod symbolic and octal, changes owner and group using chown/chgrp commands.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- Créer /home/etudiant/projet1 avec 3 fichiers et 1 sous-répertoire. • Appliquer des permissions différentes (u,g,o) avec chmod symbolique et octal. • Changer propriétaire et groupe avec chown/chgrp. • Créer un 2e utilisateur et tester les accès.?