-
-
Save sebkouba/f2a982ea1c2b658574dcc3da8de09de6 to your computer and use it in GitHub Desktop.
Install NMON - CentOS 7 64bit
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
# 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