Ab dem 25. Oktober 2020 das folgende Skript
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update && brew upgrade && brew upgrade --cask
brew cask install virtualbox
――LIFESTYLE LAB ―― Endlich fertig! So installieren Sie Ubuntu auf VirtualBox auf Mac
--Qiita- Bequeme Verwendung von Ubuntu auf Mac
--mit FPGA - SSH-Zugriff und X-Übertragung an Ubuntu in Virtual Box auf Mac
Starten Sie Ubuntu auf VirtualBox, öffnen Sie das Terminal und führen Sie den folgenden Code aus
sudo apt update && sudo apt upgrade
sudo apt install openssh-server
sudo systemctl enable ssh
sudo systemctl restart ssh
ip address
3: Überprüfen Sie die IP-Adresse von
inet, die enp0s8
zugewiesen ist.
Führen Sie Code im folgenden Format auf dem Terminal Ihres Mac aus, um eine SSH-Verbindung herzustellen
"ssh foo @ 192.0.2.0
ssh <user>@<ip>
Bedienen Sie danach alles vom Terminal des Mac, der über SSH mit Ubuntu verbunden ist.
Uninstall old versions
sudo apt-get remove docker docker-engine docker.io containerd runc
SET UP THE REPOSITORY
Update the apt package index and install packages to allow apt to use a repository over HTTPS:
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
Add Docker’s official GPG key:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Verify that you now have the key with the fingerprint 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88, by searching for the last 8 characters of the fingerprint.
sudo apt-key fingerprint 0EBFCD88
Use the following command to set up the stable repository.
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
INSTALL DOCKER ENGINE
Update the apt package index, and install the latest version of Docker Engine and containerd, or go to the next step to install a specific version:
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
Verify that Docker Engine is installed correctly by running the hello-world image.
sudo docker run hello-world
sudo usermod -aG docker $USER
newgrp docker
docker run hello-world
Recommended Posts