
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

147 Views
Appending a line or string to a file is sometimes necessary to change the output without deleting the existing data. It is a valuable way to modify a file by adding several lines between the existing ones of a file. "append" means adding the data into a file without erasing currently available data. To append a line in the file, you can use various commands such as printf, echo, tee, cat, etc. Although appending a line is easy, many beginners always require clarification. So this tutorial will include the simple approaches for appending a non-existent line to a file. File ... Read More

3K+ Views
Sometimes, You need to connect your system on two different remote servers. In this condition, you can remove and troubleshoot connectivity issues by enabling debugging or verbose mode of these servers using the SSH command. By enabling the debugging mode in SSH, you can see the detailed information related to the SSH connection. You can also check the exchanged data between client and server. Using the -v option, you can run SSH in verbose mode. Running SSH in verbose mode prints debugging information about progress for authentication, debugging connections, or any configuration problems encountered. In this guide, we will explain ... Read More

2K+ Views
ELK Stack is one of the best tools to view and handle files in the ELK Stack or the Elastic Stack. This tool consists of E- Elasticsearch, L- Logstash, and K- Kibana, the three open-source tools. ELK Stack tools are used to process and analyze large amounts of data in real time. However, Beats is an open and independent platform for single-purpose data shippers. It sends data from hundreds or thousands of systems and machines to Elasticsearch or Logstash. ELK Stack is widely used in various industries, such as healthcare, finance, and IT, for troubleshooting, monitoring, and log analysis. So ... Read More

2K+ Views
Elementary OS, a Ubuntu-based Linux OS, offers a stable, fast, and beautiful experience. Linux is always confusing for Windows and macOS users due to various reasons, some of which are as follows − Windows and macOS have a more standardized GUI (Graphical User Interface) quite different from the Linux user interface. So it is difficult for the users to find the correct tools for their requirements The command line interface of Linux is quite different from that of Windows and macOS. That's why users are not able to use it widely. Sometimes Linux only supports less popular or newer ... Read More

3K+ Views
There are various commands in Linux to copy directories from one destination to another. In Linux, you can copy a directory recursively using the -R option with the cp command that copies the source directory, including all its files, to the destination. Conversely, sometimes we need to copy only the empty directory structure to a different target directory without copying its files from the source directory. It takes a long time if you copy the directory structure one by one without the files. In this case, you can use some commands in Linux to copy the empty directory structure directly ... Read More

2K+ Views
Changing the default shell in Linux is simple, it gives you the freedom to use any shell accordingly. The default shell of most Linux systems is 'bash, ' which you replace from any other shell such as sh, fish, dash, zsh, etc. There can be many reasons in Linux why you need to change your default shell; some of the main reasons are as follows − To disable or block normal user logins using a nologin shell. Change the default shell on a shared network to meet the user's specific demands. It is associated with many administrative rights. A ... Read More

251 Views
Introduction Slack has become a ubiquitous team chat tool for remote and distributed teams around the world. However, it's not the only option available. There are many great alternatives to Slack, both free and paid, that offer unique features and benefits to meet the needs of different teams. This article will explore the best Slack alternatives for team chat, highlighting both the pros and cons of each option to help you make an informed decision. Free Slack Alternatives If you're looking for a free team chat tool that can replace Slack, here are three great options to consider − Discord ... Read More

721 Views
Introduction Text editors are an essential tool for developers and programmers alike. They enable users to write and edit code with ease and efficiency, making it easier to create and maintain software applications. In this article, we will be discussing the best open source text editors available in 2023. Open source text editors are software programs that are freely available and can be modified by users to fit their specific needs. Using open source text editors has numerous benefits, including cost savings, flexibility, and a large community of users contributing to their development and support. Graphical User Interface (GUI) Text ... Read More

2K+ Views
Introduction Linux users often need a reliable music player that can handle various audio formats, import and export playlists, and provide an enjoyable listening experience. In this article, we will introduce you to the best music players for Linux, both open-source and proprietary, that are worth trying. We will learn about their details, benefits, and drawbacks of each player, along with a step-by-step guide on how to install and use them on your Linux system. Rhythmbox Rhythmbox is a popular and feature-rich music player for Linux. It is a simple and easy-to-use player that supports a wide range of audio ... Read More

354 Views
Introduction DNF is a package manager for RPM-based Linux distributions and it is a successor to Yum, another package manager. DNF stands for Dandified Yum and it was introduced in Fedora 18 as a replacement for Yum. The key benefits of using DNF over Yum are faster performance, better memory usage, and a more modern codebase. In this article, we will explore DNF commands for RPM package management in Linux. We will cover basic DNF commands, advanced DNF commands, managing repositories with DNF, updating and upgrading packages with DNF, and troubleshooting DNF. Basic DNF Commands DNF provides several basic commands ... Read More