In AIX we can view raw data of hdisk by issuing following comamand
lquerypv -h /dev/hdisk0
This displays data in hexa decimal format. More of like hex editor.
What is the equivalent command in Linux based system
Look I think that you can replace the command you need with the following
sudo cat /dev/sda2|head -n 5|strings
You can change the number of head lines as you want and you can also remove the head part and append a "less" to go through all the required disk or whatever
sudo cat /dev/sda2|strings|less
This is what i was looking for. Finally i got it with the help of cfdisk command.
cfdisk -P r /dev/sda
Where sda is your disk, P is for printing partition table to screen and r is for print raw output.
Here is the sample output.
hexdump? What info are you after?