blob: 526fbe87f0c0055bb7ce9f8c8bc695d0d1e05726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[1mmount[m mount file systems
Usage:
mount [-dfpruvw] [-o options] [-t ufs | external_type] special node
mount [-adfpruvw] [-t ufs | external_type]
mount [-dfpruvw] special | node
E.g.:
* mount UFS floppy A: on /mnt directory:
mount /dev/fd0c /mnt
* mount DOS primary partition (on primary IDE drive) on /dos:
mount -t msdos /dev/wd0s1 /dos
* mount Linux partition on /mnt
mount -t ext2fs /dev/wd0s1 /mnt
|