Last active
August 29, 2015 14:12
-
-
Save rmnssnvsk/0ea01236dc306eb12ea7 to your computer and use it in GitHub Desktop.
My install file
This file contains 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 "===================================================================" | |
echo " Roman\`s installing script " | |
echo "===================================================================" | |
# Обновляемся | |
apt-get update | |
apt-get upgrade -y | |
# Установка необходимых утилит для работы и архиваторов | |
apt-get install -y unrar htop | |
# Установка Chromium и Flash | |
echo "Installing Chromium ===========================" | |
apt-get install -y chromium-browser pepperflashplugin-nonfree | |
update-pepperflashplugin-nonfree --install | |
# Установка Git | |
echo "Installing Git ================================" | |
apt-get -y install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev build-essential | |
wget https://github.com/git/git/archive/master.zip | |
unzip master.zip | |
cd git-master | |
make prefix=/usr/local install | |
cd .. | |
rm -Rf git-master | |
rm master.zip | |
# Установка Warzone 2100 | |
echo "Installing Warzone2100 ========================" | |
apt-get install -y build-essential automake flex bison libpng12-dev libsdl1.2-dev libopenal-dev libphysfs-dev libvorbis-dev libtheora-dev libglc-dev libglew1.5-dev libxrandr-dev zip unzip libqt4-opengl-dev libqt4-network libqjson-dev libssl-dev | |
wget http://downloads.sourceforge.net/project/warzone2100/releases/3.1.2/warzone2100-3.1.2.tar.xz | |
tar xvJf warzone2100-3.1.2.tar.xz | |
cd warzone2100-3.1.2 | |
./autogen.sh && ./configure --prefix=/usr/local && make && make install | |
cd .. | |
rm -f warzone2100-3.1.2.tar.xz | |
rm -Rf warzone2100-3.1.2 | |
# Установка Oracle java jdk 8 | |
add-apt-repository -y ppa:webupd8team/java | |
apt-get update | |
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections | |
apt-get install -y oracle-java8-installer | |
# Установка Intellij Idea Community edition | |
echo "Installing Intellij Idea =====================" | |
wget http://download.jetbrains.com/idea/ideaIC-14.0.2.tar.gz | |
tar xvzf ideaIC-14.0.2.tar.gz | |
cp -Rf idea-IC-139.659.2 /opt | |
rm -f ideaIC-14.0.2.tar.gz | |
rm -Rf idea-IC-139.659.2 | |
# Установка Maven | |
apt-get install -y maven2 | |
# Установка Youtube-Dl | |
echo "Installing Youtube-Dl ========================" | |
apt-get install -y pandoc | |
git clone https://github.com/rg3/youtube-dl.git | |
cd youtube-dl | |
make && make install | |
cd .. | |
rm -Rf youtube-dl | |
# Установка VLC | |
echo "Installing VLC ===============================" | |
apt-get install -y vlc | |
# Установка Avconv | |
echo "Installing Avconv ============================" | |
apt-get install -y yasm | |
git clone git://git.videolan.org/x264.git x264 | |
cd x264 | |
./configure --enable-static | |
make && make install | |
cd .. | |
git clone git://git.libav.org/libav.git avconv | |
cd avconv | |
./configure --enable-gpl --enable-libx264 | |
make && make install | |
cd .. | |
rm -Rf x264 | |
rm -Rf avconv | |
# Установка DosBox | |
echo "Installing Dosbox ============================" | |
apt-get install -y dosbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment