[root@localhost ~]# df -h /home
Filesystem Size Used Avail Use% Mounted on
/dev/hda3 4.8G 740M 3.8G 17% /home <-- /home 确实是独立的!
[root@localhost ~]# mount | grep home
/dev/hda3 on /home type ext3 (rw)
[root@localhost ~]# mount -o remount,usrquota,grpquota /home
[root@localhost ~]# mount | grep home
/dev/hda3 on /home type ext3 (rw,usrquota,grpquota)
[root@www ~]# vi /etc/fstab
......
LABEL=/home /home ext3 defaults,usrquota,grpquota 1 2
[root@www ~]# umount /home
[root@www ~]# mount -a
[root@www ~]# mount | grep home
/dev/hda3 on /home type ext3 (rw,usrquota,grpquota)
本文链接:http://task.lmcjl.com/news/11733.html