now I'm trying to read an image from it by using 'dd' and that seems to be able to read the entire disk, but not the partitions.
If i use parted i can see the partitions but not when 'ls /dev/sdc*'
this is what I mean:
- Code: Select all
[root@kgdubben ~]# ls /dev/sd
sda sdb sdc sdd
[root@kgdubben ~]# ls /dev/sd*
/dev/sda /dev/sdb /dev/sdc /dev/sdd
[root@kgdubben ~]#
[root@kgdubben ~]#
[root@kgdubben ~]# parted /dev/sdc
GNU Parted 1.9.0
Using /dev/sdc
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) p
Model: ATA HDS722512VLSA80 (scsi)
Disk /dev/sdc: 124GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 32.3kB 107MB 107MB primary ext3 boot
2 107MB 17.6GB 17.5GB primary ext3
3 17.6GB 18.7GB 1078MB primary linux-swap(v1) swap
4 18.7GB 124GB 105GB primary ext3
(parted)
Is there a way for me to fix this? thus recreating the partitions so I can read them to an image backup that I can 'dd' back to another disk
also when trying to mount it I get this:
- Code: Select all
[root@kgdubben ~]# mount /dev/sdd /mnt/sdd
mount: unknown filesystem type 'silicon_medley_raid_member'
btw, another thing. When I put the disk in the system I couldn't see it in /dev, I had to reboot but is that really necessary?

