Had to turn off secure boot and switch from UEFI to legacy to install. Use ASSIST above keyboard for boot options and getting into CMOS.
ctrl-shift-c
and ctrl-shift-v
for copy and paste in the terminal
Logitech MX Master works with dongle, no real extended functionality
R, R Studio, tidyverse, jsonlite Visual Studio mongo client
Python 2 and 3 already installed
After installing docker, add the current user to the docker group. You'll need to log out and back in afterwards.
sudo usermod -a -G docker $USER
Spin up a container, detached, expose ports inside/outside? name it, and what image
docker run -d -p 27017-27019:27017-27019 --name mongodb mongo
In the above mongodb
is the container name and mongo
is the image name
Connect to the docker instance and run a shell there, then can do mongo
docker exec -it mongodb bash
useful commands
docker stats
docker container ls --all
docker images
docker start containerName
docker stop containerName
docker ps
docker ps -a to see all containers
hexchat