Add setup.sh
This commit is contained in:
commit
f02a556174
1 changed files with 15 additions and 0 deletions
15
setup.sh
Normal file
15
setup.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
sudo apt update; sudo apt upgrade
|
||||
sudo add-apt-repository ppa:zhangsongcui3371/fastfetch
|
||||
sudo apt update
|
||||
sudo apt install fastfetch
|
||||
sudo apt install btop zoxide eza bat
|
||||
zoxide init bash >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
sudo apt install -y ca-certificates curl gnupg lsb-release
|
||||
sudo mkdir -p /etc/apt/keyrings
|
||||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
sudo apt update
|
||||
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
|
||||
docker
|
||||
sudo docker run hello-world
|
Loading…
Add table
Add a link
Reference in a new issue