Catégorie : Linux divers
-
pam_loginuid(crond:session): set_loginuid failed opening loginuid
Quand on a des centaines de lignes de ce genre dans les fichiers de log (cause kernel modifié ?) : pam_loginuid(crond:session): set_loginuid failed opening loginuid Faire : cd /etc/pam.d =>editer le fichier crond et commenter la ligne : #session required pam_loginuid.so
-
Move and copy files
The mv command syntax looks like this: mv configuration.php-dist configuration.php By issuing the above command we will move (rename) the file configuration.php-dist to configuration.php. You can also use mv to move a whole directory and its content: mv includes/* ./ This will move all files (and folders) in the includes/ directory to the current working…
-
Archiver – gzip et zip
http://www.centos.org/docs/2/rhl-gsg-en-7.2/s1-zip-tar.html File Compression and Archiving with Gzip, Zip, and Tar Compressing with Gzip and Zip Compressed files use less disk space and download faster than large, uncompressed files. You can compress Linux files with the open-source compression tool Gzip or with Zip, which is recognized by most operating systems. By convention, compressed files are given…
-
Arrêter et redémarrer son ordinateur
shutdown -r now (reboot now) shutdown -h now (halt now) Dans 30 min : pour éteindre : shutdown -h +30 pour rebooter : shutdown -r +30 A une heure fixe ( 23:00) : Pour l’éteindre : shutdown -h 23:00 Pour redémarrer : shutdown -r 23:00 Annuler la planification : shutdown -c
-
Crypter des données dans un répertoire
A lire ici : http://forum.ubuntu-fr.org/viewtopic.php?id=54333&p=1 sudo apt-get install fuse-utils sudo apt-get install encfs sudo sh -c « echo fuse >> /etc/modules » sudo modprobe fuse sudo adduser NomUtilisateur fuse grep « fuse » « /etc/group » encfs /home/NomUtilisateur/.infoscryptees/ /home/NomUtilisateur/infoscryptees fusermount -u /home/NomUtilisateur/infoscryptees
-
Supprimer un répertoire et son contenu
rm -r -f YourDirectory rm = remove / delete -r = recursively deletes the directory and all files in it, including subdirectories -f = will not ask for confirmation before deleting ////////// UBUNTU /////// sudo rm -rf /le_dossier
-
Changer le mot de passe root
Connecté en root, taper : passwd puis le nouveau mot de passe.
-
Tar, tar.gz
From : http://www.simplehelp.net/2008/12/15/how-to-create-and-extract-zip-tar-targz-and-tarbz2-files-in-linux/ TAR Here’s how you compress a directory: # tar -cvf archive_name.tar directory_to_compress And to extract the archive: # tar -xvf archive_name.tar.gz This will extract the files in the archive_name.tar archive in the current directory. Like with the tar format you can optionally extract the files to a different directory: # tar -xvf…
-
SSH Commands
Check total disk usage : df Compress files and directories : tar => creating and extracting .tar.gz and .tar files tar -zxvf file.tar.gz : Extracts the file tar -xvf file.tar : Extracts the file tar -cf archive.tar contents/ : Takes everything from contents/ and puts it into archive.tar gzip -d filename.gz : Decompress the file,…
-
Connaître la version et le nom d’une distribution
uname -a donne quelques infos (kernel, processeurs, nom de machine,…) Sinon, pour avoir la version : cat /etc/*release* ou encore pour gentoo : cat /etc/gentoo-release Pour Debian : cat /etc/debian_version