Page 56 of 203 FirstFirst ... 646545556575866106156 ... LastLast
Results 551 to 560 of 2026

Thread: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

  1. #551
    Join Date
    Jun 2006
    Location
    Parma, Italy
    Beans
    679
    Distro
    Kubuntu

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    In windows you can use CACLS as super-user to reset or edit permissions, that is what I usually do.

  2. #552
    Join Date
    Aug 2006
    Beans
    93

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    I have been using this how-to for my SATA hdd. So far, no corruptions and everything is working great. I even cut/paste without copying/paste then delete. At first I was afraid that my data would be ruined but now I'm using it like I'm on Windows.

    If you're reading this and haven't tried it yet because you're afraid that your data might be ruined, do it. I started out with a bit of fear too but it's all good.

  3. #553
    Join Date
    Sep 2006
    Beans
    48

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    Towards the end... I was gettin problems. CHeck it out:

    tamacracker@tamacracker:~$ sudo modprobe fuse
    Password:
    tamacracker@tamacracker:~$ sudo umount -a
    umount: /dev: device is busy
    umount: /var/run: device is busy
    umount: /: device is busy
    tamacracker@tamacracker:~$ sudo mount -a
    realpath: No such file or directory
    No mount point specified.

    ntfsmount v1.12.1 (libntfs 8:1:0) - NTFS module for FUSE.

    Copyright (c) 2005 Yura Pakhuchiy

    usage: ntfsmount device mount_point [-o options]

    Possible options are:
    default_permissions
    allow_other
    kernel_cache
    large_read
    direct_io
    max_read
    force
    ro
    no_def_opts
    umask
    fmask
    dmask
    uid
    gid
    show_sys_files
    succeed_chmod
    locale

    Default options are: "default_permissions,allow_other,".
    tamacracker@tamacracker:~$ ntfsmount device mount_point -locale
    realpath: No such file or directory
    realpath: No such file or directory

    ntfsmount v1.12.1 (libntfs 8:1:0) - NTFS module for FUSE.

    Copyright (c) 2005 Yura Pakhuchiy

    usage: ntfsmount device mount_point [-o options]

    Possible options are:
    default_permissions
    allow_other
    kernel_cache
    large_read
    direct_io
    max_read
    force
    ro
    no_def_opts
    umask
    fmask
    dmask
    uid
    gid
    show_sys_files
    succeed_chmod
    locale

    Default options are: "default_permissions,allow_other,".
    tamacracker@tamacracker:~$



    When I double click my NTFS HDD, this is the message that pops up: Unable to Mount the selected volume; details: error: could not get sysfs directory

    error: could not execute pmount



    I'm confused at this point where I'm not sure if I was supposed to directly copy and not modify it?: /dev/<your partition> /media/<mount point> ntfs-3g silent,umask=0,locale=en_US.utf8,no_def_opts,allow _other 0 0

    This was my gedit - fstab (/etc)
    # /etc/fstab: static file system information.
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc defaults 0 0
    dev/hda1 /media/hda1 ntfs-fuse auto,gid=1002,umask=0002 0 0
    /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
    /dev/hdb5 none swap sw 0 0
    /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0
    Last edited by Tamacracker; September 10th, 2006 at 12:31 PM.

  4. #554
    Join Date
    Apr 2006
    Beans
    1,252

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    What is youre /etc/fstab now.
    Of course you had to modify the line and replace <your partition> & <mount point>, there is no universal configuration.
    Towards the end... I was gettin problems. CHeck it out:
    That's not problem, that's wrong configuration.
    WARNING : Post with explicit contents
    Join to "STOP monolithic all-in-one unmanageable application"
    The wiki is your friend https://help.ubuntu.com/community/

  5. #555
    Join Date
    Sep 2006
    Beans
    48

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    Quote Originally Posted by givré View Post
    What is youre /etc/fstab now.
    Of course you had to modify the line and replace <your partition> & <mount point>, there is no universal configuration.

    That's not problem, that's wrong configuration.
    What's in bold is what I copied and pasted into the gedit (/etc/fstab)


    # /etc/fstab: static file system information.
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc defaults 0 0
    /dev/<your partition> /media/<mount point> ntfs-3g silent,umask=0,locale=en_US.utf8,no_def_opts,allow _other 0 0
    /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
    /dev/hdb5 none swap sw 0 0
    /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0


    I'm assuming the partition should be hda1 and the mount point is the directory i created? Which was: sudo mkdir /media/Windows





    Now the error I'm gettin when I click on the NFTS HDD is this: mount: only root can mount /dev/hda1 on /media/windows

    The current /etc/fstab for that HDD is: /dev/hda1 /media/windows ntfs-3g silent,umask=0,locale=en_US.utf8,no_def_opts,allow _other 0 0[


    The name of the HDD is 149.0 GB Volume, I don't think that would make a difference though.
    Last edited by Tamacracker; September 10th, 2006 at 12:59 PM.

  6. #556
    Join Date
    Apr 2006
    Beans
    1,252

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    Code:
    sudo mount /dev/hda1
    in a terminal or reboot.
    WARNING : Post with explicit contents
    Join to "STOP monolithic all-in-one unmanageable application"
    The wiki is your friend https://help.ubuntu.com/community/

  7. #557
    Join Date
    Sep 2006
    Beans
    48

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    saaaaweeeeet!!!

    Now to get a music player that plays MP3s

    Thanks alot givre!

  8. #558
    Join Date
    Sep 2006
    Beans
    4

    Re: HOWTO: NTFS with read/write support using the NEW ntfs-3g (easy & safe method)

    It just works.

  9. #559
    Join Date
    Aug 2006
    Beans
    13

    Re: HOWTO: NTFS with read/write support using the NEW ntfs-3g (easy & safe method)

    humm...
    Is there a way to mount a usb hard drive (ntfs) without using nautilus?

  10. #560
    Join Date
    Apr 2006
    Beans
    18
    Distro
    Edgy Eft Testing

    Re: HOWTO: NTFS with read/write support using ntfs-3g (easy method)

    i think the reps are offline or something.
    Code:
    Failed to fetch http://givre.cabspace.com/ubuntu/dists/dapper/main/binary-amd64/Packages.gz  302 Found
    Failed to fetch http://flomertens.keo.in/ubuntu/dists/dapper/main/binary-amd64/Packages.gz  404 Not Found
    Failed to fetch http://ntfs-3g.sitesweetsite.info/ubuntu/dists/dapper/main/binary-amd64/Packages.gz  404 Not Found
    Reading package lists... Done
    E: Some index files failed to download, they have been ignored, or old ones used instead
    .

Page 56 of 203 FirstFirst ... 646545556575866106156 ... LastLast

Bookmarks

Posting Permissions

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