Au 25 octobre 2020, le script suivant
/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 ―― Enfin terminé! Comment installer Ubuntu sur VirtualBox sur Mac
--Qiita- Utilisation confortable d'Ubuntu sur Mac
Démarrez Ubuntu sur VirtualBox, ouvrez le terminal et exécutez le code suivant
sudo apt update && sudo apt upgrade
sudo apt install openssh-server
sudo systemctl enable ssh
sudo systemctl restart ssh
ip address
Vérifiez l'adresse IP de ʻinetattribuée à
3: enp0s8`.
Exécutez du code au format suivant sur le terminal de votre Mac pour établir une connexion SSH
Cependant, «ssh foo @ 192.0.2.0
ssh <user>@<ip>
Après cela, faites tout fonctionner depuis le terminal du Mac connecté à Ubuntu par SSH.
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