Linux, NTFS, view my windows hd

General software, Operating Systems, and Programming discussion.
Everything from software questions, OSes, simple HTML to scripting languages, Perl, PHP, Python, MySQL, VB, C++ etc.
Post Reply
User avatar
wee96
Posts: 9253
Joined: Sun May 13, 2001 12:00 pm
Location: Michigan

Linux, NTFS, view my windows hd

Post by wee96 »

I downloaded the ntfs drivers and tools from sourceforge, but im not sure how to use them exactly to see my windows hard drive. Any help? :D Im usin Fedora Core 3, 2.6.9-681.
User avatar
TonyT
SG VIP
Posts: 10356
Joined: Fri Jan 28, 2000 12:00 am
Location: Fairfax, VA

Post by TonyT »

I'm not sure you actually need the drivers, I believe it should be able to detect and read ntfs drives already. Did you mount the drive?
No one has any right to force data on you
and command you to believe it or else.
If it is not true for you, it isn't true.

LRH
hermzz

Post by hermzz »

Fedora Core 3 'should' read and mount ntfs drives. Im sure Fedora Core 2 does.

What you might not be able to do is write, because it is currectly unsafe and rather risky if you have sensity data.

Like the guy above said, try mounting:

mount ntfs /dev/hd# /mnt/hd#

replacing # for the appropriate number and make sure /mnt/hd# exists
mmione
Posts: 1814
Joined: Sat Dec 13, 2003 4:21 pm
Location: Ontario, Canada

Post by mmione »

Yah, you just have to mount the device. If you want to write to it you just have to change the read/write settings.
.
cchooper
Posts: 245
Joined: Fri Oct 03, 2003 8:52 pm
Location: Southern Oregon

Post by cchooper »

mmione wrote:Yah, you just have to mount the device. If you want to write to it you just have to change the read/write settings.
I would highly recommend against enabling write support. NTFS support in Linux has been experimental and very unstable for a long time now, and while generally that's OK, I've known a few people that have lost alot of data by trying to use it.
Hacking router firmware since 2005
User avatar
Stef
Advanced Member
Posts: 712
Joined: Sun Apr 16, 2000 12:00 am
Location: Edmonton, Alberta, Canada

Post by Stef »

You'll need to load the proper kernel modules before mounting the actual file system.

Stef
cchooper
Posts: 245
Joined: Fri Oct 03, 2003 8:52 pm
Location: Southern Oregon

Post by cchooper »

Stef wrote:You'll need to load the proper kernel modules before mounting the actual file system.

Stef
rgr. I believe the module is simply named "NTFS" :D

so executing the command `modprobe ntfs` should do the trick.
Hacking router firmware since 2005
User avatar
Stef
Advanced Member
Posts: 712
Joined: Sun Apr 16, 2000 12:00 am
Location: Edmonton, Alberta, Canada

Post by Stef »

Yeah, load the proper module (not sure what it is), then mount the partition with:

mount /dev/hda1 /mnt/c_drive -t ntfs -o ro

Just replace the partition number and mount point with the proper ones for your system. If all works well, you can edit /etc/fstab so that the partition is automatically mounted at every boot. Otherwise, you'll be doing it manually every time you'd like read access :D

Stef
Post Reply