- 论坛徽章:
- 0
|
就在下面这段话
- # Mount all other filesystems (except for NFS and /proc, which is already
- # mounted). Contrary to standard usage,
- # filesystems are NOT unmounted in single user mode.
- action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs -O no_netdev
复制代码
你可以把下面的 /mnt/test1 看成是 /var
- [root@mail ~]# mount |grep hda11
- [root@mail ~]# grep '/mnt/test1' /etc/fstab
- /dev/hda11 /mnt/test1 ext3 defaults 0 0
- [root@mail ~]#
复制代码
- [root@mail ~]# mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs -O no_netdev
- [root@mail ~]# mount |grep hda11
- /dev/hda11 on /mnt/test1 type ext3 (rw)
- [root@mail ~]#
复制代码
可以看到 |
|