Tagged Questions

7
votes
2answers
1k views

How can I simulate a failed disk during testing?

In a Linux VM (Vmware workstation or similar), how can I simulate a failure on a previously working disc? I have a situation happening in production where a disc fails (probably a controller, cable ...
4
votes
3answers
1k views

How to find out if SCSI device (say /etc/sda) is a disk or not via ioctl calls or other?

How to find out if SCSI device (say /dev/sda) is a disk or not via ioctl calls or other ? I have tried the following but the ioctl call fails. My /dev/sda is a USB flash disk. #include ...
3
votes
1answer
72 views

How to distinguish USB and (S)ATA device in the kernel scsi_device structure?

According to the kernel structure struct scsi_device used by SCSI drivers (kernel 2.6.23): http://lxr.linux.no/linux+v2.6.23/include/scsi/scsi_device.h#L49 Is there a reliable method to ...
2
votes
1answer
116 views

Is there a definitieve resource that documents navigation of the linux /proc and /sys filesystems?

We use the /proc and /sys file systems in Linux to discover various types of system configuration information. Typically, we spelunk around through the different files and directories until we find ...
1
vote
1answer
61 views

How to get a list of SCSI-Disks in C/C++ under Linux?

i need to get a list or any other enumerable class with info about any connected SCSI-disks, with info just like /proc/scsi/sg/devices Please help me and thanks in advance
1
vote
2answers
222 views

Java scsi access

I'd like to port a Linux C program to Java. This program controls a camera which is connected to the PC with a USB cable. The C code uses Linux SCSI Generic (sg). Sample code from the C program: ...
1
vote
2answers
1k views

Retrieve SD Card Serial Number and Manufacturer under Linux

I want to be able to retrieve an SD Card's Serial Number, Manufacturer, and any other information it may provide. Java or just a command to run would be great. Compact Framework does it, but that ...
0
votes
3answers
120 views

How to be informed when a HDD is detected in Linux

We have an embedded Linux build that starts with a HDD in sleep mode (hardware). The software then starts and enables power to the drive. Linux detects the drive fine: ata1: exception Emask 0x10 SAct ...
0
votes
0answers
108 views

How to debug a pcmcia-scsi adaptor issue with a slide scanner (ubuntu)?

I am looking for ways to debug (or understand why things don't work as I expect) the initialisation of an SCSI-2 device (Microtek ArtixScan 4000t) using a PCMCIA adaptor (Adaptec SlimSCSI 1450B) on my ...
0
votes
3answers
157 views

Get vendor name of SCSI

How can I get the vendor name of SCSI device on linux & c?