How do I know if a partition is ext2, ext3, or ext4?

The option is to use blkid:

# blkid /dev/sda1 
/dev/sda1: UUID="625fa1fa-2785-4abc-a15a-bfcc498139d1" TYPE="ext2"

This recognizes most filesystem types and stuff like encrypted partitions.

You can also search for partitions with a given type:

# blkid -t TYPE=ext2
/dev/sda1: UUID="625fa1fa-2785-4abc-a15a-bfcc498139d1" TYPE="ext2" 
/dev/sdb1: UUID="b80153f4-92a1-473f-b7f6-80e601ae21ac" TYPE="ext2"
  • 0 Utilisateurs l'ont trouvée utile
Cette réponse était-elle pertinente?

Articles connexes

Apache restart failed. Unable to load pid from pid file and no httpd process found in process list.

Steps to Resolve the above error1.Login to ssh and type killall -9 httpd then try to restart http...

Rsync Backup/Restore Instructions of cloud servers.

Detailed Rsync backup instructions are available   To begin, simply log in as root to...

VPS上使用DropBox定時備份方案

這個備份方案是直接使用dropbox同步,如果想實時同步就一直守護dropbox進程,會佔用一定資源。1.linux上安裝dropbox 32位linux wget -O...

ssh下輸入 free 可顯示記憶體的使用率

以下參考這個網頁 Linux Memory Usage 記憶體使用率 # free total used free shared...

How to install Perl by ssh?

Fatal! Perl must be installed before proceeding!To Resolve These Problem First we need to install...