Mount
From Wsms
This page should be named mount (all lowercase). It is Mount do to a technical limitation of Mediawiki.
mount mounts filesystems.
[edit]
basic usage
Mount a USB thumb drive:
root@mckinley:/media# mount -o umask=000 /dev/sdd1 sdd1
In this case, the thumb drive is formatted as one big VFAT partition. The umask option makes everything writeable by everyone.
Mount an image of a cdrom:
ggeller@roosevelt:~$ mkdir test ggeller@roosevelt:~$ sudo mount -o loop,ro tests.iso test
The file test.iso is a image of a CD-ROM. The mount command uses the read-only option and mounts using loop device.
[edit]
see also
man 8 mount
