Quote:
Originally posted by pinoyricer103
i have all my files backed up on my other partion... "/dev/hda5" but when i try to access it i get this error message "Nautilus has no installed viewer capable of displaying "/dev/hda5". " how can i get access to the partion? i have important files in there... thx
|
What kind of a file system is /dev/hda5? If you did something like this:
Code:
dump 0f /dev/hda5 ...
Then /dev/hda5 itself is a big data file. It is not an ext2 or ext3 file system and cannot be mounted. All is not lost. You can access this type of a file using:
Code:
restore if /dev/hda5
Perhaps you intended /dev/hda5 to be an ext2 or ext3 file system, mount it, then do a backup to a file on this file system, for example:
Code:
mount /dev/hda5 /mnt/<whatever>
dump 0f /mnt/<whatever>/hda1.dump /dev/hda1