In order to display all currently mounted filesystems, which of the following commands could be used? (Choose TWO correct answers.)



A.

cat /proc/self/mounts

B.

free

C.

mount

D.

lsmounts

E.

cat /proc/filesystems

題解

「cat」指令可以輸出檔案內容,「free」指令可以用來顯示目前系統的主記憶體和置換空間的分配情形,「mount」指令可以用來掛載檔案系統。

選項A,正確答案,「/proc/self/mounts」檔案內容為目前掛載的檔案系統的參數。

選項B,錯誤答案。

選項C,直接執行「mount」指令會顯示出「/proc/self/mounts」的檔案內容。

選項D,沒有「lsmounts」指令。

選項E,「/proc/filesystems」的檔案內容為目前Linux Kernel支援(已載入)的所有檔案系統,如果檔案系統名稱前面有「nodev」,表示這個檔案系統不是用在區塊類型的裝置(如硬碟)。