
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1466 Articles for Linux

620 Views
Overview When working with SSH keys, it is important to keep them safe. We can protect ourselves against accidental deletion by storing them in an encrypted file. We can also make sure they aren’t compromised if someone tries to steal them by keeping them offline. For example, we could store them in a password protected folder on a USB drive. However, this isn’t the best way to do things. If you have multiple machines and want to copy your key from one machine to another, then there are better ways of doing that than copying the key files over. This ... Read More

1K+ Views
Overview We’ll go through some of the features available on the CPU installed on our computer’s motherboard. We’ll briefly look at the concept of virtual file systems before we dive into the details of the topic. Afterward, we’ll discuss the flags obtained from the /proc/cpuinfo virtual directory for different CPU manufacturers such Intel, AMD, and Arm. Virtual Files A virtual file system (VFS) is an abstraction layer that allows us to treat files as if they were stored on a disk drive. The VFS provides a way to access data without having to know where it actually resides. For example, ... Read More
2K+ Views
Abstract Linux terminal/Shell contains several instances where a dot (.) is utilized. When displayed in the output of a command, a dot would also convey some significance. This article will examine the various situations in which a dot is typically used in Linux and the additional locations where this might be shown. Double Dot (..) and Single Dot (.) Example $ ls -laxo Output Total 892 drwxr-xr-x 122 tutorial article 48 18 Dec 05:07 ./ drwxr-xr-x 54 tutorial article 4096 16 Dec 04:03 ../ -rw-rw-rw- 19 tutorial article 960 02 Dec 09:57 operations In the following example, we ... Read More
8K+ Views
Abstract It's challenging to envision what would happen if you couldn't control your computer remotely because remote access to computers has long been necessary. The best way to connect to a remote machine is by SSH for Linux-based machines. The SSH client application can be used to log into a distant computer or server and run commands on that computer. When a command is supplied, it is executed instead of a login shell on the remote host or server. Users frequently need to work with distant systems. which requires them to log into the remote server, carry out specific actions, ... Read More
1K+ Views
Abstract There are times when we need to determine whether a particular file type is present in a directory or not. For instance, we might want to check if a directory contains python files. Therefore, there are a few approaches such as ls, find, etc which we can use to determine whether there are python files in the directory. In this tutorial, we will review several approaches to check whether particular file types exist in a directory or not. ls command One of the most used commands in Linux is called "ls". It is used to display a list of ... Read More
494 Views
In this article, we are going to learn how to Diff a directory for only files of a specific type in Linux. Abstract In Linux, a frequently used operation is used for comparing files and identifying their differences. It is very helpful while comparing complicated code or in the configuration of files. Linux has a powerful built-in tool called diff that is used to compare directories It is error-free and also saves time. Here are a few examples that will help us learn how to apply these intriguing and adaptable commands, Diff command Using the Diff command, we can compare ... Read More
43K+ Views
Abstract Every file and folder in Linux has a path that directs the user to it. This path is required for programs and scripts to locate and access files. There are various ways to locate the path to a file or folder if you need to. We can get a full file path with different commands on a Linux machine. In other words, if its arguments were supplied, this command would return the pathnames of the files that would be run in the current context. In this tutorial, we'll show you how to obtain a file's complete path in Linux. ... Read More

360 Views
Introduction When it comes to getting started, maintaining efficiency and velocity, or improving team performance, Version Control Systems (VCS) can be a fundamental component for DevOps teams. As well as supporting the mechanical actions required by DevOps – tracking changes, documenting changes, merging data, and more – an effective VCS must also support the needs of the developers – intuitive command syntax, visibility into changes, etc. - since it is constantly used by developers. During the past decade, distributed VCS has gained widespread popularity, where copies of a single source of truth repository are shared - or cloned - out ... Read More

290 Views
Introduction Git is one of the most important tools. Not only does Git keep a history of projects, but it also makes collaboration easy between teams. Although it is such a valuable tool, it is often overlooked or underutilized. Clean Git history tells the story of a project and is easy to understand. The process of adding features and implementing them is evident. Clean Git histories are something I cherish on a project. The good news is, maintaining a clean history is not difficult. Here are some tips for achieving a clean history in git What is Git history The ... Read More

1K+ Views
Introduction In the field of distributed version control systems (DVCS), Git is the most widely used system for tracking changes over time and collaborating with other developers. Whether you're a team of software developers working on an enterprise project or a single programmer working on your local files, Git is an extremely powerful tool for software development. Creating a Git repository is the first step after installing Git. The goal of this article is to explain what a Git repository is, how it works, and how to create and configure one. What is a Git Repository A Git repository stores ... Read More