Friday, April 26, 2024
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 13164  / 2 Years ago, wed, december 29, 2021, 7:37:54

I have a 3TB raid, which was made originally with OPEN MEDIA VAULT, a media server. I have recently uninstalled OPEN MEDIA VAULT from the server and installed ubuntu 13.10.



The only problem I'm having is that I can't mount the raid disks and I DON"T want to lose the data at all, it's all my vital information.



Here's what I've tried:



mkdir /media/3TBRaid
// And then the mount command
sudo mount -t ext4 /dev/sdd/ /media/3TBRaid


This returns 'Mount: wrong fs type, bad option, bad superblock on /dev/sdd, missing codepage or helper program, or other error. In some cases useful info is found in syslog - try dmesg | tail or so'



I'm fairly new to LINUX in general, so please don't yell at me :)



The two drives, that I actually want to mount as one are device:



1: /dev/sdd
2. /dev/sdc


The type of both of these drives are 'linux_raid_member'



Could someone please help me on how to correctly mount the two drives as one without loosing my data?



Thankyou!


More From » partitioning

 Answers
2

as mount specified, something wrong with the FS(file system).

Try this: (It'll format the drive with ext4 format)



 mkfs.ext4 /dev/sdd 


If format successes
then try these mounting steps again




mkdir /media/3TBRaid
// And then the mount command
sudo mount /dev/sdd/ /media/3TBRaid


hope it helps .!!



EDITED:



instead of this(): follow this link


[#29536] Friday, December 31, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
unsmmoth

Total Points: 72
Total Questions: 113
Total Answers: 95

Location: Thailand
Member since Tue, Oct 6, 2020
4 Years ago
;