Skip to content

Instantly share code, notes, and snippets.

View thiagogenez's full-sized avatar
🤓

Thiago Genez thiagogenez

🤓
View GitHub Profile
@thiagogenez
thiagogenez / gcc-5.5.0-CentOS7-install.sh
Last active March 2, 2021 12:28 — forked from jdhao/gcc-5.4.0-install.sh
The script will install GCC 5.5.0 on your CentOS 7 system, make sure you have root right. See https://jdhao.github.io/2017/09/04/install-gcc-newer-version-on-centos/ for more details.
echo "Downloading gcc source files..."
curl https://ftp.gnu.org/gnu/gcc/gcc-5.5.0/gcc-5.5.0.tar.gz -O
echo "extracting files..."
tar zxvf gcc-5.5.0.tar.gz
echo "Installing dependencies..."
yum -y install gmp-devel mpfr-devel libmpc-devel
echo "Configure and install..."
#=============================================================================
# dark_powered.toml --- dark powered configuration example for SpaceVim
# Copyright (c) 2016-2020 Wang Shidong & Contributors
# Author: Wang Shidong < wsdjeg at 163.com >
# URL: https://spacevim.org
# License: GPLv3
# Edited by Mark Phillips, in Nano 5.3
# https://gist.github.com/2c5cb4b4b063d4c63004bbda18ec944a
# wget -O - https://bit.ly/3jrzVGM
# wget -o ~/.SpaceVim.d/init.toml https://bit.ly/3jrzVGM
@thiagogenez
thiagogenez / install_linuxbrew_on_centos7.sh
Last active September 5, 2023 12:24 — forked from warking/install_linuxbrew_on_centos7.sh
standalone linuxbrew setup script for CentOS 7
# Non-root account is recommended for this process
# centos-specific prepration
sudo yum -y update && sudo yum -y groupinstall 'Development Tools' && sudo yum -y install curl irb m4 ruby
# install linuxbrew
git clone https://github.com/Homebrew/brew ~/.linuxbrew/Homebrew
mkdir ~/.linuxbrew/bin
ln -s ~/.linuxbrew/Homebrew/bin/brew ~/.linuxbrew/bin
eval $(~/.linuxbrew/bin/brew shellenv)