+ Reply to Thread
Results 1 to 3 of 3

Thread: Adding NTFS Support to your Linux Distribution

  1. #1
    Newbie imported_Affix is on a distinguished road
    Join Date
    Feb 2009
    Age
    19
    Posts
    11

    Adding NTFS Support to your Linux Distribution

    Many Linux Distrobutions Ship with no NTFS Support. NTFS Is the windows File System.

    Why Would I want NTFS Support?

    Well you may have some data on your Windows HDD such as music and Photos you wanty to have on both systems. By Adding NTFS Support you save on disk space by Keeping only 1 copy of your files and using ntfs-3g on your Linux / Mac Desktop to read and write to your NTFS Drive.

    How do I install It?
    To install it you First of all need to Download the NTFS-3G Source Files. You can do so with the WGET Command.

    Code:
    [root@yourDesktop ~]# wget http://www.ntfs-3g.org/ntfs-3g-2009.2.1.tgz
    --2009-03-02 14:00:29--  http://www.ntfs-3g.org/ntfs-3g-2009.2.1.tgz
    Resolving www.ntfs-3g.org... 91.189.209.156
    Connecting to www.ntfs-3g.org|91.189.209.156|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 652082 (637K) [application/x-tar]
    Saving to: `ntfs-3g-2009.2.1.tgz'
    
    100%[======================================>] 652,082     1.07M/s   in 0.6s
    
    2009-03-02 14:00:30 (1.07 MB/s) - `ntfs-3g-2009.2.1.tgz' saved [652082/652082]
    Now you Must Extract your source using the tar command.

    Code:
    [root@yourDesktop ~]# tar -zxvf ntfs-3g-2009.2.1.tgz
    ntfs-3g-2009.2.1/
    ntfs-3g-2009.2.1/AUTHORS
    ntfs-3g-2009.2.1/COPYING
    ntfs-3g-2009.2.1/COPYING.LIB
    ntfs-3g-2009.2.1/CREDITS
    ntfs-3g-2009.2.1/ChangeLog
    ntfs-3g-2009.2.1/Makefile.am
    ntfs-3g-2009.2.1/NEWS
    ntfs-3g-2009.2.1/README
    ntfs-3g-2009.2.1/autogen.sh
    ...more...
    Now change Direcotry to the ntfs-3g-2009.2.1 Directory

    Code:
    [root@yourDesktop ~]# cd ntfs-3g-2009.2.1
    Once you have done that you must configure the Source for install using ./configure

    Code:
    [root@yourDesktop ~]# ./configure
    You will get an output like this :

    Code:
    checking for windows.h... no
    checking syslog.h usability... yes
    checking syslog.h presence... yes
    checking for syslog.h... yes
    checking for stdbool.h that conforms to C99... yes
    checking for _Bool... yes
    checking whether byte ordering is
    If you see this at the end

    Code:
    You can type now 'make' to build ntfs-3g.
    You can do the make command like so

    Code:
    [root@yourDesktop ~]# make
    This will compile your NTFS Driver

    Once the make command is complete you may now type 'make install'

    Code:
    [root@yourDesktop ~]# make install
    This will then configure ntfs-3g onto your system.

    Finally you can mount your NTFS Drive (e.g /dev/sda1) using the following command

    Code:
    [root@yourDesktop ~]# mount -t ntfs-3g /dev/sda1 /mount/ntfs
    Note the '/mount/ntfs' Directory must already exist to create the directory do

    Code:
    [root@yourDesktop ~]# mkdir /mount/ntfs

  2. #2
    Administrator Jordan is a name known to all Jordan is a name known to all Jordan is a name known to all Jordan is a name known to all Jordan is a name known to all Jordan is a name known to all Jordan's Avatar
    Join Date
    Nov 2005
    Location
    Hendersonville, NC
    Posts
    24,556
    Blog Entries
    97
    Is netfs-3g stable now? You could also use a FAT partition. Excellent tutorial!

  3. #3
    Newbie imported_Affix is on a distinguished road
    Join Date
    Feb 2009
    Age
    19
    Posts
    11
    Yeah NTFS-3G Provides stable write support with no problems

    We have it on Fedora 10 by default now

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Multiplayer games?
    By TcM in forum Video Game Talk
    Replies: 23
    Last Post: 08-07-2008, 09:26 PM
  2. Let's Play Hangman
    By TcM in forum The Lounge
    Replies: 120
    Last Post: 02-05-2007, 02:28 PM
  3. C# .net 3.0
    By falco85 in forum C# Programming
    Replies: 3
    Last Post: 12-23-2006, 11:38 AM
  4. Working from home
    By Void in forum Business and Legal
    Replies: 11
    Last Post: 08-04-2006, 03:37 PM
  5. OnMouseMove problems
    By Lop in forum C and C++
    Replies: 3
    Last Post: 06-27-2006, 03:42 PM

Bookmarks

Bookmarks

     
        Algorithms and Data Structures

        Java tutorials

        Algorithms Forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts