How to enable NTFS write support on mounted partitions in Ubuntu 18.04?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite
2












I am able to mount ntfs drives automatically using Disks app in Ubuntu 18.04 LTS.
However, I am unable to write to the NTFS partions.



Below are my ntfs partions as per Disks app.



  • /dev/sda3 (/dev/disk/by-uuid/162451E92451CC7D)

  • /dev/sda4 (/dev/disk/by-uuid/B696F3C596F38461)

Is there are GUI based solution for enabling NTFS write support?



Why isnt it enabled by default?



My FSTAB file



# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=016b0523-a020-4f98-b7de-fffdb7b39b0d / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=3026-A145 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sda9 during installation
UUID=689f530e-afea-43e5-b55e-6743633d2fe9 /home ext4 defaults 0 2
# swap was on /dev/sda8 during installation
UUID=e9eb9e5d-6f45-4054-ad01-94a8b8c9df45 none swap sw 0 0
/dev/disk/by-uuid/162451E92451CC7D /mnt/162451E92451CC7D auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/B696F3C596F38461 /mnt/B696F3C596F38461 auto nosuid,nodev,nofail,x-gvfs-show 0 0


EDIT



Adding out of mount command as requested by @mook765



~$ mount | grep sda4
/dev/sda4 on /mnt/162451E92451CC7D type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)
~$ mount | grep sda3
/dev/sda3 on /mnt/B696F3C596F38461 type fuseblk (ro,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)






share|improve this question


















  • 1




    The files in /dev/disk/by-uuid are links to /dev/sdXY. You can check this in Nautilus to see to which partitions the last two lines in your fstab point.
    – mook765
    Apr 30 at 8:15










  • Thanks. I checked and figured out that /dev/disk/by-uuid are the ntfs partitions. HOw do I enable write support?
    – ML_Pro
    Apr 30 at 8:44










  • You can see how the partition sda3 is currently mounted with mount | grep sda3. I guess it will show you the partition is mounted read-only, probably due to Window's fast startup feature.
    – mook765
    Apr 30 at 9:00










  • Window's fast startup feature is already disabled but still unable to write. Should I update the fstab to make is work?
    – ML_Pro
    Apr 30 at 9:03







  • 1




    sda3 is mounted read-only, that shouldn't be the case. I think the reason is a corrupted file-system on sda3. You should run a file-system-check on this partition from within Windows. helpdeskgeek.com/how-to/run-chkdsk-utility-xp . Can you write to the other partition (sda4)?
    – mook765
    Apr 30 at 20:41














up vote
1
down vote

favorite
2












I am able to mount ntfs drives automatically using Disks app in Ubuntu 18.04 LTS.
However, I am unable to write to the NTFS partions.



Below are my ntfs partions as per Disks app.



  • /dev/sda3 (/dev/disk/by-uuid/162451E92451CC7D)

  • /dev/sda4 (/dev/disk/by-uuid/B696F3C596F38461)

Is there are GUI based solution for enabling NTFS write support?



Why isnt it enabled by default?



My FSTAB file



# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=016b0523-a020-4f98-b7de-fffdb7b39b0d / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=3026-A145 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sda9 during installation
UUID=689f530e-afea-43e5-b55e-6743633d2fe9 /home ext4 defaults 0 2
# swap was on /dev/sda8 during installation
UUID=e9eb9e5d-6f45-4054-ad01-94a8b8c9df45 none swap sw 0 0
/dev/disk/by-uuid/162451E92451CC7D /mnt/162451E92451CC7D auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/B696F3C596F38461 /mnt/B696F3C596F38461 auto nosuid,nodev,nofail,x-gvfs-show 0 0


EDIT



Adding out of mount command as requested by @mook765



~$ mount | grep sda4
/dev/sda4 on /mnt/162451E92451CC7D type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)
~$ mount | grep sda3
/dev/sda3 on /mnt/B696F3C596F38461 type fuseblk (ro,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)






share|improve this question


















  • 1




    The files in /dev/disk/by-uuid are links to /dev/sdXY. You can check this in Nautilus to see to which partitions the last two lines in your fstab point.
    – mook765
    Apr 30 at 8:15










  • Thanks. I checked and figured out that /dev/disk/by-uuid are the ntfs partitions. HOw do I enable write support?
    – ML_Pro
    Apr 30 at 8:44










  • You can see how the partition sda3 is currently mounted with mount | grep sda3. I guess it will show you the partition is mounted read-only, probably due to Window's fast startup feature.
    – mook765
    Apr 30 at 9:00










  • Window's fast startup feature is already disabled but still unable to write. Should I update the fstab to make is work?
    – ML_Pro
    Apr 30 at 9:03







  • 1




    sda3 is mounted read-only, that shouldn't be the case. I think the reason is a corrupted file-system on sda3. You should run a file-system-check on this partition from within Windows. helpdeskgeek.com/how-to/run-chkdsk-utility-xp . Can you write to the other partition (sda4)?
    – mook765
    Apr 30 at 20:41












up vote
1
down vote

favorite
2









up vote
1
down vote

favorite
2






2





I am able to mount ntfs drives automatically using Disks app in Ubuntu 18.04 LTS.
However, I am unable to write to the NTFS partions.



Below are my ntfs partions as per Disks app.



  • /dev/sda3 (/dev/disk/by-uuid/162451E92451CC7D)

  • /dev/sda4 (/dev/disk/by-uuid/B696F3C596F38461)

Is there are GUI based solution for enabling NTFS write support?



Why isnt it enabled by default?



My FSTAB file



# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=016b0523-a020-4f98-b7de-fffdb7b39b0d / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=3026-A145 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sda9 during installation
UUID=689f530e-afea-43e5-b55e-6743633d2fe9 /home ext4 defaults 0 2
# swap was on /dev/sda8 during installation
UUID=e9eb9e5d-6f45-4054-ad01-94a8b8c9df45 none swap sw 0 0
/dev/disk/by-uuid/162451E92451CC7D /mnt/162451E92451CC7D auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/B696F3C596F38461 /mnt/B696F3C596F38461 auto nosuid,nodev,nofail,x-gvfs-show 0 0


EDIT



Adding out of mount command as requested by @mook765



~$ mount | grep sda4
/dev/sda4 on /mnt/162451E92451CC7D type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)
~$ mount | grep sda3
/dev/sda3 on /mnt/B696F3C596F38461 type fuseblk (ro,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)






share|improve this question














I am able to mount ntfs drives automatically using Disks app in Ubuntu 18.04 LTS.
However, I am unable to write to the NTFS partions.



Below are my ntfs partions as per Disks app.



  • /dev/sda3 (/dev/disk/by-uuid/162451E92451CC7D)

  • /dev/sda4 (/dev/disk/by-uuid/B696F3C596F38461)

Is there are GUI based solution for enabling NTFS write support?



Why isnt it enabled by default?



My FSTAB file



# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=016b0523-a020-4f98-b7de-fffdb7b39b0d / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=3026-A145 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sda9 during installation
UUID=689f530e-afea-43e5-b55e-6743633d2fe9 /home ext4 defaults 0 2
# swap was on /dev/sda8 during installation
UUID=e9eb9e5d-6f45-4054-ad01-94a8b8c9df45 none swap sw 0 0
/dev/disk/by-uuid/162451E92451CC7D /mnt/162451E92451CC7D auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/B696F3C596F38461 /mnt/B696F3C596F38461 auto nosuid,nodev,nofail,x-gvfs-show 0 0


EDIT



Adding out of mount command as requested by @mook765



~$ mount | grep sda4
/dev/sda4 on /mnt/162451E92451CC7D type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)
~$ mount | grep sda3
/dev/sda3 on /mnt/B696F3C596F38461 type fuseblk (ro,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)








share|improve this question













share|improve this question




share|improve this question








edited Apr 30 at 15:24

























asked Apr 30 at 7:42









ML_Pro

10615




10615







  • 1




    The files in /dev/disk/by-uuid are links to /dev/sdXY. You can check this in Nautilus to see to which partitions the last two lines in your fstab point.
    – mook765
    Apr 30 at 8:15










  • Thanks. I checked and figured out that /dev/disk/by-uuid are the ntfs partitions. HOw do I enable write support?
    – ML_Pro
    Apr 30 at 8:44










  • You can see how the partition sda3 is currently mounted with mount | grep sda3. I guess it will show you the partition is mounted read-only, probably due to Window's fast startup feature.
    – mook765
    Apr 30 at 9:00










  • Window's fast startup feature is already disabled but still unable to write. Should I update the fstab to make is work?
    – ML_Pro
    Apr 30 at 9:03







  • 1




    sda3 is mounted read-only, that shouldn't be the case. I think the reason is a corrupted file-system on sda3. You should run a file-system-check on this partition from within Windows. helpdeskgeek.com/how-to/run-chkdsk-utility-xp . Can you write to the other partition (sda4)?
    – mook765
    Apr 30 at 20:41












  • 1




    The files in /dev/disk/by-uuid are links to /dev/sdXY. You can check this in Nautilus to see to which partitions the last two lines in your fstab point.
    – mook765
    Apr 30 at 8:15










  • Thanks. I checked and figured out that /dev/disk/by-uuid are the ntfs partitions. HOw do I enable write support?
    – ML_Pro
    Apr 30 at 8:44










  • You can see how the partition sda3 is currently mounted with mount | grep sda3. I guess it will show you the partition is mounted read-only, probably due to Window's fast startup feature.
    – mook765
    Apr 30 at 9:00










  • Window's fast startup feature is already disabled but still unable to write. Should I update the fstab to make is work?
    – ML_Pro
    Apr 30 at 9:03







  • 1




    sda3 is mounted read-only, that shouldn't be the case. I think the reason is a corrupted file-system on sda3. You should run a file-system-check on this partition from within Windows. helpdeskgeek.com/how-to/run-chkdsk-utility-xp . Can you write to the other partition (sda4)?
    – mook765
    Apr 30 at 20:41







1




1




The files in /dev/disk/by-uuid are links to /dev/sdXY. You can check this in Nautilus to see to which partitions the last two lines in your fstab point.
– mook765
Apr 30 at 8:15




The files in /dev/disk/by-uuid are links to /dev/sdXY. You can check this in Nautilus to see to which partitions the last two lines in your fstab point.
– mook765
Apr 30 at 8:15












Thanks. I checked and figured out that /dev/disk/by-uuid are the ntfs partitions. HOw do I enable write support?
– ML_Pro
Apr 30 at 8:44




Thanks. I checked and figured out that /dev/disk/by-uuid are the ntfs partitions. HOw do I enable write support?
– ML_Pro
Apr 30 at 8:44












You can see how the partition sda3 is currently mounted with mount | grep sda3. I guess it will show you the partition is mounted read-only, probably due to Window's fast startup feature.
– mook765
Apr 30 at 9:00




You can see how the partition sda3 is currently mounted with mount | grep sda3. I guess it will show you the partition is mounted read-only, probably due to Window's fast startup feature.
– mook765
Apr 30 at 9:00












Window's fast startup feature is already disabled but still unable to write. Should I update the fstab to make is work?
– ML_Pro
Apr 30 at 9:03





Window's fast startup feature is already disabled but still unable to write. Should I update the fstab to make is work?
– ML_Pro
Apr 30 at 9:03





1




1




sda3 is mounted read-only, that shouldn't be the case. I think the reason is a corrupted file-system on sda3. You should run a file-system-check on this partition from within Windows. helpdeskgeek.com/how-to/run-chkdsk-utility-xp . Can you write to the other partition (sda4)?
– mook765
Apr 30 at 20:41




