在Ubuntu系統中,可以使用mount
命令或者/etc/fstab
文件來檢查當前系統的掛載狀態
方法1:使用mount
命令
打開終端(Terminal)并輸入以下命令:
mount
這將顯示當前系統中所有已掛載的設備和分區。輸出結果類似于以下內容:
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=4058988k,nr_inodes=1014747,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=815736k,mode=755)
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
...
方法2:查看/etc/fstab
文件
/etc/fstab
文件包含了系統啟動時自動掛載的設備和分區信息。要查看此文件,請在終端中輸入以下命令:
cat /etc/fstab
輸出結果類似于以下內容:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system><mount point> <type> <options> <dump> <pass>
/dev/sda1 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda2 during installation
UUID=d3a3f0a8-b3e6-4c3e-9f0a-98b6a1d3b3a3 /boot ext2 defaults 0 2
...
這些方法可以幫助你檢查Ubuntu系統的掛載狀態。如果你需要掛載或卸載設備,可以使用mount
和umount
命令。