Use of prtdiag to give information of sectors,cylinders,track of each disk


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Use of prtdiag to give information of sectors,cylinders,track of each disk
# 1  
Old 03-26-2014
Use of prtdiag to give information of sectors,cylinders,track of each disk

Hi All,

i am trying to get sectors,cylinders,track..etc information of all present disks out of solaris machine using prtvtoc command .
Output of ptrvtoc command is as below :
Code:
 
bash-3.2# prtvtoc /dev/dsk/c1t0d0s0
* /dev/dsk/c1t0d0s0 partition map
*
* Dimensions:
*     512 bytes/sector
*      63 sectors/track
*     255 tracks/cylinder
*   16065 sectors/cylinder
*    5220 cylinders
*    5218 accessible cylinders
*
* Flags:
*   1: unmountable
*  10: read-only
*
*                          First     Sector    Last
* Partition  Tag  Flags    Sector     Count    Sector  Mount Directory
       0      2    00    2120580  81706590  83827169   /
       1      3    01      16065   2104515   2120579
       2      5    00          0  83827170  83827169
       8      1    01          0     16065     16064

This is manual way of getting this information where i have to manually put name of the disk .

Can someone help me in automatically perform this task for all teh disk present on anu solaris machine.also i want to have only the 'Dimensions' part not rest.

Please susggest
# 2  
Old 03-26-2014
Perhaps something like:

Code:
for DISK in /dev/dsk/c1t0d*s0
do
        prtvtoc "$DISK"
done

# 3  
Old 03-28-2014
thanks a lot Corona688.. i have modified the script a bit and got the end result...Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

EFI disk labeling / understand the parition table / sectors not continue

Hi all, I have a EFI disk and it is use in zfs pool. partition> p Volume: rpool Current partition table (original): Total disk sectors available: 1172107117 + 16384 (reserved sectors) Part Tag Flag First Sector Size Last Sector 0 usr wm ... (8 Replies)
Discussion started by: javanoob
8 Replies

2. UNIX for Advanced & Expert Users

read sectors from disk failed with timeout

i'm writing some code to simulate the boot progress after power on but when i try to read the 2nd sector from a floppy disk, this operation always fail with ah=0x80h which means timeout, how can i get over this problem? my code would be like this: $ cat boot.S .code16 #define SETUPLEN 4... (0 Replies)
Discussion started by: wljackhero
0 Replies

3. Linux

read sectors from disk failed with timeout

i'm writing some code to simulate the boot progress after power on but when i try to read the 2nd sector from a floppy disk, this operation always fail with ah=0x80h which means timeout, how can i get over this problem? my code would be like this: $ cat boot.S .code16 #define SETUPLEN 4... (0 Replies)
Discussion started by: wljackhero
0 Replies

4. Boot Loaders

read sectors from disk failed with timeout

i'm writing some code to simulate the boot progress after power on but when i try to read the 2nd sector from a floppy disk, this operation always fail with ah=0x80h which means timeout, how can i get over this problem? my code would be like this: $ cat boot.S .code16 #define SETUPLEN 4... (0 Replies)
Discussion started by: wljackhero
0 Replies

5. Solaris

SPARC, data sectors/track

when I try to enter the value 424 for "data sectors/track" in format menu, it returns this error: `424' is out of range. is that hard drive parameter important? what to enter? thanks. (2 Replies)
Discussion started by: orange47
2 Replies

6. Linux

C++ Code to Access Linux Hard Disk Sectors (with a LoopBack Virtual Hard Disk)

Hi all, I'm kind of new to programming in Linux & c/c++. I'm currently writing a FileManager using Ubuntu Linux(10.10) for Learning Purposes. I've got started on this project by creating a loopback device to be used as my virtual hard disk. After creating the loop back hard disk and mounting it... (23 Replies)
Discussion started by: shen747
23 Replies

7. Filesystems, Disks and Memory

Smartmontools and fixing Unreadable Disk Sectors

I found a document: Bad block HOWTO for smartmontools My hard drive is Maxtor: root]# fdisk -lu /dev/hda Disk /dev/hda: 81.9 GB, 81964302336 bytes 255 heads, 63 sectors/track, 9964 cylinders, total 160086528 sectors Units = sectors of 1 * 512 = 512 bytes Disk identifier: 0x3f4e3f4d ... (0 Replies)
Discussion started by: justinian
0 Replies

8. Solaris

How do I find out how many data cylinders a disk has?

I recently installed two new hard drives onto an OpenSolaris v5.11 machine. I need to format the two disks. I tried the format command. It asks me for the number of data cylinders and alternate cylinders.... <see below> admin@minime-28:/dev/rdsk# format Searching for disks...done ... (9 Replies)
Discussion started by: sqa777
9 Replies

9. Filesystems, Disks and Memory

SCSI disk spare sectors

Is there a way to determine the number of available spare sectors on a disk ? as it may be useful for notifying a user to take a backup of the disk before it runs into a medium error. (6 Replies)
Discussion started by: rednex
6 Replies
Login or Register to Ask a Question