enterprise-support team mailing list archive
-
enterprise-support team
-
Mailing list archive
-
Message #10620
Re: [Question #182036]: Ubuntu - canot share internal NTFS disk on network
Question #182036 on samba in Ubuntu changed:
https://answers.launchpad.net/ubuntu/+source/samba/+question/182036
charles luma posted a new comment:
To fix your issue, mount the NTFS partition with user permissions:
Find the disk:
bash
Copy code
sudo fdisk -l
Create a mount point:
bash
Copy code
sudo mkdir /media/yourusername/diskname
Mount with user access:
bash
Copy code
sudo mount -t ntfs-3g -o uid=yourusername,gid=yourusername /dev/sdX /media/yourusername/diskname
Auto-mount on boot: Add this line to /etc/fstab:
bash
Copy code
/dev/sdX /media/yourusername/diskname ntfs-3g uid=yourusername,gid=yourusername 0 0
For a break, explore trekking in Morocco: https://atlastriptour.com/trekking-in-morocco.
--
You received this question notification because your team Ubuntu
Server/Client Support Team is subscribed to the question.