- 论坛徽章:
- 0
|
关于mount系统的问题.
原帖由 \"Shad\" 发表:
Hi,
You don\'t have to \"umount\" the file system. Use the \"remount\" option.
e.g.
# mount -F vxfs -o remount,rw /mount-point
Hope this helps.
Hi, again:
I may have given you wrong advice. When you change a file system to \"read only\" to \"read write\", the above command will tell you that the file system is corrupted and force you to do fsck. Only when you change the mounted file system from \"rw\" to \"ro\", the above command will succeed.
So, in your case, you may have to do:
1) vi /etc/fstab to make the file system read, write (or just use \"default\" .
2) fuser -ku /mount-point
3) umount /mount-point
4) mount /mount-point
Good Luck. |
|