How do you use Netstat to find a Remote IP address?

netstat basic command syntax

The netstat command is not limited to Linux. It can also be used on Windows and macOS to get information about network connections, routing tables, interface statistics, masquerade connections, and more. Netstat is quite helpful in listing network connections and further identifying the IP address …

Read more

How to Find Public IP Address from Hostname

getent Command to find hostname public ipaddress

We can use a few commands with server “hostname” to find the corresponding public IP address associated with that. Here are the ways to use the command line on Linux, Windows, or macOS to get the hostname IP address. Using the nslookup Command The first …

Read more

How to Check NIC Firmware Version in Linux

How to Check NIC Firmware Version in Linux

Without a Network Interface Controller (NIC), we cannot have connectivity to the network on our Linux system. Therefore, quickly knowing our NIC firmware version to update or install drivers and troubleshoot other network-related issues becomes essential, ensuring network hardware compatibility and optimal performance. So, to …

Read more

7 Ways to Check Firmware Version in Linux Command Line

Check Firmware Version in Linux Command Line

There are several ways to check the firmware or BIOS version on Linux, which helps troubleshoot hardware issues and is essential for keeping the system secure and up to date. In this article, we learn about the tools and commands to get our system’s firmware …

Read more

Command to Show Users in MySQL Database on Linux

Show All USERS in MYSQL Database server command

If you are a new MySQL Database, you must know the commands to get a complete list of all the current Database users. Although we can easily list the Databases on our system using the “SHOW DATABASE” command, there is no MySQL command like “SHOW …

Read more

How to Unzip and Extract a tar.gz File

Unzip and Extract a tar.gz File

Unzipping and extracting Tar.gz files is routine work for a system administrator or developer, so we’ve created a tutorial on extracting Tar.gz files easily using the command line. What is a tar.gz File? A tar.gz file combines TAR (Tape Archive) and GZ (Gzip) compression. Both …

Read more

How to Use Systemctl to List All Services in Linux

How to Use Systemctl to List All Services in Linux

The Systemctl utility manages Systemd processes. It consists of libraries, demons, and management utilities that replaced the SysV init daemon. You can use Systemctl to manage resources and services (start, stop, restart, enable, disable). Moreover, Systemctl checks service status to gain deeper insights into them. …

Read more

5 Commands to list IP Address Information on Ubuntu

5 Commands to get IP Address Information on Linux

If you are using a Linux distro without a graphical interface then to find the IP address you have to use the command line interface. Here in this article, we learn the multiple commands that can be used to get information about networking configuration. Finding …

Read more

How to Select a directory name during untarring?

Extract Tar with some different folder name

Learn how to select a folder name to extract Tar or Tar.gz compressed archives, so that it automatically saves the files in our desired location while extracting them. What is Untarring? As we know Tar is a popular command utility in Linux systems for Archiving …

Read more