actually linux has advanced to the point of being able to read and write to NTFS partitions :] it just sounds like yours aren't being mounted when the system boots up. the ntfs-3g drivers should is supposed to be prebuilt into fedora 7, so open up a terminal and execute the following commands:
su -
(enter your root user password)
fdisk -l
- su -
- (enter your root user password)
- fdisk -l
this should output information about all of the storage devices you have connected to your computer. the information should look similar to this..
root@shibbyu:~# fdisk -l
Disk /dev/sda: 300.0 GB, 300069052416 bytes
255 heads, 63 sectors/track, 36481 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 20887 167774796 7 HPFS/NTFS
/dev/sda2 20888 29386 68268217+ 7 HPFS/NTFS
/dev/sda3 29387 31429 16410397+ c W95 FAT32 (LBA)
/dev/sda4 31430 36481 40580190 83 Linux
of course, it wont be exactly the same because thats one of my sata drives :]
once you have this output you may mount your ntfs partition somewhere in fedora. i create a folder in the root of my drive called windows, referenced: /windows
to do this, still in the same terminal prompt you'd execute: mkdir /windows
as you can see i have 2 NTFS partitions, 1 FAT32 partition, and 1 ext3 partition on this drive. so inside of the windows folder, i make 3 more directories:
mkdir /windows/C
mkdir /windows/D
mkdir /windows/E
- mkdir /windows/C
- mkdir /windows/D
- mkdir /windows/E
now, i can mount my NTFS and FAT32 partitions into these locations with this command:
mount -t ntfs-3g /dev/sda1 /windows/C
mount -t ntfs-3g /dev/sda2 /windows/D
mount -t vfat /dev/sda3 /windows/E
- mount -t ntfs-3g /dev/sda1 /windows/C
- mount -t ntfs-3g /dev/sda2 /windows/D
- mount -t vfat /dev/sda3 /windows/E
now, when i browse to /windows/C i see all of the windows documents i have on my C drive, and so on for the other two. for the mount command, the -t flag is for what type of partition you're trying to mount. ntfs-3g is for ntfs partitions, vfat is for fat partitions, if i wanted to mount an ext3 partition you'd simply replace ntfs-3g or vfat with ext3. the /dev/sda1 is what you get from the fdisk command we executed earlier. all of these commands should be executed with root privileges. if you dont want to have to mount the partitions manually each time you start fedora, you'd edit the /etc/fstab file (which requires root privileges) and you'd append these lines to the END of that file. dont replace anything. once you've added these lines to the file, the next time you start fedora the partitions should mount automatically and you'll have your data available in the directories you created.
check out
this thread to see how to make windows your default boot option.
check out
this thread for help with getting your wifi working (looks like you need to install madwifi and this shows you how)
it's highly recommended that you don't disable the root password as that strips the heck out of the security of linux. if you're doing a lot of configuration, you could login as the root user, modify what you need, and then login as your regular user. running things through the terminal after su'ing works great too.
hope this helps :]