Skip to content

Instantly share code, notes, and snippets.

@fvoges
Last active February 22, 2025 17:38
Show Gist options
  • Save fvoges/741de3b432e19c11c9bb to your computer and use it in GitHub Desktop.
Save fvoges/741de3b432e19c11c9bb to your computer and use it in GitHub Desktop.
Quick & Dirty rcfiles install
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get update && sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade -y && sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade -y && sudo apt-get autoclean && sudo apt-get autoremove -y;sudo update-grub2
sudo apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" ack-grep apt-file bash-completion bsdmainutils ccze colordiff curl git htop jq lftp lynx make mc mutt net-tools psmisc rsync sysstat telnet tree wget vim-nox && \
curl -q https://gist.githubusercontent.com/fvoges/741de3b432e19c11c9bb/raw/rcinstall.sh|sudo -i bash
curl -q https://gist.githubusercontent.com/fvoges/741de3b432e19c11c9bb/raw/rcinstall.sh|bash
#!/bin/bash
sudo yum install -y vim-enhanced bash-completion ccze colordiff curl git htop lftp lynx mc mutt net-tools psmisc rsync sysstat telnet wget mercurial tree avahi avahi-tools nss-mdns tree ack make jq && \
curl -q https://gist.githubusercontent.com/fvoges/741de3b432e19c11c9bb/raw/rcinstall.sh|sudo -i bash
curl -q https://gist.githubusercontent.com/fvoges/741de3b432e19c11c9bb/raw/rcinstall.sh|bash
#!/bin/bash
set -e
git clone https://github.com/fvoges/bash-git-prompt ~/.bash-git-prompt
test -f /usr/local/bin/git-alias || curl -sSL http://git.io/git-extras-setup | bash
#git config --global push.default "simple"
git config -f ~/.gitconfig.local user.email "[email protected]"
git config -f ~/.gitconfig.local user.name "Federico Voges"
git clone --recursive https://github.com/fvoges/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
./install.sh
@fvoges
Copy link
Author

fvoges commented Oct 29, 2023

Install using latest snippet version:

curl https://gist.githubusercontent.com/fvoges/741de3b432e19c11c9bb/raw/debian_install.sh|bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment