您的位置:首页 > 其它

磁盘与文件系统管理之五:卸载文件系统

2020-02-29 20:08 99 查看

文件系统管理(卸载)
一、卸载文件系统Umount  -a [-rv] [-t vfstype] [-O options]umount  [-rv] dir | device  #目录和设备名两者取其一  -a     All  of  the  file  systems  described  in  /etc/mtab are unmounted.  (With  umount  version 2.7 and later: the proc filesystem is not unmounted.)  -r     In case unmounting fails, try to remount read-only.  -v     Verbose mode.  -t vfstype              Indicate that the actions should only  be  taken  on  file              systems  of the specified type.  More than one type may be              specified in a comma separated list.   The  list  of  file              system  types  can be prefixed with no to specify the file              system types on which no action should be taken.

二、无法卸载的情况模拟[root@gwan ~]# mount | grep '/dev/sda4'/dev/sda4 on /newdisk type ext2 (rw)[root@gwan ~]# umount /dev/sda4umount: /newdisk: device is busyumount: /newdisk: device is busy[root@gwan ~]# fuser -vm /newdisk    # 进程查杀工具fuser -vm/-km dir|device                     USER        PID ACCESS COMMAND/newdisk:            root       7409 ..c.. bash                     root       7431 F.c.. vi[root@gwan ~]# fuser -km /newdisk/newdisk:             7409c  7431c[root@gwan ~]# umount /dev/sda4   #成功卸载![root@gwan ~]# mount | grep '/dev/sda4'

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/24463783/viewspace-681634/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/24463783/viewspace-681634/

  • 点赞
  • 收藏
  • 分享
  • 文章举报
ciyuchan5558 发布了0 篇原创文章 · 获赞 0 · 访问量 25 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: