如何创建远程文件夹的快捷方式?

如何创建远程文件夹的快捷方式?

我在 VirtualBox 中运行 ubuntu-server。此 VirtualBox 在 (L)ubuntu 20.04 上运行。

我想在 VirtualBox 中为 ubuntu-server 中的文件夹创建快捷方式。我希望能够从虚拟盒(主机操作系统)外部访问此文件夹的内容。

编辑1:我能够通过 GUI ssh 进入该文件夹,也可以使用 sshfs 将其 ssh 挂载。

sshfs -p 3022 [email protected]:/var/www /home/username/Desktop/remote/ -o identityFile=/home/username/.ssh/id_ed25519

nautilus ssh://[email protected]:3022 &

但问题是,我无法查看远程文件夹 /var/www/ 内的内容

我该如何解决?我试过 nautilus-admin,但没有效果。

编辑2

我检查了远程目录内的权限,这是输出:

root@user-ubuntu-server:/# ls -la /var/www
total 16
drwxr-xr-x  4 root     root     4096 Aug 13 00:27 .
drwxr-xr-x 14 root     root     4096 Aug 12 14:59 ..
drwxr-xr-x  2 root     root     4096 Aug 12 23:46 html
drwxr-x---  5 www-data www-data 4096 Aug 13 04:08 your_domain

相关内容