Linux: Translate Boot message of cryptsetup “Enter passphrase to unlock the disk”

Problem: If you setup a full encrypted Laptop with the Linux Installer the first Boot Message of cryptsetup is always in English Speech shown “Enter passphrase to unlock the disk” /dev/sda Solution: edit the /usr/share/initramfs-tools/scripts/local-top/cryptroot ,with nano, find and change the text to your Language edit the /lib/cryptsetup/cryptdisks.functions ,with nano ,find and change the text … Read more

Debian Squeeze Bug: udevd-work: kernel-provided name ‘uinput’ and NAME= ‘input/uinput’ disagree, please use SYMLINK+

Problem: After a fresh Setup and first Reboot of Squeeze the Boot Message udevd-work[77]: kernel-provided name 'uinput' and NAME= 'input/uinput' disagree, please use SYMLINK+= or change the kernel to provide the proper name appears Solution: edit: sudo nano /lib/udev/rules.d/50-udev-default.rules and change, KERNEL=="uinput", NAME="input/%k" to: KERNEL=="uinput", SYMLINK+="input/%k"

Debian Ubuntu: Openbox Lxpanel Bug “Abmeldebefehl ist nicht definiert” “Logout command is not set”

Problem: If you install Openbox with lxpanel instead of LXDE and the User Profile is created after first logon, lxpanel config files are not created Solution: Klick right with the Mouse on the lxpanel-settings, go tab advanced, set exit command = openbox –exit, save and close

Debian Ubuntu: Delete Packages which are marked as “rc”

Problem: If you up/downgrade a Debian most of unneeded files are always on your disk Solution: To check: $sudo dpkg -l | more To cleanup: dpkg –list |grep "^rc" | cut -d " " -f 3 | xargs sudo dpkg –purge If you like run the command twice cause sometimes deps are new taken or … Read more

Debian Squeeze: Which is current the best Debian for Laptops?

Problem: There is no difference between new and old Laptops, they always need the best Drivers on Linux to operate safe. Solution: For this you should take Sqeeze Debian Version. To get a fast Desktop on a older Laptop like a Thinkpad R50p or T30 you can use LXDE Desktop. /etc/apt/sources.list deb http://ftp2.de.debian.org/debian/ squeeze main … Read more

Ubuntu Debian: Replace Oracle OpenOffice with Free LibreOffice

Problem: Last weeks most of the free OpenOffice (Oracle owned) workers moves to the new free version LibreOffice http://www.documentfoundation.org Solution: To use free Software do: on 32bit: download files.. cd /tmp wget http://ftp5.gwdg.de/pub/tdf/libreoffice/testing/3.3.0-beta2/deb/x86/LibO_3.3.0_beta2_Linux_x86_install-deb_en-US.tar.gz wget http://ftp5.gwdg.de/pub/tdf/libreoffice/testing/3.3.0-beta2/deb/x86/LibO_3.3.0_beta2_Linux_x86_langpack-deb_de.tar.gz unpack.. tar -xzvf LibO_3.3.0_beta2_Linux_x86_install-deb_en-US.tar.gz tar -xzvf LibO_3.3.0_beta2_Linux_x86_langpack-deb_de.tar.gz go into file to install.. cd DEBS sudo dpkg -i *.deb sudo dpkg … Read more