Forked from sebkouba/gist:f2a982ea1c2b658574dcc3da8de09de6
Last active
January 17, 2023 07:28
-
-
Save peteyan/3d7bb98b48412c91c571cd6000dc4701 to your computer and use it in GitHub Desktop.
Install NMON - CentOS 7 64bit
This file contains hidden or 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 --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