# Getting started ## Start ```sh docker run --name space-1 -d alnoda/ubuntu-workspace ``` Now you can ssh into the running workspace container ```sh docker exec -it space-1 /bin/zsh ``` ## Root user ssh into the running workspace container as root user ```sh docker exec -it --user=root space-1 /bin/zsh ``` ## Examples Explore file system with Midnight Commander > ```mc```

Moonlignt commander

Launch system-monitor, process-viewer and process-manager ``` htop ```

Htop

Explore file/folder sizes ``` ncdu ```

Htop

Text editors ```vim```, ```nano``` and ```mcedit``` are available. For example, clone git repo and edit python file with nano ``` git clone https://github.com/dimaba/sendmail.git cd sendmail nano sendmail.py ```

Htop

``` mcedit sendmail.py ```

Htop

## Docker in docker If you want to use docker, check out **ubuntu-docker-workspace**. It is the same, but with docker-in-docker.