get package dependencies using apt-get

If your are compiling software from source under linux you may be able to obtain the required packages using apt-get, first locate the packaged software using apt-cache:

sudo apt-cache search [software]

then look for the appropriate package name and then use apt-get to install the required dev packages, libs etc:

sudo apt-get build-dep [package]

mounting a usb key on linux

To mount a usb key on linux first create a folder as your mount target (do this only once!):

mkdir /media/sda

plug the usb key into the computer and execute the following as root

mount /dev/sda1 /media/sda

the drive will now be accessable in /mount/sda and before removing the device type:

umount /media/sda

before removing the key from the computer.