Fedora Linux 19/20 Install Adobe Flash Player

Adobe Flash Player is not supported on Fedora Linux 19 and later versions due to security and stability issues. Instead, you can use browser plugins such as Pepper Flash or Gnash that support the same functionality. Here’s how you can install Pepper Flash on Fedora: Install the Adobe repository RPM: sudo rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm Install … Read more

CentOS and RHEL 7: Install Linux, Apache, MariaDB, PHP (LAMP) Stack

Here’s a step-by-step guide to install the LAMP (Linux, Apache, MariaDB, PHP) stack on CentOS and RHEL 7: Install Apache: sudo yum install httpd Start and enable the Apache service: sudo systemctl start httpd sudo systemctl enable httpd Install MariaDB: sudo yum install mariadb-server mariadb Start and enable the MariaDB service: sudo systemctl start mariadb … Read more

Linux Redirect Error Output To File

In Linux, you can redirect error output (stderr) to a file using the following syntax: command 2> file.txt For example, to redirect error output from the ‘ls’ command to a file named ‘error.txt’, you would use the following command: ls non-existent-directory 2> error.txt In this example, the error message generated by the ‘ls’ command, indicating … Read more

FreeBSD: (EE) Failed to load module “fbdev” (module does not exist, 0) Error and Solution

The error message “EE Failed to load module ‘fbdev’ (module does not exist, 0)” typically occurs when trying to start the X Window System on a FreeBSD system, and it indicates that the fbdev module, which is used to provide graphics support for the X server, is missing. To resolve this issue, try the following … Read more

CentOS / RHEL 7: Install GCC (C and C++ Compiler) and Development Tools

To install GCC (GNU Compiler Collection) and development tools on CentOS/Red Hat Enterprise Linux (RHEL) 7, follow these steps: Install the Development Tools package group: sudo yum groupinstall “Development Tools” This will install GCC, as well as other commonly used development tools such as make, automake, and others. Verify the installation by checking the version … Read more