Skip to content

Instantly share code, notes, and snippets.

@arnos-stuff
Created September 13, 2023 04:27
Show Gist options
  • Save arnos-stuff/b99927ab587218c2f20569b8ab3b5842 to your computer and use it in GitHub Desktop.
Save arnos-stuff/b99927ab587218c2f20569b8ab3b5842 to your computer and use it in GitHub Desktop.
VM isntall script for ubuntu / debian
#!/bin/bash
BREW_ROOT=/home/linuxbrew/.linuxbrew/bin
sudo apt install -y git zsh zsh-static micro
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
mkdir git
git clone https://github.com/arnos-stuff/shell git/shell
cp git/shell/prompts/half-pure.toml .config/starship.toml
cp git/shell/zsh/zshrc.base.zsh .zshrc
cp git/shell/zsh/zshenv.base.zsh .zshenv
$BREW_ROOT/brew install starship gh zoxide fzf fd
curl https://gist.githubusercontent.com/arnos-stuff/c7c10766ec30cd892b962b115c93384c/raw/81d927137f7921a69dd0af397aa7b796af33cabd/docker-install.sh | bash
curl https://gist.githubusercontent.com/arnos-stuff/50dfd3f9978d9eb95120560430f1c316/raw/f4a13ce1f198969d137d93d869e217d56ae9d7c3/install-k8s.sh | bash
wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio_20230907020502.0.0_amd64.deb -O minio.deb
sudo dpkg -i minio.deb
sudo chsh -s /bin/zsh $USER
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment