Results 1 to 3 of 3

Thread: Mount NTFS external drive as read-write

  1. #1
    Join Date
    Dec 2011
    Location
    Istanbul, Turkey
    Beans
    53
    Distro
    Ubuntu 20.04 Focal Fossa

    Question Mount NTFS external drive as read-write

    How can I mount an NTFS external USB drive as read-write on Ubuntu 22.04 LTS?

    When I connect the drive, it is mounted automatically as read-only. By running df -h, I figured that the drive is mounted as /dev/sdb1.

    When I try to mount it with
    Code:
    sudo ntfs-3g /dev/sdb1 /media/user/BRB
    It says:

    Mount is denied because the NTFS volume is already exclusively opened.
    The volume may be already mounted, or another software may use it which
    could be identified for example by the help of the 'fuser' command.

    I unmount it with
    Code:
    sudo umount /dev/sdb1
    (it doesn't say anything; apparently it's fine)

    Then when I try to mount it back with
    Code:
    sudo mount /dev/sdb /media/user/BRB
    it says:

    mount: /media/user/BRB: mount point does not exist.

  2. #2
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: Mount NTFS external drive as read-write

    To specify that the NTFS partition should have read and write permissions (in case your system is mounting with read only by default), you can use this command.

    Code:
    $ sudo mount -o rw -t ntfs /dev/sdb1 /mnt/ntfs
    https://linuxconfig.org/how-to-mount...d-write-access
    Last edited by SeijiSensei; October 4th, 2023 at 09:44 PM.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  3. #3
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Mount NTFS external drive as read-write

    Or did you use the NTFS with Windows and left it in the hibernated mode?
    If Fast Start up on in Windows that checks the hibernation flag on all NTFS partitions. If you force write using Linux NTFS driver, you just lose that data when the hibernation is restored by Windows.

    Fast Start up off (always on hibernation), note that Windows turns this back on with updates, SHIFT + Shut down button
    http://ubuntuforums.org/showthread.p...2#post13488472
    https://www.elevenforum.com/t/turn-o...ndows-11.1212/
    https://www.makeuseof.com/windows-11...-fast-startup/
    http://www.tenforums.com/tutorials/4...dows-10-a.html
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

Tags for this Thread

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
  •