It is possible to determine whether or not a specific port is open on a remote system by using tools such as nmap
or telnet
on a Linux system.
Luke Reynolds
Bash all arguments print
The purpose of this tutorial is to show how to print all of the arguments submitted from the command line in a Bash script on Linux. There are several different methods for doing this, as you will see in the examples below.
Linux ipconfig equivalent
As Windows users migrate over to a Linux system, one of the first questions that arises is “what is the ipconfig Linux equivalent command?”
How to check Ubuntu version
Being aware of your current Ubuntu version will help you know when it is time to update. It’s important to know the version of your Ubuntu Linux system, as LTS versions are released every 2 years, and interim versions every 6 months.
How to change to root user in Ubuntu 22.04
After installing Ubuntu 22.04, you will inevitably be logging into the root account, or using administrator privileges, quite frequently. That’s because installing or removing software, as well as configuring system settings, requires the use of the root account or sudo command.
How to open terminal in Ubuntu 22.04
The following tutorial will provide the reader with multiple methods of accessing the command line terminal window on Ubuntu 22.04 Jammy Jellyfish desktop.
How to install Steam on Ubuntu 22.04
The purpose of this tutorial is to show how to install and use Steam on Ubuntu 22.04 Jammy Jellyfish Linux. Steam is a digital video game distribution service available for many different platforms.
Creating a Redhat package repository
If your Red Hat server is not connected to the official RHN repositories, you will need to configure your own private repository which you can later use to install packages. The procedure of creating a Red Hat Linux repository is quite a simple task. In this article, we will show you how to create a local file Red Hat repository as well as a remote HTTP repository.
In this tutorial you will learn:
- How to use official Red Hat DVD as repository
- How to create a local file Red Hat repository
- How to create a remote HTTP Red Hat repository
Learning Linux Commands: awk
In the case of this article, the Learning Linux Commands: awk title might be a little misleading. And that is because awk
is more than a command, it’s a programming language in its own right. You can write awk
scripts for complex operations or you can use awk
from the command line. The name stands for Aho, Weinberger and Kernighan (yes, Brian Kernighan), the authors of the language, which was started in 1977, hence it shares the same Unix spirit as the other classic *nix utilities.
If you’re getting used to C programming or know it already, you will see some familiar concepts in awk
, especially since the ‘k’ in awk stands for the same person as the ‘k’ in K&R, the C programming bible. You will need some command-line knowledge in Linux and possibly some scripting basics, but the last part is optional, as we will try to offer something for everybody. Many thanks to Arnold Robbins for all his work involved in awk
.
In this tutorial you will learn:
- What does
awk
do? How does it work? awk
basic concepts- Learn to use
awk
through command line examples
Disable automount on Ubuntu
If you frequently use USB sticks or other USB storage devices, it may become annoying that they are automatically mounted whenever you insert them into your Ubuntu Linux system. This is especially the case with multi-partitioned USB drives.
How to install Spotify on Ubuntu 22.04
The purpose of this tutorial is to show how to install and use Spotify on Ubuntu 22.04 Jammy Jellyfish Linux. Spotify is a music streaming service available for many different platforms.
Install SSH server Ubuntu 22.04
SSH is the primary method of remote access and administration on Ubuntu 22.04 Jammy Jellyfish and other Linux systems. SSH is a client-server service providing secure, encrypted connections over a network connection. After installing Ubuntu 22.04, it may be one of the first things you want to configure.