Linux Articles

Page 46 of 134

How to Install VMware Player 7.1.2 on Ubuntu/Linux Mint

Sharon Christine
Sharon Christine
Updated on 17-Mar-2026 422 Views

VMware Workstation Player is a streamlined desktop virtualization application that runs one or more operating systems on the same computer without rebooting. Using VMware, we can easily interact and exchange data between applications running on the virtual machine and the desktop. It supports hundreds of guest operating systems whether they may be new or old. This article describes how to install VMware Player 7.1.2 on Ubuntu and Linux Mint systems. Prerequisites Before installing VMware Player, you need to install the Linux essential headers and build tools. These are required for compiling kernel modules that VMware uses. ...

Read More

Mastering Package Management system with Dpkg

karthikeya Boyini
karthikeya Boyini
Updated on 17-Mar-2026 319 Views

Dpkg is a low-level package management tool for Debian-based Linux systems. It provides direct control over package installation, removal, configuration, and querying through command-line parameters. Unlike higher-level tools like apt, dpkg operates directly on .deb package files and maintains the package database. Every dpkg command consists of one action parameter that tells dpkg what to do, along with optional flags that modify the behavior. Dpkg is the foundation upon which other package managers are built. Getting Help To view all available dpkg options and commands − dpkg --help This displays a comprehensive list ...

Read More

How to Install PlayOnLinux

Samual Sam
Samual Sam
Updated on 17-Mar-2026 589 Views

Wine is a compatibility layer that allows you to run Microsoft Windows applications on Linux and other UNIX-based operating systems (macOS, FreeBSD, Solaris). PlayOnLinux is a graphical frontend for Wine that simplifies the installation and configuration of popular Windows applications and games by automatically setting up Wine environments with the correct settings and dependencies. What is PlayOnLinux PlayOnLinux provides an intuitive interface that eliminates much of the complexity involved in configuring Wine manually. It includes: Automated Scripts − Pre-configured installation scripts for hundreds of Windows applications Multiple Wine Versions − Ability to use different Wine versions ...

Read More

How to Install Git on Linux

Samual Sam
Samual Sam
Updated on 17-Mar-2026 13K+ Views

Git is a popular open-source version control system that tracks changes in files and coordinates work among multiple developers. Unlike traditional version control systems like CVS or SVN, Git uses a distributed model where each developer has a complete copy of the project history. This article covers the basic steps for installing Git on Linux systems, configuring it, and creating your first repository. Git vs Traditional Version Control Systems Traditional version control systems store data as a list of files with changes made to each file over time. Git takes a different approach by thinking of data as ...

Read More

How to Format a Hard Disk on Linux OS

karthikeya Boyini
karthikeya Boyini
Updated on 17-Mar-2026 801 Views

In this article, we will learn how to format and configure a hard disk on Linux OS. When a new drive is installed and visible to the BIOS, it is automatically detected by the operating system. Disk drives are assigned device names beginning with hd or sd followed by a letter indicating the device order (e.g., /dev/sda, /dev/sdb). Detecting the New Hard Drive First, verify that the new drive is detected by listing all storage devices: # ls /dev/sd* /dev/sda /dev/sda1 /dev/sda2 /dev/sdb This output shows that /dev/sda is divided into two partitions (/dev/sda1 ...

Read More

How to Find out Linux Version currently Installed on your Machine?

Samual Sam
Samual Sam
Updated on 17-Mar-2026 361 Views

Are you new to Linux or Ubuntu? Do you want to know which version of Linux distribution is currently installed on your machine? This article explains various methods to identify your Linux distribution version and kernel information using simple command-line tools. Method 1: Using /etc/*-release Files The most comprehensive way to get distribution information is by examining the release files. Use the following command − $ cat /etc/*-release The sample output should be like this − DISTRIB_ID=Ubuntu DISTRIB_RELEASE=16.04 DISTRIB_CODENAME=xenial DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" NAME="Ubuntu" VERSION="16.04.1 LTS (Xenial Xerus)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 16.04.1 LTS" ...

Read More

How to Copy a File to Multiple Directories in Linux?

Samual Sam
Samual Sam
Updated on 17-Mar-2026 698 Views

Copying a file to multiple directories simultaneously is a common task in Linux system administration. This article demonstrates several efficient methods to copy a file to multiple target directories using command-line tools like cp, xargs, and find. Method 1: Using cp with xargs The most straightforward approach combines echo, xargs, and cp to copy a file to multiple directories in one command. Basic Syntax echo dir1 dir2 dir3 | xargs -n 1 cp file1 This command works by: echo outputs the directory names separated by spaces xargs -n 1 processes one ...

Read More

Reset Kali Linux Password

Ajay yadav
Ajay yadav
Updated on 17-Mar-2026 2K+ Views

Kali Linux is a Debian-derived Linux distribution designed for penetration testing and digital forensics, adopted by both hackers and security professionals. Users may find themselves unable to login due to a forgotten password or after installing Kali in a virtual environment or dual boot configuration. This article explains how to reset the Kali Linux password using the built-in recovery options. When locked out of the system, users typically encounter a login prompt where entering incorrect credentials results in access denial. Step-by-Step Password Reset Process Step 1: Access GRUB Boot Menu Reboot your Kali Linux ...

Read More

Run Linux Natively on Windows 10

Ajay yadav
Ajay yadav
Updated on 17-Mar-2026 559 Views

Microsoft has introduced the Windows Subsystem for Linux (WSL), which lets users run their favorite Linux distributions directly from Windows 10 without dual-booting or using a virtual machine. This feature bridges the gap between Windows and Linux environments, allowing developers and system administrators to use Linux tools natively on Windows. Limitations of Windows Subsystem for Linux While WSL is a significant step forward for Microsoft, it has some limitations in terms of full functionality. Specifically, WSL does not support AF_PACKET due to security restrictions. This means you won't be able to put a Wi-Fi adapter in promiscuous mode ...

Read More

Difference between Fedora and Red Hat

Mahesh Parahar
Mahesh Parahar
Updated on 17-Mar-2026 1K+ Views

Fedora and Red Hat Enterprise Linux (RHEL) are both Linux-based operating systems from the Red Hat ecosystem. Fedora is the free, community-driven distribution that serves as a testing ground for new technologies, while RHEL is the commercial, enterprise-grade distribution built for production environments. Fedora vs Red Hat Enterprise Linux Fedora • Free & Open Source • 6-month releases • Latest packages • Community support • Testing ground Red Hat (RHEL) • Commercial license ...

Read More
Showing 451–460 of 1,338 articles
« Prev 1 44 45 46 47 48 134 Next »
Advertisements