Quote of the day : "Saying that Java is nice because it works on all OS's is like saying that anal sex is nice because it works on all genders." Alanna

Next quote in 1.1 hours. [suggest a quote]

Adding NTFS support to Fedora Core

Introduction

Fedora Core is a Linux distribution. You can get it there.
This tutorial will guide you, step by step, through the installation of NTFS support (read only) for Fedora Core.
For this tutorial, we used Fedora Core 4 64 bits and stuff from linux-ntfs.org.

Summary

Material

You need :

Instructions

Installing kernel-module-ntfs

Download the good kernel-module-ntfs RPM.
Install it (double-click on it to launch the installation).

Testing the installation

To check if the RPM was successfully installed, let's try to mount an NTFS partition : in the terminal, type :
If the installation failed, you'll get an error message  : mount: unknown filesystem type 'ntfs'.
Browse your /mnt/c directory, it should be like your Windows C: drive.

You can mount your other partitions too (optional).

Making the new partitions permanent

When you restart Linux, the partitions that you mounted above will disappear... to avoid having to mount them manually every time you restart Linux, we are going to edit a configuration files so that these partitions are always mounted when Linux starts.
Create a backup of /etc/fstab, then open it (you need to have root privileges to be able to save it) and add every partition you want to add this way :
/dev/sda1 /mnt/c ntfs ro,umask=0222 0 0 (umask sets users permissions, see the links in the credits for more informations)
For us, it gives, at the end of the file :
/dev/sda1 /mnt/c ntfs ro,umask=0222 0 0
/dev/sda5 /mnt/d ntfs ro,umask=0222 0 0
/dev/sda6 /mnt/e ntfs ro,umask=0222 0 0
/dev/sda7 /mnt/f ntfs ro,umask=0222 0 0
/dev/sda8 /mnt/g ntfs ro,umask=0222 0 0
Save the fstab file.
That's all, when you restart Fedora Core, you'll have your NTFS partitions mounted :)

Credits

We made massive use of the FAQ from linux-ntfs.org, particularly section 4.
Comments :
No comments yet
[Add a comment]