1. To mount all the file system
# mountall
2. to unmount all the file system
# umnontall
3. To display the information about the file system that are currently mounted
# mount -v (This infoemation is taken from /etc/mnttab)
4. To list the process that are accessing trhe system
# fuser -c
5. Steps to unmount a file system
# umount /export/home
umount: /export/home busy
# fuser -c /export/home
/export/home: 9002o
# ps -ef | grep 9002
root 9002 8979 0 20:06:17 pts/1
0:00 cat
# fuser -c -k /export/home
/export/home: 9002o
[1]+ Killed cat >/export/home/test
# umount /export/home
6.
# mountall
2. to unmount all the file system
# umnontall
3. To display the information about the file system that are currently mounted
# mount -v (This infoemation is taken from /etc/mnttab)
4. To list the process that are accessing trhe system
# fuser -c
5. Steps to unmount a file system
# umount /export/home
umount: /export/home busy
# fuser -c /export/home
/export/home: 9002o
# ps -ef | grep 9002
root 9002 8979 0 20:06:17 pts/1
0:00 cat
# fuser -c -k /export/home
/export/home: 9002o
[1]+ Killed cat >/export/home/test
# umount /export/home
6.
No comments:
Post a Comment