umount 卸载的时候,提示busy!

mount /dev/sdb /mnt/disk

umount -l /mnt/disk【有busy的问题可以加上l项】

1. 查询当前谁在使用device,fuser /mnt/temp,查询结果是/mnt/temp:           18102c
2.查询该进程号表示哪个进程,ps -ef|grep 18102|grep -v grep,查询得到的是××××  18102 16375  019:35 pts/1    00:00:00 bash,bash正在占用
3.发现我同时开了另外一个bash,关闭它,此时再sudo umount /mnt/temp即可

时间: 2024-10-13 05:19:39

umount 卸载的时候,提示busy!的相关文章

执行umount 的时候却提示:device is busy 的处理方法

# umount /mnt/cdrom/ umount: /mnt/cdrom: device is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1)) # umount /mnt/cdrom/ -f //强制卸载也不行 umount2: 设备或资源忙 umount: /mnt/cdrom: device is busy. (In some ca

nfs umount 卸载不掉 Stale file handle

nfs挂在是一个很方便硬盘扩容和共享的方式,当然它还有很多的功能.但是当server宕机后,client无法卸载挂在,就存在问题了 umount /xxxumount.nfs: /xxx: device is busyumount.nfs: /xxx: device is busy 我们会使用 umount -l /xxx  就可以卸载了 当然,也有可能是我挂在了 /xxx ,然后在/xxx下同时也挂在了/xxx/yyy,如果使用 umount -l /xxx/yyy 就会报错 umount -

用fuser或者lsof解决无法umount问题(device is busy)

umount卸载磁盘时,如果有进程在使用该盘,则卸载不成功,报错如下: # umount /data umount: /data:目标忙.         (有些情况下通过 lsof(8) 或 fuser(1) 可以          找到有关使用该设备的进程的有用信息) 一.命令介绍 1.fuser 用法 :fuser  [-umv] [-k [i] [-signal] ] file/dir -u:除了进程的PID外 ,同时列出该进程的所有者. -m:后接的文件名会主动上调到文件系统的所顶层,

Windows 服务卸载之后 重新安装提示 “指定的服务已标记为删除”

背景: 将一个项目做成一个windows服务,在调试的时候,需要卸载.安装该服务,但提示下面的错误:"指定的服务已标记为删除",进入服务管理界面,启动自己注册的服务,无法手动更改成启用模式(这时启动类型显示的是禁用),同样提示"指定的服务已标记为删除" 解决方法: 我关闭了服务管理窗口,问题自然解决了(必要的时候重启机器).因此,出现上述原因是运行删除服务项命令的时候,服务管理窗口未关闭引起的. 安装(我把C_JK.exe文件放在shyy文件夹下): C:\WIND

umount移动硬盘遇到device is busy问题

#umount  /mnt/fourtumount: /mnt/fourt: device is busy.        (In some cases useful info about processes that use         the device is found by lsof(8) or fuser(1)) fuser 概述fuser命令是用来显示所有正在使用着指定的file, file system 或者 sockets的进程信息.例:#fuser -m -u /mnt/

CentOS下强行umount卸载设备

fuser -cu /usr/local/openresty/nginx/html/down/ fuser -ck /usr/local/openresty/nginx/html/down/ fuser -c /usr/local/openresty/nginx/html/down/ umount /usr/local/openresty/nginx/html/down/ CentOS下强行umount卸载设备

Linux卸载分区设备提示:umount device busy

两步: 1.用fuser : fuser -k /data 2.umount /data 基本上可以搞定umount device busy忙的问题,当然最好是能确定该分区卸载不会有影响. 下面是fuser命令的一些参数解释: -k 杀死这些正在访问这些文件的进程.除非使用-signal修改信号,否则将发送SIGKILL信号. -i 交互模式 -l 列出所有已知的信号名称. -n 空间,选择不同的名字空间,可是file,udp,tcp.默认是file,也就是文件. -signal 指定发送的信号

umount 卸载

[email protected]:~# umount /home/opt/log/112.16.4.10_LB2 umount.nfs: /home/opt/log/112.16.4.10_LB2: device is busy umount.nfs: /home/opt/log/112.16.4.10_LB2: device is busy [email protected]:~# umount -f /home/opt/log/112.16.4.10_LB2   #加-f参数,多试几次即可

Linux下umount卸载文件系统

1. intruduction 命令用于卸载指定文件系统 卸载文件系统时,须所有用户需退出挂载的文件系统,也没有任何程序在读写文件系统. 卸载文件系统时,按挂载的逆顺序依次卸载.如 mount /dev/sda1 /mnt/tmp , mount /dev/sda2 /mnt/tmp/test ,要先卸载/dev/sda2才能成功. 2. sysopsis umount <mount_point|device> 3. trouble target is busy  使用中的文件系统无法卸载原因