本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
解决卸载U盘问题:umount: /mnt/usb: device is busy
问题:
#umount /dev/sda1
umount: /mnt/usb: device is busy
查找占用目录进程:
#lsof |grep /mnt/usb
bash 1971 root cwd DIR 8,1 16384 1 /mnt/usb/bash 2342 root 3r DIR 8,1 16384 1 /mnt/usb/
杀掉进程:
...
umount 时出现"Device is busy"的解法
umount 时出现"Device is busy"的解法 [转]原文链接:http://www.lirui.name/post/151.html
Linux: umount 时出现 "Device is busy" 的解法
当任何目录有 mount, 然后有程序使用/挂在那个目录上的话, 就没有办法 umount 掉, 于umount 时会出现 Dev ...
linux 无法umount解决方法
linux 挂载移动硬盘后,无法umount提示如下:
umount: /mnt: device is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
解决方法:1、切换到ROOT用户
...
linux格式化分区-umount--mkfs-ext3-e2label--mount-reboot-df
1,卸载分区
#umount /home (记得/home 对应的 /dev/sda2,磁盘格式化的时候需要用)
如果无法卸载,通过lsof /home查看哪些进程打开该分区,然后Kill
无法卸载分区,会报错:/dev/sda2 is mounted; will not make a filesystem here!
2, 格式化分 ...