Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

Add SCSI drive support in Ubuntu

Writer Matthew Martinez

I need to attach an old SCSI drive (HP Model ST373454LW, 73 GB) to an Ubuntu 14.04 machine.

I'm attaching the drive through the forensic bridge UltraBay II. While the bridge recognizes the SCSI drive just fine, it does not detect the host (i.e. the Ubuntu machine). The bridge is attached internally via a SATA type A connector and powered via a Molex-to-SATA connection.

What can I do to get the Ubuntu to machine to recognize this drive? I cannot partition or format the target drive, the data must be transferred.

It seems from make xconfig that general SCSI support is enabled:

enter image description here

2 Answers

Your disk probably contains partitions that do not mount automatically...

By checking the content of

dmesg | less 

... you may look for what kind of action the addition of the drive actually triggers -> by this you will see if it is detected.

lsblk

lists all known disks and partitions with the related /dev/xxx visible - see if you can locate it in that list.

To get the partition labels you must invoke it with sudo and something similar to:

flds="MOUNTPOINT,NAME,FSTYPE,LABEL,RO,RM,STATE,TYPE,SIZE,MODEL" \
&& sudo lsblk -o $flds

By use of

sudo dd if=/dev/xxx of=$HOME/SavedDisk.img conv=noerror iflag=sync

you may read out the total content of the disk, even if there are errors and/or it is not mountable (errors will be zeroed out in the image!).
Swap if= with of= and vice versa to move the data in the other direction.

Such an image may then be mounted through the loop device in the most simple manner by using the menu of gnome-disks &

2

First, make sure your kernel has SCSI generic support enabled. Inmake xconfig, this shows up under SCSI support -> SCSI generic support.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy