Hello everyone,
I am trying to give a user in an LCX write permissions to a mounted smb share. However, whether I try on the host or in the container neiter chown to change ownership nor chmod to change write permission has any effect whatsoever.
I tried it with
and
inside the container which is privileged.
I also tried to change ownship in the host system to a user with the same uid as the the user in the container but whatever I try the command runs without error but permissions and ownership are completely unaffected.
The container setup looks like this
The folders need to be mounted in the user folder because RStudio Server that is running in the container is using the user folders as home directories.
I am little at a loss here because I get no error just nothing happens.
Thanks a lot!
I am trying to give a user in an LCX write permissions to a mounted smb share. However, whether I try on the host or in the container neiter chown to change ownership nor chmod to change write permission has any effect whatsoever.
I tried it with
Code:
sudo chmod -R 0777 /home/armin/
and
Code:
sudo chown -R armin home/armin
inside the container which is privileged.
I also tried to change ownship in the host system to a user with the same uid as the the user in the container but whatever I try the command runs without error but permissions and ownership are completely unaffected.
The container setup looks like this
Code:
arch: amd64
cores: 2
features: nesting=1
hostname: rstudio
memory: 32768
mp0: /mnt/pve/r-projects,mp=/home/armin/r-projects
mp1: /mnt/pve/data-archive,mp=/home/armin/data
net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=3E:82:0C:DF:38:D4,ip=dhcp,ip6=dhcp,type=>
onboot: 1
ostype: ubuntu
rootfs: app:subvol-108-disk-1,size=200G
swap: 65536
The folders need to be mounted in the user folder because RStudio Server that is running in the container is using the user folders as home directories.
I am little at a loss here because I get no error just nothing happens.
Thanks a lot!