...
Ensure that your host has been updated to the latest available packages as well as the latest Linux kernel. If necessary, reboot to ensure that the system is running the latest kernel.
Install
...
The Ubersmith Installer requires that Docker, as well as some additional dependencies be installed prior to installing Ubersmith. The script located at:
can be helpful when installing Docker. Ensure that Docker is configured to start on boot; in many cases it may not be. Depending on the operating system used, you may be able to enable the docker service with:
| Блок кода |
|---|
systemctl enable docker |
Ensure that Docker is up and running:
| Блок кода |
|---|
service docker start |
Install Dependencies
The installation process will fail without these dependencies:
...
| Блок кода | ||
|---|---|---|
| ||
sudo dnf remove buildah podman sudo dnf install gcc libffi-devel python3-devel openssl-devel git sudo alternatives --set python /usr/bin/python3 sudo alternatives --install /usr/bin/pip pip /usr/bin/pip3.6 1 |
...
| Блок кода | ||
|---|---|---|
| ||
sudo apt install build-essential libssl-dev libffi-dev python3-dev python3-setuptools python3-pip git
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
sudo update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1
|
Install Docker
The Ubersmith Installer requires that Docker, as well as some additional dependencies be installed prior to installing Ubersmith. The script located at:
can be helpful when installing Docker. Ensure that Docker is configured to start on boot; in many cases it may not be. Depending on the operating system used, you may be able to enable the docker service with:
| Блок кода |
|---|
systemctl enable docker |
Ensure that Docker is up and running:
| Блок кода |
|---|
service docker start |
| Примечание |
|---|
If |
Clone the Repository or Download a Release
...