What Is TTY and How To Use It In Linux?

What Is TTY and How To Use It In Linux?

TTY or Tele Type Writer is a device that is used to provide input into the destination system. TTY is a generic term that is used for different hardware and software for different systems. TTY History First TTYs are created in the 1830s with the name of teleprinters. Teleprinters were hardware devices that are used … Read more

How To Ignore and Disable SSL/TLS Certificates Check with Curl Command?

How To Ignore and Disable SSL/TLS Certificates Check with Curl Command?

SSL/TLS is used to encrypt and make secure HTTPS connections. While using the HTTPS web pages with the curl command you may get some SSL/TLS related warnings or errors. Experienced users generally look for –no-check-certificate option which is provided for wget to skip SSL/TLS certification checks. The curl command provides the -k or –insecure options … Read more

How To List Installed Packages In Ubuntu?

How To List Installed Packages In Ubuntu?

Ubuntu is a popular Linux distribution that uses *.deb packages. The package management can be done via different ways or tools like apt, apt-get, dpkg, GUI Package manager, etc. You may ask how can you list installed packages in Ubuntu for different cases by using different tools. List Installed Packages with apt Command The apt … Read more

How To Exclude Files and Directories In Rsync?

How To Exclude Files and Directories In Rsync?

The rsync is a command-line tool that is used to copy and synchronize files and folders over the network connection. It is very fast and versatile which makes it from other command-line tools. The rsync tool provides a lot of features for sync and copy operation where one of them is excluding files and directories. … Read more

Linux modprobe Command Tutorial – Load and Remove Kernel Modules

Linux modprobe Command Tutorial - Load and Remove Kernel Modules

The modprobe command can be used to load ad unload modules for the Linux kernel. By default the kernel modules are loaded and removed automatically by Linux. But this may not work in some cases or not suitable. modprobe Configuration Files Kernel modules are configured with diffrent configuration files. These configuration files used to load, … Read more

Linux history Command Tutorial

Linux history Command Tutorial

Linux command-line interface or bash is one of the most strong and popular parts of it. A regular system administrator spends a lot of his time on the terminal and types a lot of commands. Daily operations generally repeat where previously executed commands are generally executed again and again. The history command is used to … Read more

Linux lsof Command Tutorial with Examples

Linux lsof Command Tutorial with Examples

Linux is a file-based operating system where everything is a file. As a file-based operating system, there are a lot of tools and commands related to the files. The lsof command is used to find a list of opened files by a process. The name lsof comes from “LiSt of Opened Files”. The lsof command … Read more

ln Command In Linux (Create Symbolic Links)

ln Command In Linux (Create Symbolic Links)

The symbolic link is a connection to the specified file or folder in Linux. Also, the provided symbolic link points to the source file or folder. In this tutorial, we will try to explain the symbolic link with its types like soft link and hard link and how to create the link. Symbolic Link Types … Read more