当我们执行此操作时(在linux 7.x上)
umount /grop/sdc
umount: /grop/sdc: target is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
我们可以看到,坐骑在繁忙的时候失败了。
但当我们做remount的时候..。重装是成功的,如下所示:
mount -o rw,remount /grop/sdc
echo $?
0
太有趣了。
重新挂载是否使用类似( umount -l )
我正在通过ssh访问另一个ununtu linux系统。
现在,当我要更改该系统中任何文件的权限时,它会显示
chmod: changing permissions of `Android.mk': Read-only file system
chmod: changing permissions of `system_init.cpp': Read-only file system
我尝试使用sudo并以root身份登录,但仍然不明白为什么我无法更改该文件的权限。
我要求一个来澄清挂载在Linux中的含义。
我对克隆人手册页中这个词的使用有疑问:
The namespace of a process is the data (the set of mounts) describing the file
hierarchy as seen by that process.
--描述文件层次结构的一组挂载--对我来说似乎有些误导。
根据我所理解的基于接受的,文件层次结构可能不仅仅是挂载集,因为挂载集只是文件系统被添加到现有文件系统的挂载点。
有人能澄清吗?