hi all,
I hope someone can help me solving this problem
I’m trying to mount a directory in EGW 21.1
FROM EGW command line I can successfully mount /home
root@412381776af6:/# sudo /usr/share/egroupware/filemanager/cli.php mount --user root_egw-admin --password ******** filesystem://test/ /home/name.surname/
Root access granted!
filesystem://test/ successful mounted to /home/name.surname/
Now, I can successfully UNMOUNT the /home
root@412381776af6:/# sudo /usr/share/egroupware/filemanager/cli.php umount --user root_egw-admin --password ******** /home/name.surname/
Root access granted!
Successful unmounted /home/name.surname/:
sqlfs://$host/ /
links://$host/apps /apps
BUT I can’t mount a directory included in the /home having same permissions
root@412381776af6:/# sudo /usr/share/egroupware/filemanager/cli.php mount --user root_egw-admin --password ******** filesystem://home/test/ /home/name.surname/
EGroupware\Api\Vfs\Base::mount(‘filesystem://home/test/’,’/home/name.surname/’) url does NOT exist!
Root access granted!
URL ‘filesystem://home/test/’ not found or permission denied (are you root?)!
Please note that /home and /home/test have same permissions
[root@debianlinux /home] # ls -lah
total 84K
drwxr-xr-x 6 root root 4.0K Jun 5 00:19 .
drwxr-xr-x 25 root root 4.0K Jun 5 00:21 …
drwxrwxrwx 5 www-data www-data 4.0K Jun 5 00:08 egroupware
drwx------ 2 root root 16K Oct 18 2016 lost+found
drwxr-xr-x 3 root root 4.0K Jun 5 00:30 test
drwxr-xr-x 12 adm1n adm1n 52K Jun 4 23:57 adm1n
Please help