nice spambounce

Author: stephan  |  Category: Linux, Netzwerk

[lang_de]
Eine nette Spambouncenachricht die mir auf Arbeit begegnete
Hello good Sir,

I\’m very sorry to inform you that you failed in sending me a spam-mail.
If you\’re continuing, you will fail much more and in the end you will
die.

Your Boss.
🙂
Möctte man am liebsten selber verwenden
[/lang_de]
[lang_en]
A nice spambounce I’ve seen at work.
Hello good Sir,

I\’m very sorry to inform you that you failed in sending me a spam-mail.
If you\’re continuing, you will fail much more and in the end you will
die.

Your Boss.
🙂
Very stylish
[/lang_en]

Packetlist for recovering an ubuntu

Author: stephan  |  Category: Linux

[lang_de]
Um z.B. einen zweiten Ubunturechner mit der gleichen Paketkonfiguration zu erstellen oder bei einer Neuinstallation des Systems schnell alle zuvor installierten Pakete zu ĂƒÂŒbernehmen, kann man mit dem Befehl

dpkg –get-selections | awk ‚!/deinstall|purge|hold/ {print $1}‘ > packages.list

eine Liste packages.list zur Wiederherstellung der Pakete erzeugen.
Installation von Paketen aus einer Liste

Um alle in dieser Liste gespeicherten Pakete spÀter zu installieren, gibt man folgenden Befehl ein:

xargs -a „packages.list“ sudo apt-get install

Funktioniert auch mit Debian
[/lang_de][lang_en]
To install onto a second Computer an Ubuntu with the same selection of packets or to have the same selcetion of packets, when reinstalling a system you have to enter

dpkg –get-selections | awk ‚!/deinstall|purge|hold/ {print $1}‘ > packages.list

for the backup.

To install this list you have to enter

xargs -a „packages.list“ sudo apt-get install

[/lang_en]