Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Open Source Articles
Page 72 of 123
3 Ways to Create Bootable Ubuntu USB Startup Disk
Ubuntu is a popular Linux-based operating system known for its security, stability, and ease of use. One of the easiest ways to try Ubuntu without installing it permanently is by creating a bootable USB startup disk. This article covers three reliable methods to create a bootable Ubuntu USB drive across different operating systems. Method 1: Using Rufus on Windows Rufus is a free, open-source tool specifically designed for creating bootable USB drives on Windows systems. It's lightweight, fast, and supports various file systems and partition schemes. Step-by-Step Process Step 1 − Download the Ubuntu ISO ...
Read More3 Ways to Install Atom Text Editor in openSUSE
Atom is a free, open-source text editor developed by GitHub that provides developers with a highly customizable coding environment. It features extensive plugin support, themes, and cross-platform compatibility across Windows, macOS, and Linux distributions. This article demonstrates three different methods to install Atom text editor on openSUSE Linux distribution. Method 1: Using openSUSE Package Manager (Zypper) The zypper package manager is openSUSE's native tool for installing software from official repositories. This is the most straightforward method for installing Atom. Installation Steps Step 1 − Open the terminal by pressing Ctrl+Alt+T or searching for "Terminal" in the ...
Read More3 Ways to Install Skype in Fedora Linux
Skype is one of the most popular video conferencing and instant messaging applications in the world. It is a great tool for both personal and professional communication, allowing users to connect with people all over the globe. If you are a Fedora Linux user, you may be wondering how to install Skype on your machine. In this article, we will cover three ways to install Skype in Fedora Linux, including using the RPM package, using the Snap package, and using the Flatpak package. Method 1: Installing Skype with RPM Package The RPM (Red Hat Package Manager) package is ...
Read MoreFinding the PID of the Process Using a Specific Port
In Linux systems, every running process is assigned a unique Process Identification Number (PID) that distinguishes it from other active processes. Similarly, network connections are associated with specific port numbers that identify communication endpoints. System administrators often need to identify which process is using a particular port for network troubleshooting, security auditing, or resource management purposes. This article explores various command-line tools and techniques to find the PID of processes utilizing specific ports in Linux systems. Prerequisites To view detailed process information including PIDs and port usage, you typically need root privileges. Switch to root user using: ...
Read MoreGuide to the Linux read Command
The read command in Linux is a built-in shell command used to read input from the user, files, or other commands. It captures input and stores it in variables, making it essential for interactive scripts and automated data processing. The read command is commonly used in shell scripting to create user-friendly interfaces and process structured data. Basic Syntax and Usage The most basic use of the read command is to capture user input into a variable: read variable_name Simple Input Example $ read name Somdeb $ echo "Hello $name" ...
Read MoreGuide to Useful File Manipulation Commands
File manipulation commands are essential tools for navigating, managing, and manipulating files in Unix/Linux systems. Whether you're a software developer, system administrator, or regular user, mastering these commands will significantly improve your productivity and efficiency when working with files through the terminal. This guide covers the most commonly used file manipulation commands that every user should know. These commands form the foundation of file management in command-line environments and are crucial for effective system administration and daily computing tasks. Using ls to List Directory Contents The ls command displays the contents of a directory. By default, it ...
Read MoreHow do I Zip/Unzip on the Unix Command Line
Zipping and unzipping files is a fundamental practice in Unix/Linux systems for file compression and archiving. We compress files to save disk space and bundle multiple files into a single archive for easier transfer and storage. When working with compressed archives, understanding both compression and extraction commands is essential for effective file management in Unix environments. Installing zip and unzip Commands First, ensure that the zip and unzip utilities are installed on your system: sudo apt install zip unzip Basic zip and unzip Operations Let's start with creating some sample files to ...
Read MoreIntroduction to File MIME Types on Linux
MIME types (Multipurpose Internet Mail Extensions) are a crucial aspect of Linux file management, as they enable the operating system to identify file formats and determine the appropriate program for opening each file. Understanding MIME types is beneficial when dealing with various file formats on Linux systems, enhancing productivity and improving the overall user experience. What are MIME Types? MIME types are standardized identifiers that describe the nature and format of files. They consist of a type and subtype separated by a slash, such as text/plain or image/jpeg. Linux uses these identifiers to associate files with appropriate applications ...
Read MorePipes and Redirection in Linux
Pipes and redirection are fundamental mechanisms in Linux that enable efficient command-line operations. The pipe operator (|) allows the output of one command to serve as input to another command, creating powerful command chains. Redirection operators (>, >>, >> Redirect output (overwrite) Redirect output (append) Redirect input (from file) Redirect errors (STDERR) Output Redirection ls > file.txt echo "text" >> file.txt ...
Read MoreViewing Files in Linux Using cat, more, and less
In Linux, we often need to view file contents without opening them in text editors like vi or vim. Three essential commands for file viewing are cat, more, and less. Each command serves different purposes depending on file size and viewing requirements. The cat command displays entire file content at once, while more and less provide paginated viewing for larger files. The cat Command The cat (concatenate) command is the most straightforward way to display file contents. It reads and displays the entire file content on the terminal screen. Basic File Viewing To display the complete ...
Read More