Tailles des fichiers et sous-répertoires du dossier courant, dans l’ordre décroissant de taille:du -a –max-depth=1 | sort -nr Liste des 10 plus gros fichiers du répertoire courant et de ses sous-repertoires, dans l’ordre décroissant de taille:du -a | sort -nr | head -n 10 Taille du répertoire courantdu -hs Astuce: la commande « du » accepte en…
Lire la suite
fichier :find . -type f | wc -l répertoire :find . -type d | wc -l
Démarrer un service sur un ordinateur distant sc \\serveur start SERVICE par exemple : sc \\SRVSQL start MSSQLSERVER Arrêter un service sur un ordinateur distant sc \\serveur stop SERVICE par exemple : sc \\SRVBACKUP stop BackupExecRPCService Suspendre un service sur un ordinateur distant sc \\serveur pause SERVICE par exemple : sc \\SRVORACLE pause OracleServiceORCL Connaitre…
Lire la suite
$ du -hs backup/18G backup/ h pour « Human Readable »: sans le résultat aurait été « 18078868 »
whereis You use this command to find three paths. Two of them are the paths of executable files and third one is the path of a man online help file. This search is really quick because it does not look up from the hard disk; instead it queries directly from the database. whereis can only search for binary files…
Lire la suite
Use the command declare to create a variable named tmp: In fact, you don’t need to declare a variable at first, you can create it when you want to use it. Use = to assign the variable tmp to labex Use echo and $ to read the value of a variable($ is used to refer to the value of a variable, don’t forget to enter it.):
Create a new file Create a new directory Using mkdir with the -p parameter can create the parent directory if the parent directory does not exist. We create multi-level directories (this is useful when installing software and configuring installation paths):
Les groupes sont disponibles dans le fichier /etc/group. Il est possible de connaître les groupes d’un utilisateur à l’aide de l’une des commandes groups, id ou: cat /etc/group Pour en créer un: groupadd <groupe> Ajouter un utilisateur au groupe: gpasswd -a <utilisateur> <groupe> Il est possible de rajouter plusieurs groupes à un utilisateur: usermod -aG groupe1,groupe2 <utilisateur> Pour effacer…
Lire la suite
A. CSH is default shell under FreeBSD. First, make sure bash is installed. Type bash to see if you can execute bash:$ bashIf you get command not found error. Use pkg_add command to install bash# pkg_add -r -v bash Now to setup bash as shell type chsh command.chsh -s /path/to/shell {user-name} chsh changes the user…
Lire la suite
Shortcut Key Function Ctrl + d Keyboard input ends or exits the terminal Ctrl + s Pause the current program and press any key to resume it Ctrl + z Put the current program into the background Ctrl + a Move the cursor to the beginning of the input line, equivalent to Home Ctrl + e…
Lire la suite