Forked from sebkouba/gist:f2a982ea1c2b658574dcc3da8de09de6
Created
January 5, 2019 19:05
-
-
Save redcapua/7ffb72f5f187216f147bf9a0c6b9794d to your computer and use it in GitHub Desktop.
Revisions
-
sebkouba revised this gist
Nov 14, 2016 . 1 changed file with 9 additions and 9 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,17 +3,17 @@ 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_* -
sunggun-yu created this gist
Dec 31, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # Get Root sudo su # Download NMON archive cd /tmp wget http://nmon.sourceforge.net/docs/MPG_nmon_for_Linux_14a_binaries.zip # Install unzip if you don't have yum install unzip # Unzip archive unzip MPG_nmon_for_Linux_14a_binaries.zip # Copy nmon file cp nmon_x86_64_centos5 /usr/local/bin/ chmod a+x /usr/local/bin/nmon_x86_64_centos5 # Create symbolic link ln -s /usr/local/bin/nmon_x86_64_centos5 /usr/local/bin/nmon