Skip to content

Random test page

Hello world!

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa.

...

Running an Ubuntu container to test bash commands

If you want to use a specific version of Linux to run bash, you can create a container (for example, ubuntu) using:

docker run -dt --name ubuntu-temp ubuntu:22.04

Then you can access bash in the ubuntu container using:

docker exec -it ubuntu-temp /bin/bash