sda3 is mounted read-only, that shouldn't be the case. I think the reason is a corrupted file-system on sda3. You should run a file-system-check on this partition from within Windows. helpdeskgeek.com/how-to/run-chkdsk-utility-xp . Can you write to the other partition (sda4)?
– mook765
Apr 30 at 20:41










1 Answer
1






active

oldest

votes

















up vote
1
down vote













to mount the partitions in read-write mode:



run ntfsfix /dev/sdaX to resolve the problem. then remount the partitions.






share|improve this answer




















  • Thanks! Is this a permanent fix or should I do it every time I reboot?
    – ML_Pro
    Apr 30 at 14:53






  • 1




    always reboot from windows. do not shutdown. this releases the windows ntfs volumes
    – kishea
    Apr 30 at 14:56










  • This isnot working
    – ML_Pro
    Apr 30 at 18:29










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030000%2fhow-to-enable-ntfs-write-support-on-mounted-partitions-in-ubuntu-18-04%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













to mount the partitions in read-write mode:



run ntfsfix /dev/sdaX to resolve the problem. then remount the partitions.






share|improve this answer




















  • Thanks! Is this a permanent fix or should I do it every time I reboot?
    – ML_Pro
    Apr 30 at 14:53






  • 1




    always reboot from windows. do not shutdown. this releases the windows ntfs volumes
    – kishea
    Apr 30 at 14:56










  • This isnot working
    – ML_Pro
    Apr 30 at 18:29














up vote
1
down vote













to mount the partitions in read-write mode:



run ntfsfix /dev/sdaX to resolve the problem. then remount the partitions.






share|improve this answer




















  • Thanks! Is this a permanent fix or should I do it every time I reboot?
    – ML_Pro
    Apr 30 at 14:53






  • 1




    always reboot from windows. do not shutdown. this releases the windows ntfs volumes
    – kishea
    Apr 30 at 14:56










  • This isnot working
    – ML_Pro
    Apr 30 at 18:29












up vote
1
down vote










up vote
1
down vote









to mount the partitions in read-write mode:



run ntfsfix /dev/sdaX to resolve the problem. then remount the partitions.






share|improve this answer












to mount the partitions in read-write mode:



run ntfsfix /dev/sdaX to resolve the problem. then remount the partitions.







share|improve this answer












share|improve this answer



share|improve this answer










answered Apr 30 at 13:54









kishea

806




806











  • Thanks! Is this a permanent fix or should I do it every time I reboot?
    – ML_Pro
    Apr 30 at 14:53






  • 1




    always reboot from windows. do not shutdown. this releases the windows ntfs volumes
    – kishea
    Apr 30 at 14:56










  • This isnot working
    – ML_Pro
    Apr 30 at 18:29
















  • Thanks! Is this a permanent fix or should I do it every time I reboot?
    – ML_Pro
    Apr 30 at 14:53






  • 1




    always reboot from windows. do not shutdown. this releases the windows ntfs volumes
    – kishea
    Apr 30 at 14:56










  • This isnot working
    – ML_Pro
    Apr 30 at 18:29















Thanks! Is this a permanent fix or should I do it every time I reboot?
– ML_Pro
Apr 30 at 14:53




Thanks! Is this a permanent fix or should I do it every time I reboot?
– ML_Pro
Apr 30 at 14:53




1




1




always reboot from windows. do not shutdown. this releases the windows ntfs volumes
– kishea
Apr 30 at 14:56




always reboot from windows. do not shutdown. this releases the windows ntfs volumes
– kishea
Apr 30 at 14:56












This isnot working
– ML_Pro
Apr 30 at 18:29




This isnot working
– ML_Pro
Apr 30 at 18:29

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030000%2fhow-to-enable-ntfs-write-support-on-mounted-partitions-in-ubuntu-18-04%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

pylint3 and pip3 broken

Missing snmpget and snmpwalk

How to enroll fingerprints to Ubuntu 17.10 with VFS491