1829203 Members
2585 Online
109986 Solutions
New Discussion

Re: Hardware device path

 
SOLVED
Go to solution
Cheung_2
Frequent Advisor

Hardware device path

How can I know the hardware device path eg. CDROM , tape, external device, I use ???ioscan??? in UNIX, what is the command in Linux ? Thx.
Andy
7 REPLIES 7
U.SivaKumar_2
Honored Contributor
Solution

Re: Hardware device path

Hi,

Give this command to find out scsi devices

#cat /proc/scsi/scsi

Give this command to find out PCI devices

#cat /proc/pci

To find out IDE devices

#cat /proc/ide

regards,

U.SivaKumar

Innovations are made when conventions are broken
Cheung_2
Frequent Advisor

Re: Hardware device path

Hi U Si,

I can't the tape device by the command
"#cat /proc/scsi/scsi", is there any other method to check it?
Andy
U.SivaKumar_2
Honored Contributor

Re: Hardware device path

That means your machine don't have SCSI controllers.

regards,
U.SivaKumar
Innovations are made when conventions are broken
Chakravarthi
Trusted Contributor

Re: Hardware device path

cd /proc/sys/dev

you'll find all the information about the devices identified by the system at Boot time

use cat command to view the information
Cheung_2
Frequent Advisor

Re: Hardware device path

Hi U Si,

I only find the Raid card device when using your command,
how can i know the device path? thx
Andy
Chakravarthi
Trusted Contributor

Re: Hardware device path

cd /proc/sys/dev

you'll find all the information about the devices identified by the system at Boot time

use cat command to view the information
Cheung_2
Frequent Advisor

Re: Hardware device path

I only find the cdrom and raid , where can find the tape drive? thx
Andy