Linux basics#
The HPC systems at Leeds run on a variant of the Linux operating system and we interact with the system using a command-line interface (CLI) rather than a graphical user interface (GUI) which we often use on personal computers. The command line allows you to interact with the operating system through a series of commands that we type in and are executed after we hit the Enter key.
Linux Tutorial#
If you’re totally new to Linux and the command line strongly encourage you to attend our training sessions HPC0: Introduction to Linux and HPC1: Introduction to HPC at Leeds. These run throughout the year and provide a good basic introduction to both Linux and how to use the HPC at Leeds. If you’d like to learn more about Linux and the command line in your own time we also strongly recommend the Software Carpentries lesson on the Unix shell which offers a step-by-step tutorial you can take at your own pace.
Some helpful shell commands#
Commands in the terminal (or shell) follow a common pattern:
command <options prefixed with - or --> <arguments>
See below for a table of commonly used shell commands and a description of what they do. You can always find out more details by a command by googling it or using the man
command to open the manual page for a specific command for instance:
man ls
Will return the manual page for the ls
function including addition options that can be used and a more expansive description of its use. You can leave the manual page by pressing the Q key to return to the terminal.
Command |
Description |
---|---|
|
List the contents of a directory |
|
Change directory |
|
Print the working (current) directory |
|
Make a new directory (folder) |
|
Move a file or directory (can be used to rename files) |
|
Copy a file or directory (using the option |
|
Show the first 10 lines of a file |
|
Show the last 10 lines of a file |
|
Open a file into a reader view (Press Q to exit) |
|
Concatenate files and print to terminal (via standard output) |
|
Permanently remove file or directory (using the option |
|
Unpack a zip file |
|
Used to create and unpack tar archive files |
|
Open a basic text editor program |