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
| # Passwort ändern | |
| passwd | |
| # Programme installieren | |
| sudo apt-get update | |
| sudo apt-get -y upgrade | |
| sudo apt-get -y dist-upgrade | |
| sudo apt-get -y install nohup vim sshpass |
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
| #!/bin/sh | |
| # https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/ | |
| # curl -Lk https://gist.githubusercontent.com/rlsch/7c154bfa403dbbfe7b43ca128160ca0e/raw/6244b3a349efbd02f9cb9079a6f0cdbf4b8ee656/install_dotfiles.sh | /bin/bash | |
| mkdir $HOME/.dotfiles | |
| git clone --bare https://github.com/rlsch/dotfiles.git $HOME/.dotfiles | |
| function config { | |
| /usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME $@ | |
| } | |
| mkdir -p .dotfile-backup | |
| config checkout |