Tag: Linux

Changing the NTP server in Solaris or Linux.

Here is how you can change the NTP server’s information on your Solaris server. Edit /etc/inet/ntp.conf add the below line server ntp.paris.hilton.com You will now need to restart the NTP service. /etc/init.d/xntpd stop /etc/init.d/xntpd start The last thing you need…

Awk the swiss army knife of the Unix toolkit.

The awk command is very handy when you need to filter the contents of a file, a pipe,or keyboard. It searches each line of input for patterns that you specify and when the pattern is matched, it performs an action.…