:: Re: [DNG] unstable ownership of mou…
Top Page
Delete this message
Reply to this message
Author: aitor
Date:  
To: dng
Subject: Re: [DNG] unstable ownership of mount point
On 2/3/24 18:24, aitor wrote:

> In case the filesystem does support Linux permissions


For example, `ext4` filesystems. If you try to pass uid and gid to mount, you'll get a non null exit status (WEXITSTATUS=32),
because it's not possible to force an owner on the disk.

# mount -o uid=1000,git=1000 /dev/sdb1 /media/working

# echo $?
32

And then you want to use: --rw

HTH,

Aitor.