Category Archives: My Linux

create nagios WEB user

htpasswd -s -c /usr/local/nagios/etc/htpasswd.users nagiosadmin

Posted in nagios | Comments Off on create nagios WEB user

nagios upgrade

Steps to Upgrade Nagios There are 2 ways of Backing up Nagios Taking a snapshot via vSphere (VMware) if it’s a VM. Follow the backup process defined below Backup Nagios Config and Plugins before proceeding The upgrade process wont overwrite … Continue reading

Posted in nagios | Comments Off on nagios upgrade

rootSCP linux

Copying file to host: scp SourceFile.ext user@host:directory/TargetFile.ext Copying file from host: scp user@host:folder/SourceFile.ext TargetFile.ext

Posted in command line of linux, My Linux | Comments Off on rootSCP linux

mount EX redhat on version.3

make ftp on /var/mnt then chmod 777 ftp then user command below mount -t smbfs -o username=ftpadmin,password=”your password”,workgroup=hd //platinum/hoingo /mnt/ftp

Posted in My Linux | Comments Off on mount EX redhat on version.3

Tar and Untar

How To Tar compressing: www/ directory: tar -pczf filename.tar.gz www/ “or” tar -pczf damon.tar.gz damon.doc How To UnTar untaring filename.tar.gz tar xvfz filename.tar.gz

Posted in My Linux | Comments Off on Tar and Untar