Correction Examen de Passage TSRI Partie Linux Pratique Variante 2
Page 1 sur 2 • Partagez
Page 1 sur 2 • 1, 2
Correction Examen de Passage TSRI Partie Linux Pratique Variante 2
Le script a débuté, le fichier est MR.ADAM
[tri@localhost~]$ su root*
su: L'usager root* n'existe pas.
[tri@localhost ~]$ su root
Mot de passe :
[root@localhost tri]# mkdir tpunix1
[root@localhost tri]# cd tpunix1
[root@localhost tpunix1]# vi semaine.txt
[root@localhost tpunix1]# wc -l semaine.txt
7 semaine.txt
[root@localhost tpunix1]# head -5 semaine.txt
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
[root@localhost tpunix1]# more +3 -5 semaine.txt
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]#
[root@localhost tpunix1]# more +3 -3 semaine.txt
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# find -size <2 /bin |touch hebdo.txt
bash: 2: Aucun fichier ou dossier de ce type
[root@localhost tpunix1]# find -size -2 | touch hebdo.txt/bin
touch: ne peut faire un touch sur `hebdo.txt/bin': N'est pas un dossier
[root@localhost tpunix1]# find grep [345] semaine.txt
find:"grep": Aucun fichier ou dossier de ce type
find:"[345]": Aucun fichier ou dossier de ce typ esemaine.txt
[root@localhost tpunix1]# grep [345] semaine.txt
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
[root@localhost tpunix1]# find -size 2 semaine.txt
find: les chemins doivent précéder l'expression : semaine.txt
Utilisation : find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [chemin...][expression]
[root@localhost tpunix1]# find /bin -size -2k >hebdo.txt
[root@localhost tpunix1]# grep -i semaine.txt
^[
[root@localhost tpunix1]# grep -i ligne semaine.txt
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# grep [J,L-P] semaine.txt
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# ls semaine.txt phys
ls: ne peut accéder phys: Aucun fichier ou dossier de ce type
semaine.txt
[root@localhost tpunix1]# ln semaine.txt phys
[root@localhost tpunix1]# ln -s semaine.txt symb
[root@localhost tpunix1]# rmdir semaine.txt
rmdir: échec de suppression de `semaine.txt': N'est pas un dossier
[root@localhost tpunix1]# rm semaine.txt
rm: détruire fichier régulier `semaine.txt'?
[root@localhost tpunix1]# cut dymb
cut: Une liste d'octets, de caractères, ou de champs doit être spécifiée.
Pour en savoir davantage, faites: « cut --help ».
[root@localhost tpunix1]# cat phys
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# cat symb
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# ls symb
symb
[root@localhost tpunix1]# ls -l symb
lrwxrwxrwx. 1 root root 11 juin 9 10:32 symb ->semaine.txt
[root@localhost tpunix1]# useradd Toni
useradd : nom d'utilisateur « Toni » non valable
[root@localhost tpunix1]# useradd toni
[root@localhost tpunix1]# useradd moni
[root@localhost tpunix1]# passwd toni
Changement de mot de passe pour l'utilisateur toni.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
Les mots de passe ne correspondent pas.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
Les mots de passe ne correspondent pas.
Nouveau mot de passe :
Changement du mot de passe avorté.
passwd: Nombre maximum de tentatives épuisées pour le service
[root@localhost tpunix1]# passwd moni
Changement de mot de passe pour l'utilisateur moni.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
MOT DE PASSE INCORRECT : trop simple/systématique
MOT DE PASSE INCORRECT : est trop simple
passwd : mise à jour réussie de tous les jetons d'authentification.
[root@localhost tpunix1]# passwd toni
Changement de mot de passe pour l'utilisateur toni.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
MOT DE PASSE
INCORRECT : basé sur un mot du dictionnaire
MOT DE PASSE INCORRECT : est trop simple
passwd : mise à jour réussie de tous les jetons d'authentification.
[root@localhost tpunix1]# touch fichier.txt
[root@localhost tpunix1]# chmod 222 fichier.txt
[root@localhost tpunix1]# ls fichier.txt
fichier.txt
[root@localhost tpunix1]# ls -l fichier.txt
--w--w--w-. 1 root root 0 juin 9 10:47 fichier.txt
[root@localhost tpunix1]# mkdir savoir
[root@localhost tpunix1]# cd savoir
[root@localhost savoir]# mkdir histoire
[root@localhost savoir]#
[tri@localhost~]$ su root*
su: L'usager root* n'existe pas.
[tri@localhost ~]$ su root
Mot de passe :
[root@localhost tri]# mkdir tpunix1
[root@localhost tri]# cd tpunix1
[root@localhost tpunix1]# vi semaine.txt
[root@localhost tpunix1]# wc -l semaine.txt
7 semaine.txt
[root@localhost tpunix1]# head -5 semaine.txt
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
[root@localhost tpunix1]# more +3 -5 semaine.txt
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]#
[root@localhost tpunix1]# more +3 -3 semaine.txt
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# find -size <2 /bin |touch hebdo.txt
bash: 2: Aucun fichier ou dossier de ce type
[root@localhost tpunix1]# find -size -2 | touch hebdo.txt/bin
touch: ne peut faire un touch sur `hebdo.txt/bin': N'est pas un dossier
[root@localhost tpunix1]# find grep [345] semaine.txt
find:"grep": Aucun fichier ou dossier de ce type
find:"[345]": Aucun fichier ou dossier de ce typ esemaine.txt
[root@localhost tpunix1]# grep [345] semaine.txt
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
[root@localhost tpunix1]# find -size 2 semaine.txt
find: les chemins doivent précéder l'expression : semaine.txt
Utilisation : find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [chemin...][expression]
[root@localhost tpunix1]# find /bin -size -2k >hebdo.txt
[root@localhost tpunix1]# grep -i semaine.txt
^[
[root@localhost tpunix1]# grep -i ligne semaine.txt
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# grep [J,L-P] semaine.txt
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# ls semaine.txt phys
ls: ne peut accéder phys: Aucun fichier ou dossier de ce type
semaine.txt
[root@localhost tpunix1]# ln semaine.txt phys
[root@localhost tpunix1]# ln -s semaine.txt symb
[root@localhost tpunix1]# rmdir semaine.txt
rmdir: échec de suppression de `semaine.txt': N'est pas un dossier
[root@localhost tpunix1]# rm semaine.txt
rm: détruire fichier régulier `semaine.txt'?
[root@localhost tpunix1]# cut dymb
cut: Une liste d'octets, de caractères, ou de champs doit être spécifiée.
Pour en savoir davantage, faites: « cut --help ».
[root@localhost tpunix1]# cat phys
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# cat symb
Lundi est la ligne n°1
Mardi est la liGNe n°2
Mercredi est la Ligne n°3
Jeudi est la lignE n°4
Vendredi est la LIGNE n°5
Samedi est la ligne n°6
Dimanche est la ligne n°7
[root@localhost tpunix1]# ls symb
symb
[root@localhost tpunix1]# ls -l symb
lrwxrwxrwx. 1 root root 11 juin 9 10:32 symb ->semaine.txt
[root@localhost tpunix1]# useradd Toni
useradd : nom d'utilisateur « Toni » non valable
[root@localhost tpunix1]# useradd toni
[root@localhost tpunix1]# useradd moni
[root@localhost tpunix1]# passwd toni
Changement de mot de passe pour l'utilisateur toni.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
Les mots de passe ne correspondent pas.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
Les mots de passe ne correspondent pas.
Nouveau mot de passe :
Changement du mot de passe avorté.
passwd: Nombre maximum de tentatives épuisées pour le service
[root@localhost tpunix1]# passwd moni
Changement de mot de passe pour l'utilisateur moni.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
MOT DE PASSE INCORRECT : trop simple/systématique
MOT DE PASSE INCORRECT : est trop simple
passwd : mise à jour réussie de tous les jetons d'authentification.
[root@localhost tpunix1]# passwd toni
Changement de mot de passe pour l'utilisateur toni.
Nouveau mot de passe :
Retapez le nouveau mot de passe :
MOT DE PASSE
INCORRECT : basé sur un mot du dictionnaire
MOT DE PASSE INCORRECT : est trop simple
passwd : mise à jour réussie de tous les jetons d'authentification.
[root@localhost tpunix1]# touch fichier.txt
[root@localhost tpunix1]# chmod 222 fichier.txt
[root@localhost tpunix1]# ls fichier.txt
fichier.txt
[root@localhost tpunix1]# ls -l fichier.txt
--w--w--w-. 1 root root 0 juin 9 10:47 fichier.txt
[root@localhost tpunix1]# mkdir savoir
[root@localhost tpunix1]# cd savoir
[root@localhost savoir]# mkdir histoire
[root@localhost savoir]#
Mr.adam-
- Nombre de messages : 78
Date d'inscription : 27/12/2009
Re: Correction Examen de Passage TSRI Partie Linux Pratique Variante 2
MERCI;mais dsl ne9olek hadchi fih bezaaaf de a5eta2;
nissi-
- Nombre de messages : 69
Date d'inscription : 29/05/2010
Re: Correction Examen de Passage TSRI Partie Linux Pratique Variante 2
merci khay momkin tashih svp ok
Mr.adam-
- Nombre de messages : 78
Date d'inscription : 27/12/2009
Re: Correction Examen de Passage TSRI Partie Linux Pratique Variante 2
find -size <2 /bin |touch hebdo.txt
homa 9ALO créez un fichier qui port les noms des fichiers 2 ko
be3eda dek 2 ko 5esa tete7awel n bloc 2KO=2000 O
2000/512 ----> 3 BLOC
find / bin -size -3 > hebdo.txt
homa 9ALO créez un fichier qui port les noms des fichiers 2 ko
be3eda dek 2 ko 5esa tete7awel n bloc 2KO=2000 O
2000/512 ----> 3 BLOC
find / bin -size -3 > hebdo.txt
nissi-
- Nombre de messages : 69
Date d'inscription : 29/05/2010
Re: Correction Examen de Passage TSRI Partie Linux Pratique Variante 2
RQ HADI KHETEK MACHI KHAK
nissi-
- Nombre de messages : 69
Date d'inscription : 29/05/2010
Page 1 sur 2 • 1, 2
Sujets similaires
» Examen de passage 2010 TSRI Pratique Variante 1 avec la correction
» correction examen pratique 2012 v1/1 partie 1 tsri full
» Correction de Examen Pratique eff 2010 (V3-V6-V9) sans la partie de linux
» La correction de l'examen de fin de formation 2013 pratique Partie Linux
» Correction de l'Examen de Fin de Formation 2012 TSRI Pratique Variante 2
» correction examen pratique 2012 v1/1 partie 1 tsri full
» Correction de Examen Pratique eff 2010 (V3-V6-V9) sans la partie de linux
» La correction de l'examen de fin de formation 2013 pratique Partie Linux
» Correction de l'Examen de Fin de Formation 2012 TSRI Pratique Variante 2
Page 1 sur 2
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum
Ven Nov 16, 2018 6:14 pm par tri2b
» Examen de fin de formation Théorique 2018 TDM
Mar Juin 19, 2018 8:08 pm par Mr.Ayoub
» Examen de Passage Chef Chantier TP 2010 Pratique
Lun Juin 04, 2018 11:07 am par Mr.Ayoub
» Examen de fin de formation Chef de Chantier T.P 2012 Théorique
Dim Juin 03, 2018 3:59 pm par Mr.Ayoub
» Examen de fin de formation TSGO 2016 Pratique Variante 1
Dim Juin 03, 2018 3:36 pm par Mr.Ayoub
» Examen de fin de formation Chef de Chantier T.P 2008 Théorique
Dim Juin 03, 2018 3:25 pm par Mr.Ayoub
» Examen de Passage Chef de Chantier T.P 2008 Théorique et Pratique
Dim Juin 03, 2018 3:24 pm par Mr.Ayoub
» Examen de Fin de Formation Gestion des Entreprises TSGE 2015
Mar Mai 29, 2018 12:18 pm par Mr.Ayoub
» Examen de Passage 2015 Gestion des Entreprises TSGE
Mar Mai 29, 2018 11:55 am par Mr.Ayoub
» Examen de Passage Gestion des Entreprises TSGE 2017
Mar Mai 29, 2018 11:51 am par Mr.Ayoub