rm: cannot remove directory `misc': Device or resource busy

rm: cannot remove directory `misc‘: Device or resource busy

解决方法:

[[email protected] misc]# cat /etc/misc

cat: /etc/misc: No such file or directory

[[email protected] misc]# cat /etc/auto.master

#

# $Id: auto.master,v 1.4 2005/01/04 14:36:54 raven Exp $

#

# Sample auto.master file

# This is an automounter map and it has the following format

# key [ -mount-options-separated-by-comma ] location

# For details of the format look at autofs(5).

#

#/misc /etc/auto.misc

#

这一行注释掉

192  service automount restart

193  service autofs restart

解决过程

查看谁在用/misc

[[email protected] misc]# /sbin/fuser -m /misc

/misc:                   1rce     2rc     3rc     4rc     5rc     6rc     7rc     8rc     9rc    10rc    11rc    12rc    13rc    14rc    15rc    16rc    17rc    18rc    19rc    20rc    21rc    22rc    23rc    24rc    25rc    26rc   163rc   174rc   175rc   176rc   177rc   178rc   179rc   180rc   181rc   182rc   347rc   348rc   349rc   350rc   351rc   352rc   353rc   354rc   357rc   359rc   483rc   486rc   487rc   488rc   489rc   490rc   491rc   492rc   493rc   494rc   700rc   809rc   810rc   811rc   821rc   822rc   823rc   824rc   825rc   826rc   827rc   828rc   829rc   848rc   885rc   951rc   977rc  1010rce  1390rce  1448rce  1454rce  2588rc  2589rc  2590rc  2591rc  2592rc  2593rc  2594rc  2595rc  2596rc  2663rce  2664rc  2667rc  2668rc  2669rc  2670rc  2671rc  2672rc  2673rc  2674rc  2675rc  2676rc  2679rc  2680rc  2681rc  2682rc  2683rc  2684rc  2685rc  2686rc  2687rce  3254rc  3452rce  3750rce  3752rce  3784rce  3787rce  3920rce  3941rce  3970rce  4004rce  4029rce  4085rce  4100rce  4114rce  4115rce  4125rce  4129rce  4138rce  4191rce  4247rce  4299rce  4337rce  4425rce  4440rce  4454rce  4492rce  4519rce  4556rce  4573rce  4574rce  4659rce  4660rce  4907rce  5029rce  5056rce  5458rce  5462rce  5463rce  5464rce  5467rce  5472rce  5475rce  6738rce  6739rce  6740rce  6741rce  6742rce  6743rce  6744rce  6745rce 14805rc 18963rce 19019rce 19053rce 19109rce 19128rce 19184rce 19204rce 19260rce 19279rce 19335rce 19363rce 19419rce 19450rce 19506rce 21785rce 21800rce 24079rc 29743rce 29753rce 31798rce 31808rce 32649rce 32658rce

[[email protected] misc]# lsof +D /misc

COMMAND   PID USER   FD   TYPE DEVICE SIZE    NODE NAME

bash     1454 root  cwd    DIR  253,0 4096 5001376 /misc/crmfile

lsof     5210 root  cwd    DIR  253,0 4096 4933473 /misc

lsof     5211 root  cwd    DIR  253,0 4096 4933473 /misc

bash    29753 root  cwd    DIR  253,0 4096 4933473 /misc

[[email protected] crmfile]# exportfs -rv

exporting 192.168.20.28:/misc

exporting 192.168.20.27:/misc

exporting 192.168.20.28:/mnt

exporting 192.168.20.27:/mnt

[[email protected] misc]# showmount -e

Export list for crmnormal:

/mnt  192.168.20.27,192.168.20.28

/misc 192.168.20.27,192.168.20.28

rm: cannot remove directory `misc': Device or resource busy

时间: 2024-12-13 03:50:15

rm: cannot remove directory `misc': Device or resource busy的相关文章

Linux下rm -rf删除文件夹报错_ Device or resource busy

1.错误信息 rm: cannot remove `speechd-centos_6.2-prtl-pred-mf34/modules/t2p/py/third/g2p/.nfs00000000039b946b00000004': Device or resource busyrm: cannot remove `speechd-centos_6.2-prtl-pred-mf34/modules/t2p/py/log/.nfs00000000039c52ef00000005': Device o

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.

在 mkfs.ext4 /dev/sda2 格式化硬盘空间时,可能出现这样的错误. had this situation at office where I was told to re-partition an already existing partition. The situation was to get the below schema /dev/sdb1 1 3040 24418768+ 83 Linux /dev/sdb2 3041 6080 24418800 83 Linux

Android文件操作报open failed: EBUSY (Device or resource busy)

Android删除文件后重新创建时偶尔出现 open failed: EBUSY (Device or resource busy)错误,该错误是Android系统的一个bug,大概的意思类似于windows的"改文件正在被使用".产生这个错误的原因是Android在删除文件后没有及时释放文件锁,导致文件在重新创建时仍然处于被某一进程占用的状态.解决的方法是:在删除文件之前对该文件进行重命名,这样可以保证在删除文件时系统持有的文件锁是重命名之后的文件锁.代码可以这样写: final F

docker 磁盘问题:device or resource busy

问题:[[email protected] ~]# docker start 01ea65845e45Error response from daemon: Cannot start container 01ea65845e45: Error getting container 01ea65845e4547be24bc3db0bc3b424faf52b8a0534eb525aa829dd9fd6081c2 from driver devicemapper: Error mounting '/de

linux 加载模块时出现cannot insert '*.ko': Device or resource busy错误

看 linux 设备驱动开发详解时,字符设备驱动一章,注册globalmem驱动时,出现如下错误: # insmod globalmem.ko insmod: can't insert 'globalmem.ko': Device or resource busy 原因: 模块使用的是静态分配设备号的方式,而这个设备号已经被系统中的其他设备所占用.查看未被占用的 设备号的方法: # cat /proc/devices linux 加载模块时出现cannot insert '*.ko': Devi

编译安装apr 1.5.2 时报 rm: cannot remove `libtoolT': No such file or directory

今天在编译安装apr-1.5.2 的时候执行./configure --prefix=/usr/local/apr 的时候报了一个这么样的信息 " rm: cannot remove `libtoolT': No such file or directory",详细如下图: 解决过程: 1.网上看了一下,有很多人使用如下三个命令解决了,但是我执行了一下,结果在重新./configure --prefix=/usr/local/apr 的时候还是报这个错误. 网上流传的三个命令如下: #

ubuntu 提示:rm: cannot remove 'you-get/tmp': Directory not empty

Ubuntu 在mv 一个大文件到另外一个文件时,出现了下面的提示: sudo mv /var/lib/php/sessions you-get/tmp 在删除目录you-get/tmp的时候,出现了下面的提示: rm: cannot remove 'you-get/tmp': Directory not empty 问题原因:当目录下有文件正在被使用时,如果要删除目录,会得到错误提示的问题. ubuntu 提示:rm: cannot remove 'you-get/tmp': Director

rm: cannot remove `/home/wwwroot/default/.user.ini': Operation not permitted

[[email protected] ~]# rm -rf /home/wwwroot rm: cannot remove `/home/wwwroot/default/.user.ini': Operation not permitted [[email protected] ~]# chattr -i /home/wwwroot/default/.user.ini [[email protected] ~]# rm -rf /home/wwwroot 解析: Linux chattr命令 L

ora-00054:resource busy and acquire with nowait specified

当某个数据库用户在数据库中插入.更新.删除一个表的数据,或者增加一个表的主键时或者表的索引时,常常会出现ora-00054:resource busy and acquire with nowait specified这样的错误. 主要是因为有事务正在执行(或者事务已经被锁),所有导致执行不成功. 1.用dba权限的用户查看数据库都有哪些锁 select t2.username,t2.sid,t2.serial#,t2.logon_timefrom v$locked_object t1,v$se