by Anjani Phuyal | May 26, 2014 | Uncategorized
Change hostname from locations below: vi /etc/hostname vi etc/hosts restart the service sudo /etc/init.d/hostname.sh start
by Anjani Phuyal | May 26, 2014 | Uncategorized
How to disable Ethernet from boot time/permanently? for part one: you can also go into /etc/network/interfaces and comment out the line that reads Code: auto eth0 this will then stop eth0 from being activated aromatically at boot...
by Anjani Phuyal | May 26, 2014 | Linux, Mysql
apt-cache search zabbix sudo apt-get install zabbix-server-mysql zabbix-frontend-php zabbix-agent web interface: http://servername/zabbix default username/password is admin/zabbix
by Anjani Phuyal | May 26, 2014 | Linux
problem: ulimit: open files: cannot modify limit: Operation not permitted Current status: ulimit -n 1024 Solution: ulimit -n 16384 and refresh the system
by Anjani Phuyal | May 26, 2014 | Uncategorized
wget wget -q -O – checkip.dyndns.org|sed -e ‘s/.*Current IP Address: //’ -e ‘s/<.*$//’ That will return your local IP curl curl -s checkip.dyndns.org|sed -e ‘s/.*Current IP Address: //’ -e ‘s/<.*$//’ That one...