Linux introduction: Difference between revisions
No edit summary |
(Marked this version for translation) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 5: | Line 5: | ||
<!--T:2--> | <!--T:2--> | ||
Connections to the servers use the SSH protocol, in text mode. You do not use a graphical interface (GUI) but a <b>console</b>. Note that Windows executables do not run on our servers without using an emulator. | Connections to the servers use the [[SSH]] protocol, in text mode. You do not use a graphical interface (GUI) but a <b>console</b>. Note that Windows executables do not run on our servers without using an emulator. | ||
<!--T:27--> | |||
There is a self-paced course available on this topic from SHARCNET: [https://training.sharcnet.ca/courses/enrol/index.php?id=182 Introduction to the Shell] | |||
== Obtaining help == <!--T:3--> | == Obtaining help == <!--T:3--> | ||
Line 13: | Line 16: | ||
<!--T:4--> | <!--T:4--> | ||
By convention, the executables themselves contain some help on how to use them. | By convention, the executables themselves contain some help on how to use them. | ||
Generally, you invoke this help using the command line argument <code>-h</code> or <code>--help</code>, or in certain cases, <code>-help</code>. | Generally, you invoke this help using the command line argument <code>-h</code> or <code>--help</code>, or in certain cases, <code>-help</code>. | ||
For example, | |||
{{Command|ls --help}} | |||
== Orienting yourself on a system == <!--T:6--> | == Orienting yourself on a system == <!--T:6--> | ||
Line 108: | Line 109: | ||
<!--T:21--> | <!--T:21--> | ||
The <code>chmod</code> command allows you to change file permissions. The simple way to use it is to specify which permissions you wish to add or remove to which type of user. To do this, you specify the list of users (<code>u</code> for the owner, <code>g</code> for the group, <code>o</code> for other users, <code>a</code> for all), followed by a <code>+</code> to add permissions or <code>-</code> to remove permissions, which is then followed by a list of permissions to modify (<code>r</code> for read, <code>w</code> for write, <code>x</code> for execute). Non-specified permissions are not affected. Here are a few examples: | The <code>chmod</code> command allows you to change file permissions. The simple way to use it is to specify which permissions you wish to add or remove to which type of user. To do this, you specify the list of users (<code>u</code> for the owner, <code>g</code> for the group, <code>o</code> for other users, <code>a</code> for all three), followed by a <code>+</code> to add permissions or <code>-</code> to remove permissions, which is then followed by a list of permissions to modify (<code>r</code> for read, <code>w</code> for write, <code>x</code> for execute). Non-specified permissions are not affected. Here are a few examples: | ||
<!--T:22--> | <!--T:22--> |
Latest revision as of 16:58, 16 October 2024
This article is aimed at Windows and Mac users who do not have or have very little experience in UNIX environments. It should give you the necessary basics to access the compute servers and being quickly able to use them.
Connections to the servers use the SSH protocol, in text mode. You do not use a graphical interface (GUI) but a console. Note that Windows executables do not run on our servers without using an emulator.
There is a self-paced course available on this topic from SHARCNET: Introduction to the Shell
Obtaining help
Generally, UNIX commands are documented in the reference manuals that are available on the servers. To access those from a terminal:
[name@server ~]$ man command
man
uses less
(see the section Viewing and editing files), and you must press q
to exit this program.
By convention, the executables themselves contain some help on how to use them.
Generally, you invoke this help using the command line argument -h
or --help
, or in certain cases, -help
.
For example,
[name@server ~]$ ls --help
Orienting yourself on a system
Following your connection, you are directed to your $HOME
directory (the UNIX word for folder) for your user account.
When your account is created, your $HOME
only contains a few hidden configuration files that start with a period (.), and nothing else.
On a Linux system, you are strongly discouraged to create files or directories that contain names with spaces or special characters, including accents.
Listing directory contents
To list all files in a directory in a terminal, use the ls
(list) command:
[name@server ~]$ ls
To include hidden files:
[name@server ~]$ ls -a
To sort results by date (from newest to oldest) instead of alphabetically:
[name@server ~]$ ls -t
And, to obtain detailed information on all files (permissions, owner, group, size and last modification date):
[name@server ~]$ ls -l
The option -h
gives the file sizes in human readable format.
You can combine options, for example:
[name@server ~]$ ls -alth
To move about in the filesystem, use the cd
command (change directory).
So, to change to my_directory
, type:
[name@server ~]$ cd my_directory
To change to the parent folder, type:
[name@server ~]$ cd ..
And, to move back to your home directory ($HOME
):
[name@server ~]$ cd
Creating and removing directories
To create (make) a directory, use the mkdir
command:
[name@server ~]$ mkdir my_directory
To remove a directory, use the rmdir
command:
[name@server ~]$ rmdir my_directory
Deleting a directory like this only works if it is empty.
Deleting files
You can remove files using the rm
command:
[name@server ~]$ rm my_file
You can also recursively remove a directory:
[name@server ~]$ rm -r my_directory
The (potentially dangerous!) -f
option can be useful to bypass confirmation prompts and to continue the operation after an error.
Copying and renaming files or directories
To copy a file use the cp
command:
[name@server ~]$ cp source_file destination_file
To recursively copy a directory:
[name@server ~]$ cp -R source_directory destination_directory
To rename a file or a folder (directory), use the mv
command (move):
[name@server ~]$ mv source_file destination_file
This command also applies to directories. You should then replace source_file
with source_directory
and destination_file
with destionation_directory
.
File permissions
UNIX systems support 3 types of permissions : read (r
), write (w
) and execute (x
). For files, a file should be readable to be read, writable to be modified, and executable to be run (if it's a binary executable or a script). For a directory, read permissions are necessary to list its contents, write permissions enable modification (adding or removing a file) and execute permissions enable changing to it.
Permissions apply to 3 different classes of users, the owner (u
), the group (g
), and all others or the world (o
). To know which permissions are associated to files and subdirectories of the current directory, use the following command:
[name@server ~]$ ls -la
The 10 characters at the beginning of each line show the permissions. The first character indicates the file type :
-
: a normal filed
: a directoryl
: a symbolic link
Then, from left to right, this command shows read, write and execute permissions of the owner, the group and other users. Here are some examples :
drwxrwxrwx
: a world-readable and world-writable directorydrwxr-xr-x
: a directory that can be listed by everybody, but only the owner can add or remove files-rwxr-xr-x
: a world-readable and world-executable file that can only be changed by its owner-rw-r--r--
: a world-readable file that can only be changed by its owner.-rw-rw----
: a file that can be read and changed by its owner and by its group-rw-------
: a file that can only be read and changed by its ownerdrwx--x--x
: a directory that can only be listed or modified by its owner, but all others can still pass it on their way to a deeper subdirectorydrwx-wx-wx
: a directory that everybody can enter and modify but where only the owner can list its contents
Important note: to be able to read or write in a directory, you need to have execute permissions (x
) set in all parent directories, all the way up to the filesystem's root (/
). So if your home directory has drwx------
permissions and contains a subdirectory with drwxr-xr-x
permissions, other users cannot read the contents of this subdirectory because they do not have access (by the executable bit) to its parent directory.
After listing the permissions, ls -la
command gives a number, followed by the file owner's name, the file group's name, its size, last modification date, and name.
The chmod
command allows you to change file permissions. The simple way to use it is to specify which permissions you wish to add or remove to which type of user. To do this, you specify the list of users (u
for the owner, g
for the group, o
for other users, a
for all three), followed by a +
to add permissions or -
to remove permissions, which is then followed by a list of permissions to modify (r
for read, w
for write, x
for execute). Non-specified permissions are not affected. Here are a few examples:
- Prevent group members and all others to read or modify the file
secret.txt
:[name@server ~]$ chmod go-rwx secret.txt
- Allow everybody to read the file
public.txt
:[name@server ~]$ chmod a+r public.txt
- Make the file
script.sh
executable:[name@server ~]$ chmod a+x script.sh
- Allow group members to read and write in the directory
shared
:[name@server ~]$ chmod g+rwx shared
- Prevent other users from reading or modifying your home directory:
[name@server ~]$ chmod go-rw ~
Viewing and editing files
Viewing a file
To view a file read-only, use the less
command:
[name@server ~]$ less file_to_view
You can then use the arrow keys or the mouse wheel to navigate the document.
You can search for something in the document by typing /what_to_search_for
.
You can quit less
by pressing the q
key.
Comparing two files
The diff
command allows you to compare two files:
[name@server ~]$ diff file1 file2
The -y
option shows both files side by side.
Searching within a file
The grep
command allows you to look for a given expression in one file:
[name@server ~]$ grep 'tata' file1
... or in multiple files:
[name@server ~]$ grep 'tata' fil*
Note that, in Linux, the *
wildcard matches zero or more characters. The ?
wildcard matches exactly one character.
The text to be searched for can also be variable. For example, to look for the text number 10 or number 11, etc. with any number between 10 and 29, the following command can be used:
[name@server ~]$ grep 'number [1-2][0-9]' file
A regular expression must be used for the search text. To learn more, see this guide to regular expressions.