Results for “CentOS

How to Install the Latest Node.js on CentOS 7 Using Yum

First, check the available versions on the website below (newer versions are generally listed): https://github.com/nodesource/distributions/tree/master/rpm Then run the following in the terminal (using Node.js 12 as an example): curl –silent –location https://rpm.nodesource.com/setup …

How to Connect to CentOS 7 via Windows MSTSC

Xrdp is an open-source tool that allows users to access a Linux remote desktop via Windows RDP. In addition to Windows RDP, the xrdp tool also accepts connections from other RDP clients such as FreeRDP, rdesktop, and NeutrinoRDP. Xrdp now supports TLS security layer.

Installation:
yum – …

How to Install Chinese Language Pack for Firefox on CentOS 7 Linux

How to Install Chinese Language Pack for Firefox Browser
1. Install Chinese Language Support on the System
yum groupinstall chinese-support
If prompted that it is not found, use the following command:
yum groupinstall "fonts"

2. Chinese Language Add-on

Go to the top right corner: Add-ons -> Extensions -> Search for the following package and install it …

How to Install Xfce on CentOS 7

Xfce (XForms Common Environment), first released in July 2007, is a lightweight desktop environment for various Unix-like operating systems, similar to the commercial graphical environment CDE. The original author, Olivier Fourdan, initially designed XFce based on the XForms 3D graphics library. The design goal of Xfce was to improve…

CentOS Kernel Upgrade and BBR Enablement Guide

Note: For OpenVZ machines, please disregard this tutorial as the kernel version cannot be changed.

Check kernel version: uname -r
Upgrade kernel: rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -Uvh http://www.elrepo.org/elrepo-release- …

CentOS 8 Stable Release Announced

CentOS 8 has been officially released. CentOS fully complies with Red Hat’s redistribution policies and is committed to being functionally compatible with the upstream product. Modifications to components in CentOS primarily involve the removal of Red Hat’s trademarks and artwork. This release also introduces the new CentOS Streams, CentOS …

How to Configure CentOS 7 Firewall

# How to Open a Port for a Specific IP Using firewall-cmd –permanent –add-rich-rule=”rule family=”ipv4″ source address=”192.168.142.166″ port protocol=”tcp” port=”6379″ accept” # Open for a specific IP firewall-cmd –perm …

CentOS 7 Partition Size Adjustment

After setting up a system, the root partition size may sometimes not meet our needs and requires resizing. After resizing, everything under /home will be lost, so be sure to back up. df -h #Check system partition sizes. Here, the / root partition is 50G and /home is 66G. For this experiment, we will resize the / partition to 60G …