Articles by Himanshu Arora
-
Download Files with Wget on the Linux Shell - Explanation and Examples
Author: Himanshu Arora • Tags: linux, shell • Comments: 1Are you a Linux newbie? Are you looking for a command line tool that can help you download files from the Web? If your answer to both these questions is yes, then you've come to the right place, as in this tutorial, we will discuss the basic usage of the WGET command line utility.
-
10 Practical Examples of Linux Cal/NCal command for Beginners
Author: Himanshu Arora • Tags: linux, shell • Comments: 4If you want to quickly view a calendar on terminal in Linux, then cal is the command line tool that you should be using. By default the command displays the current month in output.
-
Understanding the difference between sudo and su command on Linux
Author: Himanshu Arora • Tags: linux, shell, ubuntu • Comments: 5In this article, we will discuss in detail the 'su' command as well as how it differs from the 'sudo' command. The main work of the su command is to let you switch to some other user during a login session. In other words, the tool lets you assume the identity of some other user without having to logout and then login (as that user).
-
-
Linux id Command Tutorial for Beginners (5 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1If you are new to system administration in Linux, you will gradually learn that user management is an important aspect of your work. The Linux command line offers several command-line utilities for this purpose, and one of them is the id command.
-
Linux chage Command Tutorial for Beginners (6 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 0Linux command line offers several tools for user management (some of which we've already discussed). One such utility is chage, which lets you tweak password expiry information.
-
Linux rename Command Tutorial for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 4If you work with files on the command line in Linux, renaming files is one of the most frequent tasks you may find yourself involved in. We've already discussed the mv command that lets you do this. And here, in this tutorial, we will discuss another such tool, dubbed rename.
-
Linux timeout Command Explained for Beginners (with Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1Sometimes, when you execute a command in Linux, you might want to run it for a set amount of time. There exists a command line utility - timeout - that's specifically developed for this purpose.
-
Linux uptime Command Explained for Beginners with Examples
Author: Himanshu Arora • Tags: linux, shell • Comments: 2If you are a Linux newbie, and have interest in system administration, or you want to become a power user, then you need to have a solid knowledge of the command line. In this article, we will discuss the basics of the uptime command using some easy to understand examples.
-
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.
-
Linux C programming tutorial Part 28 - Typedefs
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 0In this tutorial - which is part of the ongoing C programming tutorial series - we will discuss the concept of typedef. As the name suggests (think of typedef as type+def), typedef is a C provided facility to define new names for existing data types.