美文网首页
linux挂载

linux挂载

作者: jnxc1888 | 来源:发表于2018-02-28 23:46 被阅读8次

查询系统中已挂载的设备

mount

输出

/dev/vda1 on / type ext4 (rw,barrier=0)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/dev/vdb1 on /mnt type ext3 (rw)

访问/,即可访问第一块硬盘(a)的第一个分区(1)内容
访问/mnt,即可访问第二块硬盘(b)的第一个分区(1)内容

自动挂载

mount -a

自动挂载/etc/fatab内的

相关文章

网友评论

      本文标题:linux挂载

      本文链接:https://www.haomeiwen.com/subject/ownbxftx.html