Last active
August 15, 2019 22:31
-
-
Save Alex4386/d0a4ffda6e8d9d98812fdf61c1a2cf26 to your computer and use it in GitHub Desktop.
Simple shell script to make TmaxOS "usable" (But It doesn't make garbage less stinky)
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/bash | |
echo "Add Debian Sources.list" | |
sudo echo "deb http://ftp.kr.debian.org/debian/ stable main contrib non-free" >> /etc/apt/sources.list | |
sudo echo "deb-src http://ftp.kr.debian.org/debian/ stable main contrib non-free" >> /etc/apt/sources.list | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt install dh-python | |
sudo apt install -f | |
echo "Fix garbage language pack" | |
sudo apt install locales | |
sudo dpkg-reconfigure locales | |
echo "Log out and Log back in" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment