Skip to content

Instantly share code, notes, and snippets.

@sebkouba
Forked from sunggun-yu/gist:4416430
Last active June 4, 2021 13:14
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save sebkouba/f2a982ea1c2b658574dcc3da8de09de6 to your computer and use it in GitHub Desktop.
Save sebkouba/f2a982ea1c2b658574dcc3da8de09de6 to your computer and use it in GitHub Desktop.
Install NMON - CentOS 7 64bit
# Get Root
sudo su
# Download NMON archive
cd /tmp
wget http://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_*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment