Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Hi I hope someone out there can help me - I am new to linux and am using Mandrake Linux 9.1. I have a hard drive from a machine of mine which died and had Mandrake Linux 8.2 and I want to retreive the info from it. I have tried installing it as a Primary IDE Slave hard drive on my Mandrake linux 9.1 machine but it will not let me mount it and keeps asking me do I want to erase the information stored on it - I certainly do not want to do that. I just have some files in a folder on it and want to get them off, after that I dont care what happens the disk - any ideas anyone??
Do you still have MDK 9.1 installation cds? You'll need the 1st one. Connect the 8.1 disk as primary slave, boot from the cd, enter 'rescue' mode.
Now you need to mount two partitions: the one you'd like to copy the data from and the one to copy them to. Let's say you have one partition on /dev/hdb (primary slave) and the partition you'd like to copy to is /dev/hda5.
The commands are:
mkdir /mnt/master
mkdir /mnt/slave
mount -t ext3 /dev/hda5 /mnt/master
mount -t ext3 /dev/hdb1 /mnt/slave
Note that you may need to change partiton types and numbers (to see current partitioning scheme of dev/hda, use 'fdisk /dev/hda', then press 'p' to list partitions and 'q' to quit).
Now you have source in /mnt/slave and destination in /mnt/master. The only thing now is to copy the data (if you're not familiar with the 'cp' command, read its manual before you start).
Hi, thanks for your reply - however when I follow the steps I get the error -
wrong fs type, bad option, bad superblock on /dev/hdb, or too many mounted filesystems
Any help with this would be greatly appreciated
Also, When i do fdisk /dev/hdb I get the error "Unable to read /dev/hdb"
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.