Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
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.
ok so, i had a laptop running fedora 7, that laptop's screen went bad, so i sold it for parts, but i kept the hard drive. i bought an enclousure for it. my plan was to use it as an external drive to a new computer i was going to build myself, that has been put off for some time, but i need my data. so on another computer running XP SP2 i want to use these files, windows recognizes the disk, i downloaded from http://www.fs-driver.org/ in order to read my disk, but when i do, it shows the size as 101 MB and when i surf into it it only shows a grub folder and a lost+found folder. and some other files.
Your driver adds support for ext2 in windows. The second partition is a logical volume (LVM). You could run a live linux distro and copy the files you need.
ok i am right now on ubuntu live cd, because i had the same idea. when i plug in the external drive, it shows it as a USB drive but again only shows grub and the such.
Create a directory to mount it on, and use the fstab line I gave as a guide. Your particular device node may be named differently (than /dev/VolGroup00/LogVol00) but it should be similar. You could create two directories under /mnt, one for this partition and the other for mounting the destination.
Code:
sudo mount -t ext3 /dev/VolGroup00/LogVol00 /mnt/laptopdrive -o defaults
If it mounts successfully, you may need to run "chown" on your old home directory. Your UID using the Ubuntu live distro may be different than what it was when you were running Linux on the Laptop.
Here are the list of modules in the initrd ramdisk for Fedora Core 6:
If you don't see /dev/VolGroup00/LogVol00 or /dev/mapper/VolGroup00/LogVol00, you might want to check the output of "/bin/lsmod" and see if the dm-* modules are loaded.
Also look in the lvm manpages. There are several programs for dealing with lvm volumes.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.