Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 1325  / 3 Years ago, mon, september 27, 2021, 3:42:02

Why I cannot change the ownership on mounting ntfs drive?


I give uid=1000,gid=1000, etc in my /etc/fstab file, but found it is not working. So I'm testing it out on command line:


root@host:~# mount | grep /mnt/tmp1 | wc
0 0 0

root@host:~# mount -o uid=1000 /dev/nvme0n1p4 /mnt/tmp1/

root@host:~# mount | grep /mnt/tmp1
/dev/nvme0n1p4 on /mnt/tmp1 type fuseblk (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096)

root@host:~# umount /mnt/tmp1

root@host:~# mount -o user_id=1000 /dev/nvme0n1p4 /mnt/tmp1/

root@host:~# mount | grep /mnt/tmp1
/dev/nvme0n1p4 on /mnt/tmp1 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 21.10
Release: 21.10
Codename: impish

$ apt-cache policy mount
mount:
Installed: 2.36.1-8ubuntu1
Candidate: 2.36.1-8ubuntu2
Version table:
2.36.1-8ubuntu2 500
500 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 Packages
*** 2.36.1-8ubuntu1 500
500 http://archive.ubuntu.com/ubuntu impish/main amd64 Packages
100 /var/lib/dpkg/status

Am I missing something? (This is Ubuntu 21.10 impish)

Why I cannot change the ownership on mounting ntfs drive?


More From » permissions

 Answers
4

Changing the ownership is absolutely possible. See this page: Mount NTFS partition at startup, with non-root user as owner and Change owner of internal hard drive partition from root to user


Basically, add uid=1000,gid=1000,permissions and possibly play with umask=000,nls=iso8859-1,users. Use mount -a to test without rebooting.


[#1008] Tuesday, September 28, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oneeme

Total Points: 340
Total Questions: 110
Total Answers: 133

Location: Ghana
Member since Fri, Oct 21, 2022
2 Years ago
oneeme questions
Wed, Jul 6, 22, 17:32, 2 Years ago
Tue, Mar 15, 22, 05:29, 2 Years ago
Tue, May 10, 22, 17:15, 2 Years ago
Thu, Sep 23, 21, 16:55, 3 Years ago
;