Category: Linux

How to secure a CentOS system

Comment out unwanted users and user groups vi /etc/passwd vi /etc/group Add immutable attributes to the following files to prevent unauthorized users from gaining permissions chattr +i /etc/passwd chattr +i /etc/shadow chattr +i /etc/group...

0

GParted Live 1.6 Stable Released: disk partitioning tool

GNOME Partition Editor (GParted) for creating, reorganizing, and deleting disk partitions. It uses libparted from the parted project to detect and manipulate partition tables. Optional file system tools permit managing file systems not included...

How to quickly free Ubuntu/Linux Mint disk space

In this article, I will introduce some simple methods and techniques to help you clean up the Ubuntu/Linux Mint systems and get more free space. Remove the packages that are no longer needed sudo...

MySQL Common Commands List

Here are the MySQL commands that we use often and are very useful. Log in to MySQL. If you connect to a remote database, you need to specify the hostname with the -h parameter....

[CentOS] How to compile and install Apache from source code

How to compile and install Apache from source code in CentOS Download the latest Apache version wget http://mirror.downloadvn.com/apache//httpd/httpd-2.4.41.tar.gz Install package yum install apr* gcc Compile and install tar -zxvf httpd-2.4.41.tar.gz cd httpd-2.4.41 ./configure –prefix=/usr/local/apache...

Fedora CoreOS is available for general use

In early 2018, Red Hat acquired CoreOS for $ 250 million, and in June announced the release of Fedora CoreOS. This distro becomes the new upstream release of CoreOS. Fedora CoreOS is a new...

Linux terminal shortcuts

There are many shortcuts in the Linux command line, such as Ctrl + l to clear the screen, Ctrl + C to interrupt the command, Ctrl + Z to pause the command, etc. After...