Last active
July 18, 2024 22:55
-
-
Save fabriciorsf/d55107813deae700ccc8bce055c87c9a to your computer and use it in GitHub Desktop.
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
sudo apt update && sudo apt upgrade && sudo apt dist-upgrade && sudo apt autoremove && sudo apt autoclean && sudo apt clean | |
sudo apt install htop tilda hardinfo inxi gdebi synaptic cmake traceroute gparted openssh-server tree screen libimage-exiftool-perl | |
sudo apt install cpufrequtils | |
echo 'GOVERNOR="performance"' | sudo tee /etc/default/cpufrequtils | |
sudo systemctl disable ondemand | |
cd ~/Downloads && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo gdebi google-chrome-stable_current_amd64.deb && rm google-chrome-stable_current_amd64.deb && cd ~ | |
sudo add-apt-repository ppa:webupd8team/java | |
###ATTETION: accept | |
sudo add-apt-repository ppa:linuxuprising/java | |
###ATTETION: accept | |
sudo apt update | |
sudo apt install oracle-java8-installer oracle-java11-installer openjdk-11-jdk | |
###ATTETION: accept the terms | |
sudo update-alternatives --config javac | |
###ATTETION: choose the alternative javac | |
sudo update-alternatives --config java | |
###ATTETION: choose the alternative java | |
sudo apt install git pdf-presenter-console gimp octave maven pbzip2 flashplugin-installer | |
sudo apt install python-pip python3-pip | |
sudo pip install pip -U | |
sudo pip2 install pip -U | |
sudo pip3 install pip -U | |
mkdir -p ~/git && cd ~/git/ && git clone https://github.com/xianyi/OpenBLAS.git | |
cd ~/git/OpenBLAS/ && make | |
sudo make PREFIX=/opt/OpenBLAS install | |
cd ~ | |
mkdir -p ~/Downloads | |
sudo mkdir -p /opt/programs | |
sudo chmod -R a+rwx /opt/programs/. | |
mkdir -p /opt/programs/miniconda3 | |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/Downloads/miniconda.sh | |
bash ~/Downloads/miniconda.sh -b -u -p /opt/programs/miniconda3 | |
echo 'export MINICONDA="/opt/programs/miniconda3"' | sudo tee /etc/profile.d/miniconda.sh | |
echo 'export CONDA="${MINICONDA}/bin"' | sudo tee --append /etc/profile.d/miniconda.sh | |
source /etc/profile.d/miniconda.sh | |
rm -rf ~/Downloads/miniconda.sh | |
cd ~/Downloads && wget http://eclipse.c3sl.ufpr.br/technology/epp/downloads/release/photon/R/eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz | |
tar -vzxf eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz | |
mv eclipse /opt/programs/eclipse_photon | |
rm eclipse-jee-photon-R-linux-gtk-x86_64.tar.gz | |
cd /opt/programs && ln -s eclipse_photon eclipse && cd ~ | |
cd ~/Downloads/ && wget https://linux.dropbox.com/packages/ubuntu/dropbox_2015.10.28_amd64.deb && sudo gdebi dropbox_2015.10.28_amd64.deb && rm dropbox_2015.10.28_amd64.deb && cd ~ | |
sudo apt install texlive-full |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment