Skip to content

Instantly share code, notes, and snippets.

@Alex4386
Last active August 15, 2019 22:31
Show Gist options
  • Save Alex4386/d0a4ffda6e8d9d98812fdf61c1a2cf26 to your computer and use it in GitHub Desktop.
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)
#!/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