Skip to content

Instantly share code, notes, and snippets.

@k0emt
Last active September 7, 2019 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k0emt/219dc32b86fc5cddffec121e25250adb to your computer and use it in GitHub Desktop.
Save k0emt/219dc32b86fc5cddffec121e25250adb to your computer and use it in GitHub Desktop.
Notes regarding setting up a Pop OS! development environment on a Sony Flip 15.

Sony Flip 15 Pop OS! build

Pop OS!

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.

keyboard shortcuts

ctrl-shift-c and ctrl-shift-v for copy and paste in the terminal

Logitech MX Master works with dongle, no real extended functionality

Software

R, R Studio, tidyverse, jsonlite Visual Studio mongo client

Python 2 and 3 already installed

docker

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

nodeJS in docker

mongoDB in docker

postgreSQL in docker

Docker CLI reference

to consider installing

hexchat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment