helpbuntu

Useful Diagnostic when asking for help - If the problem is with a specific program, run it in terminal (command can be found from System >> Preferences >> Main Menu) and then preform the task that had problems, and information about the error should be there to copy and paste from terminal.

This is a list of useful terminal commands and what they do. Remember all terminal commands are case sensitive and spaces in path names (eg /home/me/my folder/) should be treated either with a backward slash /home/me/my\ folder/ or in quotations "/home/me/my folder/" - for ease of use replace a space with an _ (underscore).

cd

Short for Change Directory. It will change the folder you are operating in. By default you are operating in you users directory /home/exampleuser/ ; simply type in the new directory eg cd /home/exampleuser/Documents to work in that folder.

dir

This will probe the given directory and display the contents of that folder to show any files or folders inside it. eg dir /example/pathway

gksu

This applies root privileges to a program that opens in as separate window. The program command can be found via System >> Preferences >> Main Menu. eg gksu nautilus will open a root owned file browser.

gunzip

To unzip an archive that ends with the .gz extension. eg gunzip /example/pathway/archive.tar.gz

killall

If a program stops functioning close it down by killing all the processes involved. eg killall vlc will completely close down a non-responsive vlc media player.

sudo

applies root privileges to the command that follows it (after a single space on the same line).

sudo apt-get install

This will install a program that follows on that line. eg sudo apt-get install vlc will install vlc media player.

sudo apt-get autoremove

After installing and removing some software occasionally run this command to remove any un-needed dependencies and log files from the computer.

sudo apt-get upgrade

This will install any updates quickly and easily when the notification icon appears.

sudo su

If you need to perform a lot of commands with root privileges you can become the root user in terminal (you will need to type your password on prompt). To then stop being the root user simply type exit and press Enter.