"64-bit 2.0 official version system" Raspberry Pi uses a virtual machine to run a standard system

This tutorial teaches you to run a standard system virtual machine on the 2.0 official version system

1. Create a new folder virtual_michine

sudo mkdir virtual_michine
sudo chmod 777 virtual_michine

2. Download the standard virtual machine image (send "standard virtual machine image 2.0" to get the download address) and
upload it to the new folder with ftp software

3. Enter the new folder

cd /home/pi/virtual_michine

4 Unzip the virtual disk image

 xz -d -k disk.qcow2.xz

5 Run the virtual machine

 sudo ./vm_run

The above script command will run the virtual machine in the background by default

6. Log in to the virtual machine control terminal.
By default, port 22 of the virtual machine has been mapped to port 2222 of the machine by default, and you can access port 2222 of the machine by SSH.
ssh -p 2222 root@this machine's IP address

Guess you like

Origin blog.csdn.net/qq_41676577/article/details/112974304