I had problems with USB devices not mounting correctly on Ubuntu Lucid until I disabled floppy support: sudo modprobe -r floppy Oh, and do not forget to restart your workstation.
Posts under ‘ubuntu’
How to install git on Ubuntu Lucid
It is time to go through our usual exercise of installing git on a bright and shiny new Ubuntu. Lucid it is this time around. No surprises at all (see previously posted Karmic instructions) : sudo aptitude install zlib1g-dev cd ~/_tmp wget http://kernel.org/pub/software/scm/git/git-1.7.1.tar.gz tar xvfz git-1.7.1.tar.gz cd git-1.7.1/ ./configure make sudo make install git enjoy!
How to install git on Ubuntu Karmic
git-1.6.6 is assumed (at the time of writing) pretty simple: $ sudo aptitude install build-essential $ sudo aptitude install zlib1g-dev $ mkdir ~/Downloads/git $ cd !$ $ wget http://kernel.org/pub/software/scm/git/git-1.6.6.tar.gz $ tar xvfz git-1.6.6.tar.gz $ cd git-1.6.6/ $ ./configure $ make $ sudo make install $ git upd: Ubuntu Lucid howto