
Originally Posted by
Digitalrover
I'm trying to play around with figuring out how to mount the drive. I'm unfamiliar with... pretty much anything related to linux code. However, from what I can find, most of the commands rely on the HDD being connected via IDE or SCSI connections. My HDD is hooked up to the system via a SATA cable. Should it still be read as an IDE connection or what?
What exactly are you doing? You must be more precise about what you have tried to do if you want people to help you.
To find out about the disk(s), open a terminal, issue su to become root. and check what Knoppix has found by .
Now you will probably find the SATA harddisk partitions as /dev/sda1, /dev/sda2 etc - or /dev/sdb1, /dev/sdc1 etc.... If the first partition is /dev/sda1, you can try to mount it, read-only:
Code:
mkdir /media/sda1
mount -o ro /dev/sda1 /media/sda1
Be careful when mounting with write privileges. You can mess things up, NTFS partitions in particular. Check out the man pages: And with Knoppix, you don't really have to touch the harddisks at all if you don't want to.