我试图安装以前只读的文件系统可读写:
mount -o remount,rw /mountpoint
不幸的是它不起作用:
mount: /mountpoint not mounted already,or bad option
dmesg报道:
[2570543.520449] EXT4-fs (dm-0): Couldn't remount RDWR because of unprocessed orphan inode list. Please umount/remount instead
umount也不起作用:
umount /mountpoint umount: /mountpoint: device is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1))
不幸的是,lsof定影器都没有显示任何进程访问位于挂载点下的内容.
那么 – 我如何清理这个未经处理的孤立列表,以便能够在不重新启动计算机的情况下再次挂载文件系统?