-
Re: How to know when time zone has changed and when timezone will change in linux
The above command will give the list of dates when timezone changes, you can also try another command in linux. timedatectl status This will output all the details you need on timezone Local time: We… (View Post)1 -
Adding LISTEN, WHISPER, BARGE to ASTERISK for SIP and PJSIP
For the purpose of this article, we will define manager as the caller who is the spying channel, agent who is the spied-on channel, and client who is the bridged channel / 3rd party. We define listen… (View Post)1 -
Re: PostgreSQL : failed: FATAL: no pg_hba.conf entry for host
First look for pg_hba.conf , you can use locate command to do so locate pg_hba.conf Then edit the file on your favorite editor vi /var/lib/pgsql/9.6/data/pg_hba.conf Add the following line to the fil… (View Post)1 -
Monitor Log Files in Real Time using tail
tail Command – Monitor Logs in Real Time As said, tail command is the most common solution to display a log file in real time. However, the command to display the file has two versions, as illustrate… (View Post)1 -
Re: Disable "Changes you made may not be saved" pop-up window
The message is the beforeunload event. And I can disable it with window.onbeforeunload = null; (View Post)1
Howdy, Stranger!