SSH, System Info & Network Commands: A Comprehensive Guide to Managing and Monitoring Your System

Linux Networking System SSH Commands Techhyme

In the world of command-line interfaces, mastering essential SSH (Secure Shell), system information, and network commands is crucial for efficient system administration, troubleshooting, and network monitoring. These commands empower users to securely connect to remote hosts, gather critical system information, and manage network-related tasks.

In this detailed article, we will delve into each of these commands, providing a comprehensive guide to help you navigate the world of command-line management.

SSH Commands: Secure Remote Connectivity

1. Connecting to a Remote Host:

The `ssh` command is used to establish a secure remote connection to a host as a specific user. The basic syntax is `ssh user@host`, where `user` is the username you want to log in as, and `host` is the remote machine’s address.

For instance, to connect to a remote server with the username “john” at IP address “192.168.0.100,” you would use `ssh john@192.168.0.100`.

2. Specifying a Different Port:

If your SSH server is running on a non-standard port, you can use the `-p` option to specify the port number.

For example, `ssh -p 2222 john@192.168.0.100` will connect to the host using port 2222 instead of the default port 22.

3. Setting Up Passwordless Login:

The `ssh-copy-id` command is used to add your SSH public key to a remote host, allowing you to log in without entering a password each time. The command is used as follows: `ssh-copy-id user@host`.

After running this command, you should be able to log in to the remote host without a password prompt.

System Information Commands:

1. Displaying Your Username:

The `whoami` command simply returns your username, displaying the currently logged-in user.

2. Switching User:

To switch to a different user, you can use the `su` command followed by the desired username. For instance, `su john` switches to the user “john.” Using `su` without specifying a username will switch you to the root user, which may require using `sudo su –` for administrative access.

3. Executing a Command with Superuser Privileges:

The `sudo` command allows you to execute a command with superuser (root) privileges. Simply prepend `sudo` before the command you want to run with elevated permissions.

4. Changing Your Password:

The `passwd` command enables you to change your password. Upon running the command, you’ll be prompted to enter your old password and then set a new one.

5. Checking Disk Quota:

The `quota -v` command displays information about your disk usage and quota limits.

6. System Date and Time:

The `date` command shows the current date and time on your system.

7. Displaying the Calendar:

The `cal` command presents the calendar for the current month.

8. System Uptime:

To know how long your system has been running since the last reboot, you can use the `uptime` command.

9. Displaying Online Users:

The `w` command provides information about users who are currently logged in and what they are doing.

10. Viewing User Information:

Using the `finger` command followed by a username, you can display detailed information about a specific user.

11. Kernel Information:

The `uname -a` command shows information about the kernel running on your system, such as the kernel name, version, and architecture.

12. Accessing Command Manuals:

The `man` command followed by the name of a command shows its manual page, providing detailed information on its usage and options. For example, `man ssh` will display the manual for the `ssh` command.

13. Alternative Documentation System:

Apart from `man`, some commands are also documented using the `info` system. To access this information, use the `info` command followed by the command name. For example, `info ls` will show the documentation for the `ls` command.

Process Management Commands:

1. Viewing Running Processes:

The `ps` command allows you to list your processes. To see your processes, use `ps -u yourusername`.

2. Terminating Processes:

To terminate a process, you can use the `kill` command followed by the Process ID (PID) of the process you want to end. For example, `kill 1234` will terminate the process with PID 1234.

3. Killing Multiple Processes:

In situations where you need to terminate multiple processes simultaneously, you can use `killall` followed by the process name. For instance, `killall firefox` will terminate all running instances of the Firefox browser.

4. Displaying Active Processes:

The `top` command provides real-time information about currently active processes, their resource usage, and system statistics.

5. Listing Open Files:

The `lsof` command lists all open files on your system, showing which processes have them open.

Shell Job Control:

1. Background Jobs:

The `bg` command lists stopped or background jobs and resumes a stopped job in the background.

2. Foreground Jobs:

The `fg` command brings the most recent job in the foreground. Additionally, `fg <job>` brings a specific job to the foreground.

Network Commands:

1. Ping:

The `ping` command is used to check the reachability of a host on a network. Simply use `ping <host>` to initiate the process. It will send ICMP echo requests and display the results.

2. Whois Lookup:

To retrieve Whois information for a domain, use the `whois` command followed by the domain name. For example, `whois example.com`.

3. DNS Information:

The `dig` command retrieves DNS information for a domain. Using `dig <domain>` will provide you with various details, including the domain’s IP address. For reverse DNS lookup, use `dig -x <host>`.

4. File Download:

The `wget` command enables you to download files from the internet. Use `wget <file>` to initiate the download.

5. Network Statistics:

The `netstat` command is a powerful utility that displays network connections, routing tables, interface statistics, masquerade connections, and multicast memberships.

6. Measuring Command Execution Time:

The `time` command is used to report the time consumed by the execution of a command. For instance, `time ls` will show the time taken to list files in the current directory.

In conclusion, mastering SSH, system information, and network commands is essential for effective system administration, remote connectivity, and network management. These commands provide you with valuable insights into your system, help troubleshoot issues, and ensure a smooth and secure network environment.

Whether you are a beginner or an experienced user, having a strong grasp of these commands will significantly enhance your proficiency in the command-line interface and empower you to manage your system with confidence. Happy command-line adventures!

You may also like:

Related Posts

This Post Has One Comment

Leave a Reply