VirtualBox is a popular virtualization software package that can be used to run virtual machines on your computer. In this article, you will learn how to install VirtualBox on Fedora, a free and open-source Linux operating system. If you’ll use VirtualBox for personal or educational purposes, installing it on Fedora is simple and easy. VirtualBox is also available in most of the popular Linux distributions such as Red Hat Enterprise Linux (RHEL), CentOS, Ubuntu, Debian, Oracle VM, SUSE, and many others. In this article, we will see how to install and use VirtualBox 7.0 on Fedora Linux. The VirtualBox 7.0…
Author: Rahul
PHP 7.3 is the latest stable release available for the installation. This tutorial will help you with the installation of PHP latest version on your Debian system. Now follow this tutorial to Install PHP on Debian 10, Buster. Debian 10 is still under development. So this tutorial is tested with Debian 10 daily build version. Prerequisites Login to your Debian 10 system using shell access. For remote systems connect with SSH. Windows users can use Putty or other alternatives applications for SSH connection. Run below commands to upgrade the current packages to the latest version. sudo apt update sudo apt…
Oracle VirtualBox 6.1.10 has been released on June 05, 2020. Oracle VirtualBox 6.1 is the latest major release after launched by Oracle team. You can read the ChangeLog to know more about changes in newer version’s of VirtualBox. This tutorial will help you to install VirtualBox on Ubuntu 18.04 LTS Bionic Beaver Linux systems. Step 1 – Prerequisites Login to your Ubuntu 18.04 desktop system with sudo privileged user. After login to your system update current packages of the system to the latest version. sudo apt update sudo apt upgrade Step 2 – Setup Apt Repository Now, import the Oracle…
This tutorial will help you to enable PHP errors to display on the web browser. This is helpful for debugging purpose. First of all, enable display_errors parameter in your php.ini configuration file. display_errors = on Then, add the following code to your the application PHP script. For example, add this code to your index.php or other default load script.
1 2 3 4 5 | <?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); |
Here is a sample index.php with enabled error to display on browser.
Docker is a container-based virtualization platform that has revolutionized the way developers build, deploy, and manage applications. It simplifies the process of creating, deploying, and managing containers on multiple operating systems. In this article, we will discuss how to install and use Docker on Fedora, one of the most popular Linux desktop distributions. Installing Docker on Fedora The Docker team provides an official repository containing the Docker engine RPM packages. You just need to configure the RPM repository on your system to install the Docker engine. Remove all the existing installed Docker packages from your system. The following command will…
This tutorial will help you to create SFTP only user (without ssh access) on CentOS and RedHat systems. The user can connect the server with SFTP access only and allowed to access the specified directory. Users can’t SSH into the server. Follow the below tutorial to create sftp only account. Step 1 – Create Account First of all, create a user account to use for sftp access. Below command will create user named sftpuser with no shell access. sudo adduser –shell /bin/false sftpuser sudo passwd sftpuser Step 2 – Create Directory Now, create the directory structure to be accessible by…
If you’re looking to create a mobile app, Ionic Framework is a powerful and popular option that can help you build cross-platform applications with ease. In this article, we’ll walk you through a step-by-step guide to installing and getting started with Ionic Framework on Linux Mint. Step 1: Install Node.js and NPM Before installing Ionic Framework, you’ll need to install Node.js and NPM. These are required for running the framework. To install them, open the terminal on your Linux Mint system and run the following commands to install Node.js and NPM: sudo apt-get install python-software-properties curl -sL https://deb.nodesource.com/setup_16.x | sudo…
This tutorial will help you to create SFTP only user (without ssh access) on Ubuntu systems. The user can connect the server with SFTP access only and allowed to access the specified directory. User can’t SSH into the server. Follow the below tutorial to create sftp only account. Step 1 – Create User First of all, create a user account to use for sftp access. Below command will create user named sftpuser with no shell access. sudo adduser –shell /bin/false sftpuser Step 2 – Create Directory for SFTP Now, create the directory structure to be accessible by sftp user. sudo…
When working with PHP, it’s often necessary to get the absolute path of a file or directory on the server. This is because some functions and scripts require the absolute path to work properly. In this article, we’ll explain what absolute paths are, why they are important, and show you several examples of how to get the absolute path in PHP. What is an Absolute Path? An absolute path is a complete path that starts from the root of the file system and includes all the directories and subdirectories needed to get to a specific file or directory. For example,…
Fedora is a popular, open-source Linux distribution developed by the Fedora Project and sponsored by Red Hat. It’s known for its cutting-edge features, security, and stability, making it a preferred choice for developers, system administrators, and desktop users alike. Fedora releases new versions approximately every six months, offering the latest and greatest in software and driver support. If you’re looking to download Fedora, the DVD ISO images provide a convenient way to install the operating system on your computer. Here’s everything you need to know about downloading Fedora DVD ISO images. Why Choose Fedora? Fedora stands out for several reasons:…


