Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save peteyan/3d7bb98b48412c91c571cd6000dc4701 to your computer and use it in GitHub Desktop.
Save peteyan/3d7bb98b48412c91c571cd6000dc4701 to your computer and use it in GitHub Desktop.
Install NMON - CentOS 7 64bit
# Get Root
sudo su
# Download NMON archive
cd /tmp
wget --no-check-certificate https://sourceforge.net/projects/nmon/files/nmon16e_mpginc.tar.gz
# Untar archive
tar -xzvf nmon16e_mpginc.tar.gz
# Copy nmon file
cp nmon_x86_64_centos7 /usr/local/bin/
chmod a+x /usr/local/bin/nmon_x86_64_centos7
# Create symbolic link
ln -s /usr/local/bin/nmon_x86_64_centos7 /usr/local/bin/nmon
# tidy up tmp
rm -f nmon_*
-------------------
# 安装htop on centos
yum -y install epel-release
yum -y install htop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment