×


Blog


Top 4 Free and Open-Source Calendars

This article covers the best Open source calendars for Windows as well as Linux. There are many other high functioning and acclaimed Calendar applications such as GNOME Evolution that is most famous and offers many advanced features and set of tools, however, the platform is not available for any other paradigm except Linux. Similarly, Osmo is another great calendar application that offers enhanced capabilities but does not come for Windows or macOS.


Top 10 Free and Open-Source Music Players

This article covers the best music players for Linux.

RhythmBox, Clementine, Banshee, Audacious, DeaDBeeF, Amarok, and qmmp occupy our list of the best music players for Linux and its distributions and Windows platforms. Some players also support macOS, iOS, and Android, however, are mostly used and appreciated by Linux and Windows users.


Top 10 Free and Open-Source Games for Linux

This article covers the best Linux games which are free, open-source, and cross-platform compatible. The best games includes 0 A.D., Xonotic, Battle of Wesnoth, Astromenace, SuperTuxKart, Minetest, and Red Eclipse.


Top 10 Free and Open-Source Radio Players

This article covers the top ten best radio players which works in Linux. They enable users to store and mark different radio channels along with categorizing their music. The listed radio players are Gradio, Radio Tray, Tuner, Shortwave, Goodvibes, StreamTuner2, Tauon Music Box, QMPlay2, Olivia, and Rhythmbox. All the listed players are most acclaimed and best rated by many Linux users and reviewers around the globe and therefore, we believe, are the most capable and efficient radio players.


Mount a Drive on Linux - Best Method ?

This article covers the process of Mounting and unmounting a drive or an ISO image in Linux. After creating disk partitions and formatting them properly, you may want to mount or unmount your drives.

On Linux, mounting drives is done via mountpoints on the virtual filesystem, allowing system users to navigate the filesystem as well as create and delete files on them.


How to List Mounted File Systems and Linux Drives ?

To display all currently attached file systems we will type:

$ mount

By default, the output will include all of the file systems including the virtual ones such as cgroup, sysfs, and others. Each line contains information about the device name, the directory to which the device is mounted, the filesystem type and the mount options.


How to install NFS client on Ubuntu and Debian ?

NFS stands for Network File System. To mount an NFS share you'll need to have the NFS client package installed on your Linux system.

1. To install NFS client on Ubuntu and Debian, type:

$ sudo apt install nfs-common

2. To install NFS client on CentOS and Fedora:

$ sudo yum install nfs-utils


Ansible Roles and How to Use them in Playbooks

This article covers how to Create Roles and Use them in Ansible Playbooks. Ansible is a configuration management tool that is designed to automate controlling servers for administrators and operations teams. With Ansible you can use a single central server to control and configure many different remote systems using SSH and Python as only requirements. Ansible carries out tasks on servers that it manages based on task definitions. These tasks invoke built-in and community maintained Ansible modules using small snippets of YAML for each task.

However, playbooks can become complex when they are responsible for configuring many different systems with multiple tasks for each system, so Ansible also lets you organize tasks in a directory structure called a Role. In this configuration, playbooks invoke roles instead of tasks, so you can still group tasks together and then reuse roles in other playbooks. Roles also allow you to collect templates, static files, and variables along with your tasks in one structured format.