Cara Mengetahui Tipe File System di Linux
• 1 • 128
Untuk mengetahui tipe file system partisi disk, kita bisa menggunakan perintah df
dan mount
:
[sumodirjo@clarisa ~]$ df -T Filesystem Type 1K-blocks Used Available Use% Mounted on /dev/mapper/VolGroup00-LogVol00 ext3 7237104 3092144 3771408 46% / /dev/sda1 ext3 101086 12166 83701 13% /boot tmpfs tmpfs 257668 0 257668 0% /dev/shm
[sumodirjo@clarisa ~]$ mount /dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) /dev/sda1 on /boot type ext3 (rw) tmpfs on /dev/shm type tmpfs (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) none on /proc/fs/vmblock/mountPoint type vmblock (rw)
dengan dua perintah diatas, kita bisa melihat bahwa tipe disk /dev/sda1 memiliki tipe file system ext3 dan di mount di /boot
Selamat mencoba!