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 Utilizadores acharam útil
Esta resposta foi útil?

Artigos Relacionados

How to complete uninstall Attracta tool?

Please run following command.  /usr/local/cpanel/3rdparty/attracta/scripts/uninstall-attracta

obtain the location of all files owned by this user

Code: # id username # find / -uid UIDNUMBER > /root/username.output Replace the first...

Resize the /tmp and /usr/tmpDSK for cPanel

You can resize it if it isn't large enough. Many servers have only 500MB for /tmp which isn't...

Apache如何設定在一個ip的前提下使用兩個不同的網域?

Apache 的 httpd.conf 只要把下面的設定加到最後面,再重跑就好了:...

PHP 時區 timezone 設定

php.ini找到 [Date];date.timezone = 改為 [Date]date.timezone = "Asia/Taipei" 記得前面的冒號 ;...