mount

Ubuntu 系統 mount 指令,掛載裝置

findmnt 找出掛載的資訊

列出掛載資訊

findmnt /

$ findmnt /
TARGET SOURCE    FSTYPE OPTIONS
/      /dev/sda2 ext4   rw,relatime,errors=remount-ro,data=ordered

列出掛載資訊 json 格式

findmnt / –json

$ findmnt / --json
{
   "filesystems": [
      {"target": "/", "source": "/dev/sda2", "fstype": "ext4", "options": "rw,relatime,errors=remount-ro,data=ordered"}
   ]
}

參考資料