0

How to check disklabel type in linux

I need to know which disklabel type is used in my hardisk. I have three hardisk, how to view that it is msdos or gpt or bsd.???

Linux Disk–usage Add a comment
isaac
asked May 05 2017

Answer

0

Normally you can view in fdisk -l command itself at Partition table column.

If its not visible, do the below process,

# parted
Using /dev/sda
Welcome to GNU parted! type 'help' to view comments
(parted) print

You can view the label in Partition Table column.

NOTE: If parted command is not found, install using yum install parted -y

Add a comment
jagannatharumugam
asked May 05 2017
edited Oct 05 2018
Post your Answer