pTvuBImXJH0

How to Install Ubuntu on ESXi and Set Up Docker: Initial Steps for Working with Open Source Software

In this video, you will be introduced to the steps for installing the Ubuntu operating system on an ESXi virtual server. This tutorial will help you set up an appropriate environment for developing and utilizing open-source software.

We will begin by examining how to create a new virtual machine in ESXi, followed by the installation process of Ubuntu, where we will configure the necessary settings. After installing the operating system, we will move on to installing Docker, a powerful platform for managing containers, allowing you to run applications in isolated environments across various setups.

This video is suitable for developers, system administrators, and anyone looking to learn new skills in working with Linux operating systems and modern technologies like Docker.

By following this tutorial, you’ll be able to easily create an efficient and flexible development environment for your open-source projects.

https://www.youtube.com/watch?v=pTvuBImXJH0&t=8s

 

Command Site Link:


Ubuntu after install:
https://wiki.alikaravi.com/index.php?…
Docker ubuntu:
https://wiki.alikaravi.com/index.php?…

Command :


sudo -i
apt update
apt list –upgradable
apt upgrade -y
apt-get dist-upgrade -u

sudo nano /etc/ssh/sshd_config
add this value:
PermitRootLogin yes

systemctl restart sshd
sudo passwd -u root
sudo passwd root

First, update your existing list of packages:

sudo apt update
Next, install a few prerequisite packages which let apt use packages over HTTPS:

sudo apt install apt-transport-https ca-certificates curl software-properties-common
Then add the GPG key for the official Docker repository to your system:
curl -fsSL https://download.docker.com/linux/ubu… | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

Update your existing list of packages again for the addition to be recognized:

sudo apt update
Make sure you are about to install from the Docker repo instead of the default Ubuntu repo:

apt-cache policy docker-ce
Finally, install Docker:

sudo apt install docker-ce
Docker should now be installed, the daemon started, and the process enabled to start on boot. Check that it’s running:

sudo systemctl status docker
install compose
apt install docker-compose

No comment

Leave a Reply

Your email address will not be published. Required fields are marked *