Linux Tutorials on the topic “shell”
-
Linux ss Command Tutorial for Beginners (8 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1When it comes to accessing socket related information through the command line in Linux, the first tool that comes to mind is netstat. However, there's another utility that can do this work for you. It's called ss.
-
Sharing Linux Terminal Sessions With Tmux and Screen
Author: orange • Tags: linux, other, shell • Comments: 5Tmux and GNU Screen are well-known utilities which allow multiplexing of virtual consoles. Using either, it is possible to start a session, detach, move to a different machine and resume the session in uninterrupted progress. It's also possible to use these tools to share a single session between more than one user at the same time.
-
Linux Basics: How To Create and Install SSH Keys on the Shell
Author: howtoforge • Tags: linux, security, shell • Comments: 5SSH keys offer a highly secure manner of logging into a server with SSH as against mere dependence on a password. This tutorial shows you how to generate an SSH key pair by using the ssh-keygen command and how to configure the SSH Daemon to only allow logins by key.
-
-
Ansible AWX Guide: Basic Usage and Configuration
Author: Muhammad Arul • Tags: linux, server, shell • Comments: 2AWX is an open source web application that provides a user interface, REST API, and task engine for Ansible. It's the open source version of the Ansible Tower. In this tutorial, we will show you basic usage of the Ansible AWX.
-
How to Compile Brotli Compression Tool from Source on Fedora 29
Author: Blago Eres • Tags: fedora, linux, shell • Comments: 0Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding, and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods.
-
Linux zforce Command Tutorial with Examples
Author: Himanshu Arora • Tags: linux, shell • Comments: 0The gzip command is a popular tool used for compressing/decompressing files in Linux. We've already covered the basics of this tool here. This utility produces .gz files in output. But sometimes - like while transferring files - the extension may get chopped off. You'll be glad to know there exists a tool that you can use to force the .gz extension back to these compressed files.
-
Linux time Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 2Sometimes, when you're executing a program, you might want to know its system resource usage. Like how much time the process spent in kernel mode and user mode, and other info. Thankfully, there exists a tool - dubbed time - that's specifically built for this purpose.
-
Linux type Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0On the Linux command line, you'll come across several types of utilities. Some are an alias, while others are built-in tools and even functions. So, how do you check these types? Well, there exists a command 'type' that offers you this information.
-
Linux tree Command Tutorial for Beginners (6 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1It won't be wrong to say the ls command is the gold standard when it comes to listing directory contents on the Linux command line. However, there do exist some alternatives that have their own strong points when compared to ls. Once such tool is tree, basics of which we'll be discussing here in this tutorial.
-
Linux column Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 3Sometimes, while working on the command line in Linux, you might want to display the contents of a file in columnar format. You'll be glad to know there's a command line utility in Linux that lets you do this. The tool's name is column.