User Tools

Site Tools


Sidebar






newpage

linux:commands

This is an old revision of the document!


Shell Commands

the place for useful commands, 1-liners, mini-howtos & snippets

please give a short description or some links


archives - tar.gz | bz | 7zip

create tar.gz archiv

 tar -czvf myfiles.tar.gz /home/username/myfiles/



compressed dump of complete filesystems

backup raw data of a disc (as root):

dd if=/dev/sdX | gzip -c9 > /PATH/TO/BACKUP.gz

restore to a drive of same size as original medium:

gunzip -c /PATH/TO/BACKUP.gz | dd of=/dev/sdX



various methods howto backup & restore

sound

mp3 “normalize” by id3 tag

mp3gain analyses sound files and saves an id3 volume metatag to them. many music-players can read that id3 tag and adjust the volume to that gain.

 find /path/to/music/ -type f -iname '*.mp3' -print0 | xargs -0 mp3gain -r -k



bash completion

debian misses to enable this by default :( it enables a lot of auto complete for file paths, commands, command parameters(!) and more

 apt-get install bash-completion

add this to /etc/profile to enable completion for all users:

 if [ -f /etc/bash_completion ]; then
   . /etc/bash_completion
 fi

enable it by opening a new console or

 source /etc/profile

info from: http://www.howtoforge.com/how-to-add-bash-completion-in-debian

linux/commands.1347092066.txt.gz · Last modified: 2012/09/08 10:14 by tkilla