SELinux (Security-Enhanced Linux) is a Linux kernel security module that provides enhanced security for Linux systems. SELinux provides a mechanism for supporting access control security policies. This specifies how the processes communicate with each other and interact with the files. We never recommend disabling SELinux on your system, especially on production servers. For developer systems, you can disable it only if hampering your work due to its policies. SELinux Modes: SELinux has three modes to run as described below. The default SELinux runs in Enforcing mode on a Fedora Linux system. Enforcing – SELinux security policy is enforced. Permissive –…
Author: Rahul
TeamViewer is a powerful remote desktop and file sharing application that works with most operating systems and mobile devices. In order to commercialize the use of TeamViewer, you have to purchase a license. You can use it free for personal use only. An RPM package of Teamviewer is built by the official team and is available for installation on Fedora systems. You can download the package from its official website. This tutorial described how to install TeamViewer on the Fedora Linux system. Prerequisites Assuming, you have a running Fedora desktop system. Have access to the desktop environment with a sudo…
Remote Desktop Protocol (RDP) is a protocol that allows users to access desktops on remote systems. The XRDP service provides you a graphical login to the remote machines using Microsoft RDP (​Remote Desktop Protocol). The XRDP also supports two-way clipboard transfer (text, bitmap, file), audio redirection, and drive redirection (mount local client drives on the remote machines). This tutorial helps you to Install XRDP Server (Remote Desktop) on a Fedora Linux system. Also provides the instructions to install a Desktop environment on your system. Step 1 – Install Desktop Environment Fedora workstation comes with a default desktop environment. In case…
In Google account, enabling the Less secure apps feature can make it easier for hackers to get into your account. Generally, Gmail users enable this feature while using their account for sending email over Google STMP servers. We never recommend enabling this but in some cases, it’s necessary to enable less secure apps in a Gmail account. You can enable “less secure apps” settings either using a domain administrator account or from your email account settings. This tutorial covers both ways of enabling “less secure apps” in a Gmail account. Turn On less secure apps in Mailbox Sign in to…
Fedora, known for its cutting-edge features in the Linux world, also emphasizes security and efficient system administration. One of the key practices in administering a Fedora system is the use of sudo, which stands for “superuser do!”. Sudo allows a permitted user to execute a command as the superuser or another user, as specified in the /etc/sudoers file. This mechanism provides a fine balance between accessibility and security, essential for managing privileged operations. Creating a sudo user in Fedora involves a few straightforward steps, ensuring that system administration tasks can be performed safely without direct root access. Here’s how to…
Remote Desktop Protocol allows users to access remote systems desktops. The XRDP service provides you a graphical login to the remote machines using Microsoft RDP (​Remote Desktop Protocol). The XRDP also supports two-way clipboard transfer (text, bitmap, file), audio redirection, and drive redirection (mount local client drives on the remote machines). XRDP is an easy-to-install and configurable service for Ubuntu systems. But you can also use a VNC server to access the remote desktop of the Ubuntu systems. Find a tutorial to install a VNC server on Ubuntu 20.04 systems. This tutorial helps you to Install Remote Desktop (XRDP) on…
Updates are essential in any operating system environment because it allows application, processes and the operating system itself to be in a consistent working condition. That’s also the reason that most of the updates include security compatibility and enhancements. Why are security updates so important to install? Your computer’s vulnerabilities are fixed with the help of security updates. These updates protect your system from local and remote threats. When developers found any vulnerability, they try to fix it quickly and then distribute the “quick fix” as a security update for you to install it as soon as possible. As those…
Now that we’re halfway through the year, it’s the perfect moment to explore the standout Linux distributions of 2024. Linux, an open-source operating system, is built on the Linux Kernel and incorporates GNU shell utilities, a desktop environment, applications, a package management system, and an X server. Its popularity eclipses other operating systems, thanks to its versatility, security, user-friendliness, and variety. Linux caters to a broad spectrum of users with its myriad versions, each tailored to specific needs and work preferences. These versions, known as distributions, are freely available, underscoring their open-source nature. 10 Best Linux Server Distributions 5 Most…
Laravel is an open-source PHP web framework, designed for the faster development of web applications. It is based on the Symfony framework, follows the model–view–controller architectural pattern. At the time of writing this tutorial, Laravel 8 is the latest stable version available. The Laravel comes with a powerful command-line utility known as Artisan. Which is useful to perform multiple command-line operations. This guide will help you to set up a new Laravel application on a Ubuntu Desktop system. Step 1 – Set Up LAMP Stack First of all, you need to set up the LAMP stack on your Ubuntu system.…
Wget is a free command-line utility for downloading files from the remote server. It supports HTTP, HTTPS, and FTP protocols, as well as follows the HTTP proxies servers. The default wget download files under the current working directory. In this tutorial, we will describe you to how to download files to a specific directory using wget. Using wget -O Option Use -O or –output-document=FILE option will truncate FILE immediately, and all downloaded content will be written to FILE. Here the wget -O FILE http://path is intended to work like wget -O – http://path > FILE; For example: wget -O /tmp/Ubuntu.iso…