Lima Ubuntu VM setup on Mac
Homebrew Installation /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" Uninstallation /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)" Lima launches Linux virtual machines with automatic file sharing and port forwarding (similar to WSL2). # Install brew install lima # Create VM limactl create --cpus=8 --memory=8 --name=default template://ubuntu limactl list # Start && Enter limactl start default limactl shell default # Stop limactl stop default # Delete limactl delete default # Protect && Unprotect limactl protect default limactl unprotect default # Copy # Host -> VM limactl cp ~/Downloads/test.png default:/tmp # VM -> Host…