Last active
August 17, 2017 16:15
-
-
Save geo-stanciu/a0ef46dbc630789ad4c0d0e74d1f9ea7 to your computer and use it in GitHub Desktop.
config kubuntu
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
| sudo apt-get update | |
| sudo apt-get install build-essential | |
| # codecs | |
| sudo apt-get install ubuntu-restricted-extras | |
| sudo apt-get install kubuntu-restricted-extras | |
| # vlc + mplayer | |
| sudo apt-get install curl | |
| curl ftp://ftp.videolan.org/pub/debian/videolan-apt.asc | sudo apt-key add - | |
| echo "deb ftp://ftp.videolan.org/pub/debian/stable ./" | sudo tee /etc/apt/sources.list.d/libdvdcss.list | |
| sudo apt-get update | |
| sudo apt-get install vlc vlc-data browser-plugin-vlc mplayer2 | |
| # google chrome | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
| sudo apt-get update | |
| sudo apt-get install google-chrome-stable | |
| # open google chrome, if it asks for some encryption method, select "use blowfish file" | |
| # only office | |
| sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5 | |
| sudo sh -c 'echo "deb http://download.onlyoffice.com/repo/debian squeeze main" >> /etc/apt/sources.list.d/only-office.list' | |
| sudo apt-get update | |
| sudo apt-get install onlyoffice-desktopeditors | |
| # skype | |
| # go to https://www.skype.com/en/download-skype/skype-for-computer/ | |
| # download the deb one | |
| sudo apt update && sudo apt upgrade | |
| sudo gdebi skypeforlinux-64.deb | |
| # zip, 7-zip, rar | |
| sudo apt-get install p7zip* | |
| sudo apt-get install rar unrar | |
| sudo apt-get install gzip zip unzip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment