对LINUX文件系统只读的处理
在系统中的处理
1、mount:
用于查看哪个模块输入只读,一般显示为:
/dev/hda1 on / type ext3 (rw)
none on /proc type proc (rw)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/hda5 on /home type ext3 (rw)
none on /dev/shm type tmpfs (rw)
/dev/hda2 on /usr/local type ext3 (rw)
/dev/nb1 on /EarthView/RAW type ext3 (ro)
2、如果发现有ro,就重新mount,或者umount以后再remount
3、umount /dev/nb1
如果发现有提示“device is busy”,找到是什么进程使得他busy
fuser -m /mnt/data
将会显示使用这个模块的pid
fuser -mk /mnt/data
将会直接kill那个pid,然后重新mount即可
4、还有一种方法是直接remount,命令为
mount -o rw,remount /mnt/data
阅读(9220) | 评论(1) | 转发(0) |