Libre Things

CV Diaspora
fr

Tag - Karmic

Entries feed - Comments feed

Sunday 10 January 2010

[Ubuntu Karmic] Disable USplash

When Ubuntu starts, the USplash screen hides you the Linux boot and commands. If you're a geek spirit, you'll prefer those "cabalistic writings". Here is how to disable USplash without removing the usplash and usplash-theme-ubuntu packages (because package ubuntu-desktop depends on them).

usplash_karmic.png

Disable USplash, then rebuild initramfs:

sudo vi /usr/share/initramfs-tools/conf-hooks.d/usplash
USPLASH=n
sudo update-initramfs -u

Links:

See also:

[Ubuntu Karmic] Disable XSplash

XSplash is new in Ubuntu Karmic. If you don't like this ugly screen like me, here is how to disable it.

xsplash_karmic.png

The dpkg -l | grep xsplash command tells you that two package are responsible for this horrible screen: xsplash and ubuntu-xsplash-artwork. To remove them, you also have to remove the ubuntu-desktop package. That is not recommended if you don't want to miss something in the next Ubuntu upgrade.

Here it is:

sudo rm /etc/dbus-1/system.d/xsplash.conf
sudo touch /etc/dbus-1/system.d/xsplash.conf

We remove the file and create an empty one. Why ? Because if we just delete the file it will be created back again during the next update. If you create an empty file in place, the next update will ask you what to do with the file.

Et voila, restart and enjoy the "visual peace".

Link:

See also:

Sunday 3 January 2010

Thinkpad fingerprint reader under Ubuntu Karmic

Here is how to configure easily your Thinkpad fingerprint reader under Ubuntu Karmic, using ThinkFinger.

Install the thinkfinger-tools (for acquiring/verifying) and libpam-thinkfinger (for PAM integration):

sudo aptitude install thinkfinger-tools libpam-thinkfinger

Then you can test acquisition/verification. As a user, issue the commands:

tf-tool --acquire
# swipe 3 times your finger
tf-tool --verify
# swipe your finger, then another finger...

Note: tf-tools should work without being root if the user belongs to the plugdev group.

Then plug the reader to PAM as explained in /usr/share/doc/libpam-thinkfinger/README.Debian:

sudo /usr/lib/pam-thinkfinger/pam-thinkfinger-enable

Now restart your system and try swiping your finger in place of typing the password. A "Password or swipe finger:" prompt displays to authenticate you at GDM login and when you type "sudo".

Notes:

  • Test several programs in the Administration menu. "swipe finger" is not always showed but should work though.
  • To my knowing, it doesn't work when locking screen (gnome-screensaver).

References :

Monday 14 December 2009

Display Ubuntu boot commands

By default, Ubuntu starts with splash screen in quiet mode without displaying startup actions.

Before Ubuntu Karmic (legacy Grub), you have to edit /boot/grub/menu.lst to remove the quiet words.

Since Ubuntu Karmic (new Grub):

sudo vi /etc/default/grub
# remove "quiet"
sudo update-grub

Link:

See also:

[Ubuntu Karmic] Autostart Empathy

To start Empathy automatically at Ubuntu Karmic startup :

sudo cp /usr/share/applications/empathy.desktop /etc/xdg/autostart/

This automatically adds a new entry in Gnome startup applications.

Sources :