MacBook pro m1 利用UTM虚拟机安装arm版本ubuntu后,发现ROM空间不能修改,在设置里增加共享目录后,ubuntu没有找到相应的目录。
换个角度,利用sshfs来共享目录
在ubuntu下安装sshfs
sudo apt-get install sshfs
默认ubutnu没有开启ssh server,安装下
sudo apt-get install openssh-server
在MacBook下执行
sshfs username@ip address:/remote dir/ local dir -o reconnect
然后就可以在本地看到远程的文件和文件夹里
本地机器休眠后,在进入loca dir,执行ls,会提示如下错误
ls: .: Device not configured
-o remount没有生效,需要卸载一下,然后在映射
umount -f local dir
sshfs username@ip address:/remote dir/ local dir -o reconnect