| |
|
|
|
|
Linux tips and tweaksTest your internet connection using ping and hostIf you are having problems with your internet connection and you want to run a few tests to make sure that it is working OK, there are a couple of commands that you can type in at the Terminal that will help. The first is The The ping command keeps repeating itself until you tell it to stop by pressing Ctrl+C. When you stop it, you'll see the packet loss, which should be 0% because packets of data shouldn't go missing on the internet unless there's a problem. Interestingly, you can also see the time taken and it shows the minimum, maximum and average. These figures show how responsive the web server and your internet connection is. It's important for speedy communications, such as with online games. The other command, You can access a website faster by typing in an IP address because when you enter a URL into a web browser it sends a query to a DNS server to discover the IP address and then it uses the IP address to access the site. By entering the IP address directly, it cuts out a step and is therefore faster. However, IP addresses are impossible to remember, which is why we use URLs instead. But you could find out the IP address of a website and then bookmark it. The bookmark can have a friendly name, but instead of the URL it has the IP address. It'll shave a few millseconds off the time it takes to go there.
|