Debian & Linux Commands
Install, uninstall or modify software
- User
aptitude
. Description: http://wiki.ubuntuusers.de/aptitude - Example on how to install programs:
aptitude update
aptitude install myProgram
- Uninstall package only:
aptitude remove myProgram
- Uninstall package and configuration files:
aptitude --purge remove myProgram
Install Firefox and Thunderbird
Im Zuge eines Namensstreits zwischen Debian und Mozilla hat Debian Firefox in Iceweasel und Thunderbird in Icedove umbenannt. Weitere Informationen hierzu finden sich im verlinkten Wikipedia-Artikel. Die Installation der Pakete erfolgt wie gewohnt mit Aptitude.
Setup SVN (simple way)
www.keleo.de/blog/subversion-einrichten-unter-debian
Move a SVN repository
- Auf dem Quellserver:
svnadmin dump /path/to/repository > repository-name.dmp
- Auf dem Zielserver:
svnadmin create repository-name --fs-type fsfs
Gefolgt von:svnadmin load repository-name --force-uuid < repository-name.dmp
Install PHP extensions PEAR and PEAR-Mail
- Befehl um PEAR zu installieren:
aptitude install php-pear
- Befehl um PEAR-Mail zu installieren:
pear install mail
Für PEAR-Mail ist unter Umständen das SMTP-Modul nötig:pear install net_smtp
Install PHP extension LDAP (What is LDAP?)
- Install package:
apt-get install php5-ldap
- Restart Apache:
/etc/init.d/apache2 restart
Install Apache
Install Jenkins as a daemon
- Einfach dem Howto des Jenkins-Wikis folgen”