Tagged Questions

Small Computer System Interface (SCSI, pronounced skuz-ee) is a set of standards for physically connecting and transferring data between computers and peripheral devices.

learn more… | top users | synonyms

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
996 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
67 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
0answers
213 views

Does QueryDosDevice and IOCTL_STORAGE_GET_DEVICE_NUM treat LUNs as separate devices?

Can someone confirm whether QueryDosDevice() and IOCTL_STORAGE_GET_DEVICE_NUMBER considers LUNs on the same physical USB storage device as a single device, or is each LUN considered as a separate ...
2
votes
1answer
114 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 ...
2
votes
2answers
1k views

VMWare Server: Virtual Hard Drive Type

For best performance, is it better to use a virtual IDE HDD or virtual SCSI HDD? If, SCSI, does it matter whether you use an BusLogic or LSILogic?
1
vote
1answer
57 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
1answer
64 views

iSCSI Packet Header

Does iSCSI introduce any layers (other than the TCP-headers themselves) on top of the SCSI packet? Are there any reference manuals for iSCSI other than the RFC itself? I need this information for ...
1
vote
1answer
106 views

Windows repeatedly sends SCSI READ CAPACITY requests

I'm developing a USB-based mass storage device. Control is via SCSI commands. One of the LUNs of this device is "hidden", all commands (except INQUIRY and REQUEST SENSE) return COMMAND FAILED (1). ...
1
vote
2answers
210 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 ...
1
vote
4answers
901 views

issuing hard drive commands with java

Does anyone know of a way to issue commands to a hard drive within Java? Does Java even support this kind of hardware interaction? For example, if I have a SCSI hard drive that I would like to ...
0
votes
1answer
44 views

Who creates the “/dev/sdaX” node in the Linux filesystem? [closed]

I have doubts, who creates the node sd (SCSI Disk) under /dev? I thought it was a kernel with usb driver in fact, but I have not found any documentation about this. I just found that it may be to ...
0
votes
0answers
27 views

How to use SCSI READ CD command to read audio sector?

Since READ CD command requires pass logical block address, and logical block size is 2048 bytes, while raw sector size is 2352 bytes. Map of logical block address to real sector is handled by the ...
0
votes
1answer
90 views

Linux 2.6.18 SCSI SPIN and SPOUT SG_IO ioctl's to a sg LTO5 device

I am trying to take advantage of hardware encryption of LTO5 devices using ioctl's in my fuse file system. It should be quite simple, setup a io_hdr with a cdb: 0xB5, 0x20, 0x00, 0x10, 0x00, 0x00, ...
0
votes
1answer
91 views

Sending a specific SCSI command to a SCSI device in Mac OS X

Is it possible to do some Inquiry requests to SCSI driver?
0
votes
3answers
104 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
31 views

IOSCSIPeripheralDeviceType00 05 07 and 0E classes?

How to prevent attaching the system's drivers to the IOSCSIPeripheralDeviceType00 05 07 and 0E classes from user-space after, for example, inserting the DVD (for 05)? What links are may be useful? I ...
0
votes
0answers
106 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
148 views

Get vendor name of SCSI

How can I get the vendor name of SCSI device on linux & c?
0
votes
2answers
672 views

Sending a specific SCSI command to a SCSI device in Windows

Does windows have specific interface by which I can send a specific scsi command such Inquiry to scsi device ? I searched the net, found passing reference to SCSI Pass Through interface. But Its very ...
0
votes
1answer
318 views

send SCSI commands using C#

I'm controlling my self-designed USB device using SCSI interface with C by opening a file handle, ioctl and using sg_io_hdr_t structure. I have to design a GUI, and i should do that with C#. I am not ...
0
votes
1answer
579 views

How could get scsi HDD serial number?

I wanna get the serial number of a scsi harddisk, but it makes an error! I work with VC++ on Microsoft Windows XP. What must i do for that?
0
votes
2answers
472 views

How to get serial number for Hard Driver

How to get the unique number (serial number/ID) for Processor (CPU), SCSI, Display, and IDE using C++ program other than WMI and asm code?
0
votes
1answer
1k views

SCSI Windows Setup on Dell Precision 670 Workstation…please help

Error Windows Setup: "setup did not find any hard disk drives installed in your computer" This is not exactly a programming question but I thought you guys might be able to help. I just received a ...