Closed ghost closed 4 years ago
What file system are you using?
VeraCrypt containers are formatted to ntfs
(because I also need to access them on Windows)
LUKS1 container is formatted to ext4
/etc/zuluCrypt/generic_fs_options
ntfs fmask=0000
Thank you, it works!
I'm curious as to why this isn't the default behavior?
That line will change the default fmask options for all mounted ntfs file system.
You can use different defaults for different mount points by doing the following
/etc/zuluCrypt/fs_options
UUID=XYZ fmask=0000
where XYZ is the UUID of the file system and you can find out UUID's of file systems by running "blkid" tool.These two config files allows customization of mount options per file system and per mount point.
A list of options you can override is here: https://github.com/mhogomchungu/zuluCrypt/blob/34f4e283a10c9c4716346fa7cf1839aa90ab0720/zuluCrypt-cli/lib/mount_volume.c#L222
I'm curious as to why this isn't the default behavior?
Somebody said i should do it this way because "security" but their reasoning wasn't very convincing so i wont try to explain it to you.
zuluCrypt
version:zuluCrypt-git
AURI apologize since this is probably a stupid question, but I'm having trouble with permissions.
Title says it all. Basically, my VeraCrypt volumes mounted to
/run/media/private/vtnpp/
withzuluCrypt-gui
orzuluMount-gui
have 777 permissions, but all their content has 666 permissions.Which means I cannot execute script stored on them, for instance.
$ chmod +x script.sh
doesn't work either, even withsudo
.script.sh
still has 666 permission.As I was searching for a solution, I came accross this part in the changelog:
So I created
zulumount-exec
group and added myself to it:then I mounted a VeraCrypt volume again but it doesn't make any difference, all files in my VeraCrypt volume have 666 permissions.
I don't have this issue with a LUKS1 container that I created with
zuluCrypt-gui
. The container is also mounted to/run/media/private/vtnpp/
andchmod
command works fine.I also tried:
to no avail.
A few relevant outputs:
What am I doing wrong?