Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit ea1012d

Browse files
committed
Add the beginnings of a from-scratch ubuntu install
1 parent 2c32368 commit ea1012d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

install_base.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
# Install the absolute basics on a DE-less ubuntu system
4+
sudo apt install \
5+
software-properties-common \
6+
docker.io \
7+
fish
8+
9+
sudo service docker restart
10+
11+
sudo usermod -a -G docker $(whoami)
12+
chsh $(whoami) -s /usr/bin/fish

0 commit comments

Comments
 (0)