Linux超级块
我是 Linux 编程新手,我有一些愚蠢且简单的问题。假设我有 USB 磁盘 1(/dev/sda1 - 类型 vfat)和 USB 磁盘 2(/dev/sdb1 - 类型 vfat),并且我将它们安装在 /tmp/media/myusbdisk/ 作为安装点,
它们是否具有相同的超级块?我很困惑哪个是 usbdisk1 和 usbdisk2 的超级块
I'm newbie in linux programming and I have silly and simple questions. Suppose I have usb disk1 (/dev/sda1 - type vfat) and usb disk 2 (/dev/sdb1 - type vfat) and I mounted them in /tmp/media/myusbdisk/ as mount point
Are they have the same superblock? I'm confuse which one is superblock of usbdisk1 and usbdisk2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么是共享的。当您将第二个文件系统安装到给定的安装点时,内核会隐藏第一个文件系统。因此,您可以看到最近安装的文件系统的内容,以及您所做的任何更改都会影响该文件系统。
Nothing is shared. When you mount a second filesystem to a given mount point, the kernel hides whatever was there first. So you see the contents of the filesystem that was mounted most recently, and any changes you make affect that filesystem.