Multipass 是一款轻量级的虚拟机管理工具,它可以在 Windows、macOS 和 Linux 上快速创建和管理虚拟机。使用 Multipass 可以轻松地构建和测试多种操作系统和应用程序,同时保持计算机的干净和安全。它还提供了一些方便的命令行工具,可以帮助您管理虚拟机的生命周期。
官方文档:https://multipass.run/docs/share-data-with-an-instance
总的来说两种安装方式
参考:https://blog.csdn.net/sinat_41870148/article/details/125213841
multipass info --all # 显示所有详细实例信息
multipass list # 列出所有实例
multipass delete instance_name # 删除实例,改变状态为 delete
multipass purge # 将 delete 的实例彻底删除
multipass find # 显示所有可用的 vm 代号
# 本机传文件到虚拟机
multipass transfer /Users/xxx/.ssh/id_rsa.pub ubuntu2204:/home/ubuntu/.ssh/id_rsa.pub
# 虚拟机传文件到本机
multipass transfer ubuntu2204:/home/ubuntu/.ssh/id_rsa.pub /Users/xxx/.ssh/id_rsa.pub
gui 安装的文件路径
/Users/xxx/Library/Application Support/multipass-gui
/Users/xxx/Library/Application Support/multipass-client-certificate
gui 可执行文件路径
/Library/Application Support/com.canonical.multipass
实例文件路径
注意 private 路径,需要sudo超户进入
/System/Volumes/Data/private/var/root/Library/Application Support/multipassd
/System/Volumes/Data/private/var/root/Library/Preferences/multipassd
/System/Volumes/Data/private/var/root/Library/Caches/multipassd
Mac 中 /System/Volumes/Data/private
其实等效于 /
/System/Volumes/Data/private/var/root/Library/Application Support/multipassd
/System/Volumes/Data/private/var/root/Library/Preferences/multipassd
/System/Volumes/Data/private/var/root/Library/Caches/multipassd
参考:https://askubuntu.com/questions/1383548/cant-find-multipass-ubuntu-files-on-mac-m1-finder
总的来说 SSH 两种登录方式
.ssh/authority_keys
文件中 即可首先需要在 Ubuntu 环境中安装 ssh server 端,默认 22 端口,具体命令网上搜一搜
附一个 ssh 登录过程: