Mit alien ist es möglich, RPM Pakete ins DEB Format zu konvertieren. Unter anderem. Es gibt noch ein weitere unterstütze Typen die bei der Konvertierung unterstüzt werden.

Zitat von der Homepage:

Alien is a program that converts between the rpm, dpkg, stampede slp, and slackware tgz file formats. If you want to use a package from another distribution than the one you have installed on your system, you can use alien to convert it to your preferred package format and install it.

tracert & ping in einem Tool. Sagt schon alles oder? Sonst gibt es hier noch einen Wiki-Eintrag.

So sieht das in der Linux Konsole aus:

                             My traceroute  [v0.71]
            example.lan                           Sun Mar 25 00:07:50 2007
Keys:  Help   Display mode   Restart statistics   Order of fields   quit
                                       Packets                Pings
Hostname                            %Loss  Rcv  Snt  Last Best  Avg  Worst
 1. example.lan                        0%   11   11     1    1    1      2
 2. ae-31-51.ebr1.Chicago1.Level3.n   19%    9   11     3    1    7     14
 3. ae-1.ebr2.Chicago1.Level3.net      0%   11   11     7    1    7     14
 4. ae-2.ebr2.Washington1.Level3.ne   19%    9   11    19   18   23     31
 5. ae-1.ebr1.Washington1.Level3.ne   28%    8   11    22   18   24     30
 6. ge-3-0-0-53.gar1.Washington1.Le    0%   11   11    18   18   20     36
 7. 63.210.29.230                      0%   10   10    19   19   19     19
 8. t-3-1.bas1.re2.yahoo.com           0%   10   10    19   18   32    106
 9. p25.www.re2.yahoo.com              0%   10   10    19   18   19     19

Und für Windows gibts ebenfalls was, mit GUI: http://winmtr.sourceforge.net/

Mit DPKG eine Liste der Installierten Software in eine Datei speichern:

dpkg –get-selections > /backup/software.log

Für den Restore:

dpkg –set-selections < /backup/software.log

Jetzt kann mit dselect die Liste der ausgewählten Programme angezeigt werden und mit i installiert werden.

dselect

Zuerst muss das CD-Laufwerk gemountet werden:

mount -t iso9660 -o ro /dev/cdrom /cdrom

Dann die VMware Tools ins Temp Verzeichniss kopieren:

cd /cdrom

cp VMwareTools-7.8.5-156735.tar.gz /tmp/

Danach kann das CD-ROM wieder deaktiviert werden:

umount /cdrom

Jetzt mit folgenden Befehlen die Build-Tools installieren und die Kernel-Header Sourcen:

aptitude install gcc cpp make automake autoconf binutils psmisc
aptitude install linux-headers-$(uname -r)

Jetzt in das tmp Verzeichniss wechseln und das File entpacken:

tar -xf /tmp/VMwareTools-7.8.5-156735.tar.gz

Jetzt kann die Installation der VMware Tools gestartet werden mit:

cd /tmp/vmware-tools-distrib/

./vmware-install.pl

Nach dem Start werden einige Fragen gestellt die alle mit den Standard-Vorgaben bestätigt werden können. Danach unbedingt neu starten. That’s it!

Damit ich es immer wieder finde, ein Auszug aus der Installationsanleitung von webmin.com:

If you like to install and update Webmin via APT, edit the /etc/apt/sources.list file on your system and add the line :

deb http://download.webmin.com/download/repository sarge contrib

You should also fetch and install my GPG key with which the repository is signed, with the commands :

cd /root
wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc

You will now be able to install with the commands :

aptitude update
aptitude install webmin

All dependencies should be resolved automatically.

Eigentlich sind es nur ein paar wenige Befehle. Wenn ich Zeit habe, mach ich daraus ein kleines Shell-Script. (TODO!)

In die Datei /etc/environment folgende Wete eintragen

http_proxy=http://name:password@proxy:port

https_proxy=http://name:password@proxy:port

ftp_proxy=http://name:password@proxy:port

no_proxy=localhost

Danach mit folgendem Befehl

source /etc/environment ; export http_proxy ftp_proxy no_proxy

die Einstellungen in die aktuelle Konsole laden.

Oder das ganze in die eigene bashrc einfügen ( nano ~/.bashrc )

export http_proxy=http://name:password@proxy:port

export https_proxy=http://name:password@proxy:port

export ftp_proxy=http://name:password@proxy:port

export no_proxy=localhost