Quote:
Does anyone know how to access files of root directory of fc7 through ubuntu.
|
If you are running ubuntu, go to the terminal.
1. create a directory eg. ~/fedora
2. sudo fdisk -l
You need to identify which partition is Fedora root partition
let's say it'll be /dev/hda4
3. sudo mount -t ext3 /dev/hda4 ~/fedora
4. cd ~/fedora
You should now be browsing fedora root partition
hth