FedoraForum.org - Fedora Support Forums and Community
Results 1 to 15 of 15
  1. #1
    andrewski Guest

    Read / Write access on NTFS using Linux-NTFS

    Currently I have two SATA hard drives in my PC. One is a 80 gig (which does a dual boot with XP and FC 5) and the other is a 160 gig (the whole drive is NTFS for media files). As of now, I can only access the 160 drive and execute files from it. But I would like to write files to it also. i.e. put files on it that I have downloaded from FC 5. I know (I think) I just need to make a change to my fstab files. But don't know what! Here is my current fstab output.

    Code:
    [root@bender ~]# cat /etc/fstab
    /dev/VolGroup00/LogVol00 /                       ext3    defaults        1 1
    LABEL=/boot             /boot                   ext3    defaults        1 2
    devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
    tmpfs                   /dev/shm                tmpfs   defaults        0 0
    proc                    /proc                   proc    defaults        0 0
    sysfs                   /sys                    sysfs   defaults        0 0
    /dev/VolGroup00/LogVol01 swap                    swap    defaults        0 0
    /dev/sdb5               /mnt/media      ntfs    ro,defaults,umask=0222  0 0
    /dev/sda1               /mnt/windows    ntfs    ro,defaults,umask=0222  0 0
    Thanks!

  2. #2
    eworldorder Guest
    i dont think you can write files on the ntfs partition.

    I am newbie too, 5 days FC5 old.

    But from what i read so far in these 5 days, you cant write on NTFS partition, you only can read!

  3. #3
    Join Date
    Jul 2005
    Location
    University of Kansas
    Posts
    475
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by eworldorder
    i dont think you can write files on the ntfs partition.

    I am newbie too, 5 days FC5 old.

    But from what i read so far in these 5 days, you cant write on NTFS partition, you only can read!
    You've read some older posts, or posts from people who aren't up on the latest modules, my friend!

    As of now, livna repositories have an NTFS kernel module that can read and write to NTFS partitions (AFAIK).

    If you don't have yum set up for using the livna repos, simply run this command as root:

    Code:
    rpm -Uvh http://rpm.livna.org/fedora/5/`uname -m`/livna-release-5-4.noarch.rpm
    (It might be -ivh, not on Linux right now, can't be sure. )
    Fedora 11 x64 | Tyan Thunder 3600B | 2x AMD Opteron 2376 "Shanghai" 2.3GHz Quad-Core CPUs | 16GB RAM Registered ECC DDR2 667 | Sapphire RadeonHD 4550 GPU | OCZ Apex 125GB SATA II SSD [ / ] | Seagate 1TB SATA HDD [ /home ]

  4. #4
    eworldorder Guest
    Quote Originally Posted by fpoole
    You've read some older posts, or posts from people who aren't up on the latest modules, my friend!

    As of now, livna repositories have an NTFS kernel module that can read and write to NTFS partitions (AFAIK).

    If you don't have yum set up for using the livna repos, simply run this command as root:

    Code:
    rpm -Uvh http://rpm.livna.org/fedora/5/`uname -m`/livna-release-5-4.noarch.rpm
    (It might be -ivh, not on Linux right now, can't be sure. )
    Fantastic news my friend, well I thought that posting the same question as andrew is usellss cose I read people can only read ntfs.
    Thanks a lot, 1000X thanks

  5. #5
    eworldorder Guest
    ok I installed livna-release-5-4.noarch.rpm , now what should I do, cose I cant write the ntfs partition ( i checked it )

  6. #6
    eworldorder Guest
    A much better command : yum -y install kmod-ntfs
    automatically install full packages


    but I still cant write my ntfs

    check this :
    "Adding write support will take a long time. NTFS is built like a database. Any changes you make, necessitate making changes in many places, for consistency. Make a mistake and the filesystem will be damaged, make too many mistakes and the filesystem will be destroyed. Also, the current developers are only working on NTFS as a hobby, during their free time. If you’d like to help, please send an email to: linux-ntfs-dev@lists.sourceforge.net

    How to write to NTFS. If you are using a dual-boot machine and just need NTFS write support to transfer files from Linux to Windows, you can instead use a Windows driver for ext2/ext3 and, while running Windows, read the files from the Linux partition instead. This way, using two read-only drivers, you can still copy files from one file system type to the other. "

    http://wiki.linux-ntfs.org/doku.php?...tfs_volume_too

    So I was right.

    writing on NTFS is impossible right?
    Last edited by eworldorder; 27th March 2006 at 05:11 AM.

  7. #7
    Join Date
    Jul 2005
    Location
    University of Kansas
    Posts
    475
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by eworldorder
    A much better command : yum -y install kmod-ntfs
    automatically install full packages


    but I still cant write my ntfs
    Have you mounted the partition as "rw" and not "ro"?
    Last edited by fpoole; 27th March 2006 at 05:13 AM.
    Fedora 11 x64 | Tyan Thunder 3600B | 2x AMD Opteron 2376 "Shanghai" 2.3GHz Quad-Core CPUs | 16GB RAM Registered ECC DDR2 667 | Sapphire RadeonHD 4550 GPU | OCZ Apex 125GB SATA II SSD [ / ] | Seagate 1TB SATA HDD [ /home ]

  8. #8
    eworldorder Guest
    how can I mount the drive as rw?

  9. #9
    Join Date
    Jul 2005
    Location
    University of Kansas
    Posts
    475
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    mount (device) (mountpoint) -t ntfs rw
    If you haven't rebooted since installing the kernel module, I'm fairly certain you should do so.
    Fedora 11 x64 | Tyan Thunder 3600B | 2x AMD Opteron 2376 "Shanghai" 2.3GHz Quad-Core CPUs | 16GB RAM Registered ECC DDR2 667 | Sapphire RadeonHD 4550 GPU | OCZ Apex 125GB SATA II SSD [ / ] | Seagate 1TB SATA HDD [ /home ]

  10. #10
    eworldorder Guest
    Quote Originally Posted by fpoole
    Code:
    mount (device) (mountpoint) -t ntfs rw
    If you haven't rebooted since installing the kernel module, I'm fairly certain you should do so.
    can you give me an example?
    i am not sure what to put instead of (device) and (mountpoint)

  11. #11
    Join Date
    Jan 2005
    Posts
    5,057
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The write news is old.
    What the old posts are impling is the short cut version of older post that say the read is questuonable enough and the write is not in anyqay 100% safe. NTFS is owned by Microsoft and only Microsoft has the complete specifications. The Linux versions were coded by trial and error command strings to reproduce the results on the disk, without a clue as to how it was actually done. It is not an NTFS driver. It is an NTFS clone and could render your Windows system unusable.

    Run at your own risk.

    SJ
    Do the Math

  12. #12
    eworldorder Guest
    I have an idea.

    For example I noticed that I can copy and erase files using Fedora5 from my desktop computer that is running windows on the shared partition.

    Why dosen't someone make a software for fedora to emulate a network conection betwen the ext3 and the ntfs partion ( on the same computer + shared + read write) to emulate the same effect ???
    Last edited by eworldorder; 27th March 2006 at 05:36 AM.

  13. #13
    Join Date
    Jul 2005
    Location
    University of Kansas
    Posts
    475
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by eworldorder
    I have an idea.

    For example I noticed that I can copy and erase files using Fedora5 from my desktop computer that is running windows on the shared partition.

    Why dosen't someone make a software for fedora to emulate a network conection betwen the ext3 and the ntfs partion ( on the same computer + shared + read write) to emulate the same effect ???
    You could probably have this effect if you could run both OSes simultaneously (without using VMware, etc.) and connect to local loopback.

    Examples:
    (device) = /dev/hda3
    (mountpoint) = /mnt/NTFS/hda3

    If you do this, be sure that the folder /mnt/NTFS/hda3 exists and that the permissions are set as you would like.

    To look at your partition table, run "fdisk -l". This lists your partitions; this way you can get the device that correspons to your NTFS partition. Because of what our friend above mentioned, however, I would caution against writing to disk with this, so for now you might stick to read-only.
    Last edited by fpoole; 27th March 2006 at 05:49 AM.
    Fedora 11 x64 | Tyan Thunder 3600B | 2x AMD Opteron 2376 "Shanghai" 2.3GHz Quad-Core CPUs | 16GB RAM Registered ECC DDR2 667 | Sapphire RadeonHD 4550 GPU | OCZ Apex 125GB SATA II SSD [ / ] | Seagate 1TB SATA HDD [ /home ]

  14. #14
    Join Date
    Jul 2005
    Location
    University of Kansas
    Posts
    475
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by SlowJet
    The write news is old.
    What the old posts are impling is the short cut version of older post that say the read is questuonable enough and the write is not in anyqay 100% safe. NTFS is owned by Microsoft and only Microsoft has the complete specifications. The Linux versions were coded by trial and error command strings to reproduce the results on the disk, without a clue as to how it was actually done. It is not an NTFS driver. It is an NTFS clone and could render your Windows system unusable.

    Run at your own risk.

    SJ
    Even that being the case, my read support has been fine so far. Just saying.
    Fedora 11 x64 | Tyan Thunder 3600B | 2x AMD Opteron 2376 "Shanghai" 2.3GHz Quad-Core CPUs | 16GB RAM Registered ECC DDR2 667 | Sapphire RadeonHD 4550 GPU | OCZ Apex 125GB SATA II SSD [ / ] | Seagate 1TB SATA HDD [ /home ]

  15. #15
    andrewski Guest
    Hrmm, thanks for the replies guys. Guess I'll just create a ext2/3 partition on my media drive and install a driver in windows so I can transfer that way.

Similar Threads

  1. Replies: 1
    Last Post: 24th November 2005, 07:10 PM
  2. NTFS partition --> read-write
    By jort in forum Using Fedora
    Replies: 8
    Last Post: 8th March 2005, 03:46 PM

Tags for this Thread

Posting Permissions

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