Skip to content

Instantly share code, notes, and snippets.

@slog2
slog2 / doxygen_on_centos_6.7
Last active June 23, 2020 06:09
how to use Doxygen on CentOS 6.7
# Install
yum -y install doxygen
yum -y install graphviz
yum -y install texlive texlive-utils
# Make default config for doxygen
cd {c_source_dir}
doxygen -g my.doxy
@slog2
slog2 / upgrade to vim 7.4 on CentOS 5.x.sh
Last active August 7, 2018 22:29
upgrade to vim 7.4 on CentOS 5.x
#!/bin/bash
yum groupinstall 'Development tools' -y
yum install ncurses ncurses-devel wget git -y
cd /usr/local/src
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
tar -xjf vim-7.4.tar.bz2
cd vim74
@slog2
slog2 / install-reviewboard on centos 6.7
Last active October 21, 2017 15:02
install-reviewboard on CentOS 6.7
# Installing ReviewBoard
#wget http://mirrors.nl.eu.kernel.org/fedora-epel/6/i386/epel-release-6-8.noarch.rpm
#rpm -Uvh epel-release-6-8.noarch.rpm
#rm epel-release-6-8.noarch.rpm -f
yum install epel-release
yum install subversion
yum install pysvn
yum install libffi-dev