3 / 3
Jun 2021

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

  • created

    Jun '21
  • last reply

    Jun '21
  • 2

    replies

  • 996

    views

  • 2

    users

  • 1

    link

This URL has a path of /test, not /home/test. The “home” is the host-name, not part of the path!

You should also be careful to not use trailing slashes, they can lead to double slashes in constructed pathes.

Ralf