KasperskyOS Community Edition 1.2
Contents
Contents
Using a Docker container
To install and use KasperskyOS Community Edition, you can use a Docker container in which an image of one of the supported operating systems is deployed.
To use a Docker container for installing KasperskyOS Community Edition:
- Make sure that the Docker software is installed and running.
- To download the official Docker image of the Ubuntu GNU/Linux 22.04 (Jammy Jellyfish) operating system from the public Docker Hub repository, run the following command:
docker pull ubuntu:22.04
- To run the image, run the following command:
docker run --net=host --user root --privileged -it --rm ubuntu:22.04 bash
- Copy the DEB package for installation of KasperskyOS Community Edition into the container.
- Install KasperskyOS Community Edition.
- To ensure correct operation of some examples, you must add the
/usr/sbin
directory to thePATH
environment variable within the container by running the following command:export PATH=/usr/sbin:$PATH