Last active
December 13, 2025 04:38
-
-
Save wsuzume/552fe1aaf44b859d0b2d1223c9058d56 to your computer and use it in GitHub Desktop.
Ubuntu24.04 Desktop Setup Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get dist-upgrade -y | |
| sudo apt-get install -y \ | |
| vim htop openssh-server | |
| mkdir -p ~/.ssh | |
| echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKHuMcmZsgMNgdKFuD2BlyEJ5qhgDwrLlN14BKOq7bGs [email protected]" > ~/.ssh/authorized_keys | |
| chmod 700 ~/.ssh | |
| chmod 600 ~/.ssh/authorized_keys | |
| sudo systemctl enable ssh | |
| sudo systemctl start ssh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | |
| sudo chmod a+r /etc/apt/keyrings/docker.asc | |
| # Add the repository to Apt sources: | |
| sudo tee /etc/apt/sources.list.d/docker.sources <<EOF | |
| Types: deb | |
| URIs: https://download.docker.com/linux/ubuntu | |
| Suites: $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") | |
| Components: stable | |
| Signed-By: /etc/apt/keyrings/docker.asc | |
| EOF | |
| sudo apt update | |
| sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget -qO- https://gist.githubusercontent.com/wsuzume/552fe1aaf44b859d0b2d1223c9058d56/raw/init.sh | |
| wget -qO- https://gist.githubusercontent.com/wsuzume/552fe1aaf44b859d0b2d1223c9058d56/raw/install_docker.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment