8行目: | 8行目: | ||
;-o | ;-o | ||
:options | :options | ||
;-t | |||
:type of file system | |||
$ mount | $ mount |
2019年3月10日 (日) 00:03時点における版
オプション
- -w
- (default) writable
- -r
- read only
- -a
- Mount all filesystems mentioned in /etc/fstab
- -o
- options
- -t
- type of file system
$ mount /dev/mmcblk0p2 on / type ext4 (rw,noatime,data=ordered) sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) .... (省略)....
マウントオプション
オプション | 説明 |
---|---|
ro | read only |
rw | read / write |
auto | -a が指定された時に自動でマウント |
user | 一般ユーザにマウントを許可。アンマウントはマウントしたユーザのみ |
usrquota | ユーザに対してクオータを設定 |
grpquota | グループに対してクオータを設定 |