Tuesday, October 11, 2011

FreeBSD Find Out list all Installed Hard Disk devices Information

FreeBSD Find Out list all Installed Hard Disk devices Information
by VIVEK GITE on FEBRUARY 6, 2008 · 3 COMMENTS

Q. How do I find out all installed hard disk names under FreeBSD without rebooting the server? How do I use the equivalent of fdisk -l in Linux, with FreeBSD to list all hard disks?

A. The easiest way to find out detected hardware information under FreeBSD is go through /var/run/dmesg.boot file. This file is usually a snapshot of the buffer contents taken soon after file systems are mounted at startup time. It is not modified till system is rebooted. Just Linux, FreeBSD follows some sort of physical disk naming conventions:

a] IDE Hard disk names starts with ad - /dev/ad0 first IDE hard disk, /dev/ad1 second hard disk and so on

b] SCSI Hard disk names starts with da - /dev/da*

c] IDE CDROM/RW/DVD names starts with acd - /dev/acd*

d] SCSI CDROM/RW/DVD names starts with cd - /dev/cd*

List all detected hard disk / cdroms

Type the following command, enter:
# egrep 'ad[0-9]|da[0-9]|cd[0-9]' /var/run/dmesg.boot

Output:

acd0: DVDROM at ata0-slave UDMA33
ad4: 239372MB at ata2-master SATA150
ad6: 239372MB at ata3-master SATA150
Trying to mount root from ufs:/dev/ad4s1a
From above output it is clear that I've following storage installed:

ad4 : My First hard disk connected to ATA channel 2
ad6: My Second hard disk connected to ATA channel 3
acd0 : My DVD ROM

atacontrol command

The atacontrol utility is a control program that provides the user access and control to the FreeBSD ata (IDE / SATA hard disk) subsystem.

WARNING! These examples may crash your computer and loss of data if executed improperly. Please exercise caution when using atacontrol command!

The list option can list all hard disk, enter:
# atacontrol list

Output:

ATA channel 0:
Master: no device present
Slave: acd0 ATA/ATAPI revision 7
ATA channel 1:
Master: no device present
Slave: no device present
ATA channel 2:
Master: ad4 Serial ATA II
Slave: no device present
ATA channel 3:
Master: ad6 Serial ATA II
Slave: no device present

===

Fabrice A. Marie January 28, 2010
I found that gpart is more accurate. For example on my machine there
are other discs which names do not start with ad

# gpart show

=> 63 156310371 ad2 MBR (75G)
63 156309489 1 freebsd [active] (75G)
156309552 882 – free – (441K)

=> 63 488394963 ad4 MBR (233G)
63 472005702 1 !131 (225G)
472005765 16386300 2 !130 (7.8G)
488392065 2961 – free – (1.4M)

=> 63 398292804 twed0 MBR (190G)
63 163846872 1 !7 (78G)
163846935 234436545 2 !131 (112G)
398283480 9387 – free – (4.6M)

=> 0 156309489 ad2s1 BSD (75G)
0 1048576 1 freebsd-ufs (512M)
1048576 8315952 2 freebsd-swap (4.0G)
9364528 6254592 4 freebsd-ufs (3.0G)
15619120 1048576 5 freebsd-ufs (512M)
16667696 139641793 6 freebsd-ufs (67G)

Reference:
http://www.cyberciti.biz/faq/freebsd-hard-disk-information/

No comments: