8000 GitHub - azroberts8/helpful-tools
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

azroberts8/helpful-tools

Repository files navigation

Helpful Tools

A collection of simple tools, commands & solutions that I'll likely need again. Small solutions are featured directly on this page while more involved solutions are linked to additional pages. Find this repo on GitHub here: https://github.com/azroberts8/helpful-tools

Deeper Guides

Installing Docker on Linux

Official Documentation: https://docs.docker.com/engine/install/debian

Add Docker's GPG Key

sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

Add Docker's Repository to Apt Sources

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Install Docker

Full docker desktop installation

sudo apt update
sudo apt install docker.io

Headless Docker installation

sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Adding User to Docker Group

This is so that you do not need to prefix every Docker command with sudo

sudo usermod -aG docker $(whoami)

In my testing a session restart is not sufficent, you will need to reboot before you can run Docker without sudo

Docker Hello World

docker run hello-world

Installing VirtualBox from apt on Debian

Official Documentation: https://virtualbox.org/wiki/Linux_Downloads

Add Official Virtualbox Source

echo "deb [arch=amd64 signed-by=/usr/share/keyrings/oracle-virtualbox-2016.gpg] https://download.virtualbox.org/virtualbox/debian $(. /etc/os-release && echo "$VERSION_CODENAME") contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list > /dev/null

Add Oracle GPG Key

wget -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg --yes --output

Install Virtualbox

sudo apt update
sudo apt install virtualbox-7.0

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0