Mounting a unraid hdd in Ubuntu to recover files


Recommended Posts

Hello

 

I need to recover some files on a replaced unraid hdd i had lying around. I connected the drive with a usb/sata dock and connected it to my Ubuntu 9.10 box. But the drive isn't mounted like it does with ntfs or fat or ext3. Ubuntu does have ReiserFS support out of the box right? Do i have to mount it manually? I can see the drive in Ubuntu Disk Utility.

Link to comment

also, the file system is on partition 1, so you'll probably need to specify that too.

 

mkdir /tmp/mount_point

mount -r -t reiserfs /dev/sdX1 /tmp/mount_point

where sdX is the correct device name for the disk followed by a "1".

Under ubuntu you will probably need to sudu those commands.

Link to comment

This is what I did:

 

root@ubuntu:/home/bart# mkdir /tmp/mount_point

root@ubuntu:/home/bart# mount -r -t reiserfs /dev/sdb1 /tmp/mount_point

mount: /dev/sdb1 already mounted or /tmp/mount_point busy

mount: according to mtab, /dev/sdb1 is mounted on /media/9d990ea2-759e-4c63-bc7e-34756b7c5e88

root@ubuntu:/home/bart#

 

Do i have to unmount it first?

 

Link to comment

This is what I did:

 

root@ubuntu:/home/bart# mkdir /tmp/mount_point

root@ubuntu:/home/bart# mount -r -t reiserfs /dev/sdb1 /tmp/mount_point

mount: /dev/sdb1 already mounted or /tmp/mount_point busy

mount: according to mtab, /dev/sdb1 is mounted on /media/9d990ea2-759e-4c63-bc7e-34756b7c5e88

root@ubuntu:/home/bart#

 

Do i have to unmount it first?

 

Looks like it auto-mounted it for you.  Yes, you can

umount /dev/sdb1

and then mount it on your own mount point...

 

Joe L.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.