[youtube=http://www.youtube.com/watch?v=Bn9pPBpdaP8]
Related Posts
Disable Shift+BackSpace from XGL
- govath
- May 15, 2007
- 0
This was very annoying. You can always press this by mistake and useful info maybe lost so enter in a konsole or gnome-terminal the code […]
Create tar and copy to another server using tar
- govath
- September 15, 2011
- 0
Just a note Code: tar -cvf – test | ssh -l username domain.com “cd /home1/username && tar -xvf -“
Delete / remove old / order files in linux automatically
- govath
- September 15, 2011
- 0
Code: find /tmp/test -ctime +60 -delete The above command will delete any files created over 60 days ago in the /tmp/test folder (and all subfolders). […]