Bash Commands: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 36: | Zeile 36: | ||
* sudo shutdown -h 18:45 | * sudo shutdown -h 18:45 | ||
− | [[Category: Software]] [[Category: IT]] | + | [[Category: Software]] |
+ | [[Category: -OSEG 301 - IT Administration]] |
Version vom 10. April 2013, 11:38 Uhr
Internet
- wget -N http://...
- Downloads the give file and overwrites the local one
File Manager
- gksudo nautilus (start it as root)
Text
Search text in files:
- grep -r "your text" <directory>
User Management
Neuen User anlegen
- sudo adduser <username>
Unzip
- tar xzf <filename>
Cron Jobs
- sudo -s crontab -e
- Add/Remove cron jobs
http://www.sysadminslife.com/linux/cronjob-unter-debian-und-ubuntu-erstellen/
Create Screens
- screen (saves your screen even after session time out)
- screen -r (see what happened)
- Ctrl+AC (create new terminal tab)
- Ctrl+AA (switch between terminal tabs)
Backup
- sudo ./backupAll.bash <backupname>
Shutdown
- sudo shutdown -h 18:45