Category: TIPS

How to Fix DNS_PROBE_FINISHED_NXDOMAIN in Chrome (7 Options)

Article on How to Fix DNS_PROBE_FINISHED_NXDOMAIN.

In my case it was an issue due to the network outage. I checked the LOS and internet LEDs. Found LOS on and internet off. Contacted my Broadcom service provider and they fixed the issue. But initially I was not suspecting my internet and read this article. It was a good information to share.

Source: How to Fix DNS_PROBE_FINISHED_NXDOMAIN in Chrome (7 Options)

Using the Screen command

Screen command benefits

  • Can be used to launch multiple shells from a single SSH session.
  • Detach and re-attach from multiple ssh session.
  • Running process which can take more time and need session to be kept alive.
  • To keep the session alive without any network disruptions.

The command to create a screen session is

screen -t <screen name> -S <socket file name>

To detach a screen session

ctrl+a + d

To list the screen sessions

screen -ls

To reattach the screen session

screen -r <pid/name from the list>

Presume you lost the console where the screen was running before detaching the screen. You can detach and reattach using the below command

screen -dr <pid/name from the list>