Hello
Well ihave been doing some more reading on how to mount and unmount NTFS drives in linux and i came across this. It seems pretty simple, but one thing that concerns me is that it lets users have read-only access. I use my NTFS SATA drves to store my music and videos and projects so i would need to write to them. How can i do that?
Q: How to mount Windows partitions (NTFS) on boot-up, and allow all users to read only?
Read General Notes
Read How to list partition tables?
e.g. Assumed that /dev/hda1 is the location of Windows partition (NTFS)
Local mount folder: /media/windowssudo mkdir /media/windows
sudo cp /etc/fstab /etc/fstab_backup
sudo gedit /etc/fstab
Append the following line at the end of file
/dev/hda1 /media/windows ntfs nls=utf8,umask=022200
Save the edited file (sample)
Well ihave been doing some more reading on how to mount and unmount NTFS drives in linux and i came across this. It seems pretty simple, but one thing that concerns me is that it lets users have read-only access. I use my NTFS SATA drves to store my music and videos and projects so i would need to write to them. How can i do that?
Q: How to mount Windows partitions (NTFS) on boot-up, and allow all users to read only?
Read General Notes
Read How to list partition tables?
e.g. Assumed that /dev/hda1 is the location of Windows partition (NTFS)
Local mount folder: /media/windowssudo mkdir /media/windows
sudo cp /etc/fstab /etc/fstab_backup
sudo gedit /etc/fstab
Append the following line at the end of file
/dev/hda1 /media/windows ntfs nls=utf8,umask=022200
Save the edited file (sample)