Posts Tagged “hdd info”

The following is the way to find out and command to display the basic specifications of a Linux System Hardware:

To view CPU information:
- Processor number = n+1 (count from “0″)
$ cat /proc/cpuinfo | less

To view Memory information:
$ cat /proc/meminfo

To view Hard disk drives:
$ fdisk -l | grep Disk

To view HDD partitions:
(HDD1 = sda, HDD2 = sdb, HDD3 = sdc & so on…)
$ df -h

To display the detail of particular partition:
(but these does not supported on SCSI disks)
$ hdparm -I /dev/sda | less
$ hdparm -I /dev/sdb | less
$ sudo hdparm -I /dev/sda

Tags: , , , , , , , , ,

Comments No Comments »