Δημοσιεύτηκε: 19 Νοέμ 2008, 15:13
Mount είναι προσάρτηση δίσκου ( η τον κατατμήσεων στο σύστημα )
Στο τερματικό εάν δώσεις το
Τα υπόλοιπα μπορείς να τα διαβάσεις .
Στο τερματικό εάν δώσεις το
- Κώδικας: Επιλογή όλων
man mount
- Κώδικας: Επιλογή όλων
MOUNT(8) Linux Programmer’s Manual MOUNT(8)
NAME
mount - mount a file system
SYNOPSIS
mount [-lhV]
mount -a [-fFnrsvw] [-t vfstype] [-O optlist]
mount [-fnrsvw] [-o options [,...]] device | dir
mount [-fnrsvw] [-t vfstype] [-o options] device dir
DESCRIPTION
All files accessible in a Unix system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread
out over several devices. The mount command serves to attach the file system found on some device to the big file tree. Con‐
versely, the umount(8) command will detach it again.
The standard form of the mount command, is
mount -t type device dir
This tells the kernel to attach the file system found on device (which is of type type) at the directory dir. The previous con‐
tents (if any) and owner and mode of dir become invisible, and as long as this file system remains mounted, the pathname dir
refers to the root of the file system on device.
Three forms of invocation do not actually mount anything:
mount -h
prints a help message;
mount -V
prints a version string; and just
mount [-l] [-t type]
lists all mounted file systems (of type type). The option -l adds the (ext2, ext3 and XFS) labels in this listing. See below.
Since Linux 2.4.0 it is possible to remount part of the file hierarchy somewhere else. The call is
mount --bind olddir newdir
After this call the same contents is accessible in two places. One can also remount a single file (on a single file).
This call attaches only (part of) a single filesystem, not possible submounts. The entire file hierarchy including submounts is
attached a second place using
mount --rbind olddir newdir
Note that the filesystem mount options will remain the same as those on the original mount point, and cannot be changed by pass‐
ing the -o option along with --bind/--rbind.
Since Linux 2.5.1 it is possible to atomically move a mounted tree to another place. The call is
mount --move olddir newdir
Τα υπόλοιπα μπορείς να τα διαβάσεις .