Bamdeb Ghosh has Published 28 Articles

How to Mount and Unmount Filesystems in Linux?

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 08-May-2023 11:33:30

6K+ Views

Introduction In Linux, everything (picture, binary file, text file, directory etc.) is treated as file. It is important to know how to organize and access files in a better way. Mount and umount commands are very handy in this case. In this article, we will learn these two commands. In ... Read More

How to Execute Programs From Anywhere in Linux?

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 08-May-2023 11:20:45

3K+ Views

Linux is a widely used open-source operating system that offers users the flexibility to execute programs from any location on the system. Unlike other operating systems, Linux does not have fixed program directories, enabling users to access programs from anywhere. This feature is advantageous for users who require a particular ... Read More

Renaming Linux Files in Batches

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 08-May-2023 11:19:56

188 Views

Introduction If we want to rename any file in Linux, we use “mv” command. But mv command can only rename one file at a time, it can not rename multiple files at one time in terminal. If we want to rename multiples files then we have to use mv command ... Read More

Working with Hidden Files in Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 08-May-2023 11:18:32

6K+ Views

Introduction Hidden files in Linux operating system are files that are not displayed when the ls command is executed. A hidden file's name begins with a dot. Not only files, but also directories, can be hidden in Linux. Files in Linux are hidden for a variety of purposes. One of ... Read More

How to Find Duplicate Files in Unix?

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 08-May-2023 11:16:26

2K+ Views

Introduction As we increasingly depend on digital media for storing our important files, we tend to accumulate a large number of files over time. It can be challenging to manage these files, particularly when we have multiple copies of the same file that can consume storage space. To solve this ... Read More

Working with the AWS CLI for EC2

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 08-May-2023 11:11:36

231 Views

Among the well-known cloud computing platforms is AWS (Amazon Web Services). Elastic Compute Cloud, or AWS EC2, is a well-known Amazon service. The Amazon CLI (Command Line Interface) is a potent tool that enables users to interact with the EC2 service via the command line in order to effectively administer ... Read More

Guide to Linux jq Command for JSON Processing

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 13:58:48

13K+ Views

Introduction JSON (JavaScript Object Notation) is a popular data format used for exchanging information between applications. It is a lightweight and easy-to-understand. To process JSON data efficiently, Linux provides a command-line tool called jq. This powerful tool enables users to extract, manipulate, and transform JSON data with ease. With jq, ... Read More

Introduction to File Locking in Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 13:58:03

4K+ Views

Introduction File locking is a mechanism used to restrict access to a file to only one process or user at a time. It is essential in multi-user systems to avoid conflicts when multiple processes try to access the same file simultaneously. In Linux, file locking is implemented through the use ... Read More

Working with the AWS S3 CLI in Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:53:31

1K+ Views

Introduction AWS S3 (Simple Storage Service) is a reliable and scalable object storage service that is commonly used for storing and retrieving data across various industries. AWS S3 CLI (Command Line Interface) is a powerful tool that provides developers and system administrators with a command-line interface to interact with S3. ... Read More

Viewing Files in Linux Using cat, more, and less

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:51:41

2K+ Views

Introduction Sometime in Linux, we do not want to open a file using vi or vim to see the content of file. Instead, we can use other Linux commands like ‘cat’, ‘more’ and ‘less’. Depending on the user requirement, either cat or more or less command can be used. Though ... Read More

Advertisements