Linux Tutorials on the topic “shell”
-
Linux tload Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 2While there are a lot of UI-based tools in Linux that you can use to see a graphical representation of system load, the number of command line tools that do the same work is pretty less. One such utility is tload, which will be discussing in this tutorial.
-
Linux pushd and popd Command Tutorial for Beginners (3 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0Command line navigation in Linux is primarily done using the cd command. However, there are several tips and tricks that may enhance your Linux command line navigation experience. In this article, we will discuss two commands - pushd and popd - using some easy to understand examples.
-
Linux namei Command Tutorial for Beginners (5 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1On the Linux command line, you work with several types of files, for example, directories, symbolic links, and stuff like that. Sometimes, the requirement is to know more about individual elements in a path - what type of file it is, who is its owner, and more. Thankfully, there's an inbuilt Linux command line utility - dubbed namei - that lets you fetch this information.
-
-
Linux manpath Command Tutorial for Beginners (5 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0Man pages in Linux is the go to spot for first-level support when it comes to command line utilities. As most of you would know, you just write 'man [command-name]' and the corresponding man page pops up. But do you know the path where these man pages are searched for?
-
Linux lsattr Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1We recently discussed chattr, a command that you can use to change file attributes on a Linux file system. To list file attributes, there's a separate command, dubbed lsattr. In this tutorial, we will discuss this tool using some easy to understand examples.
-
Linux lsblk Command Tutorial for Beginners (8 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 3In Linux, block devices are special files that refer to or represent a device (which could be anything from a hard drive to a USB drive). So naturally, there are command line tools that help you with your block devices-related work. Once such utility is lsblk.
-
Linux colrm Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1If you primarily work on the Linux command line, text editing is likely one of the most frequent tasks that you may find yourself involved in. The colrm command in Linux lets you remove selected columns from a file.
-
Linux cut Command Explained for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0In Linux, if you want to print a file's content on stdout, the first command that comes to mind is cat. However, there may be times when the requirement is to remove certain part of the file and print only the rest of the content. You'll be glad to know there exists a tool - dubbed cut - that lets you do this.
-
Linux chrt Command Tutorial for Beginners (5 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0Processes form the core of a running Linux system. When a program converts into a process (which is when it's executed), a lot of attributes are set. Sometimes, you may want to change these attributes at runtime. There exists a command line tool chrt that lets you do this.
-
Linux chpasswd Command Tutorial for Beginners (5 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1Here at HowtoForge, we have already discussed the passwd command, which lets you change your account password on a Linux system. But what if you want to change passwords of multiple users in one go? Well, there exists a command - chpasswd - that lets you do this.