• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

How to make HDD Viewable...

RLich8

Limp Gawd
Joined
Mar 24, 2003
Messages
348
I'm running a dual-boot system. Drive 1 has WinXP Pro and a partition with my files, and drive 2 has Fedora Core 4 on it.

Is there any way I can make my drive 1 visible in linux?
 
Well, you can get safe read-only NTFS in linux now; writing to NTFS is still not ready for prime-time.
 
That's all I want to do is read it.

I basically just want to have access to my images and multimedia (songs, videos, etc.)
 
Make sure you have NTFS support loaded into your kernel (most modern distro's do this just fine)

"mkdir /winxp"
edit your fstab and include a line like this:
Code:
/dev/hda1    /winxp   ntfs users,owner,ro,umask=000 0 0
Then issue the "mount /winxp" as root and you should have read-only access to your NTFS partition. Please change /dev/hda1 to whatever your NTFS partition is for your particular machine.
 
Back
Top