How do I perform a minimal installation of CentOS?
How do I perform a minimal installation of CentOS?
To perform a minimal installation of CentOS, follow these detailed steps:
- Download the CentOS ISO: First, download the CentOS ISO file from the official CentOS website. Ensure you select the appropriate version for your needs.
-
Create Bootable Media: Use a tool like Rufus (on Windows) or
dd
command (on Linux) to create a bootable USB drive or DVD from the ISO file. - Boot from the Media: Insert the bootable media into the system where you want to install CentOS and restart it. Enter the BIOS/UEFI settings to set the USB/DVD drive as the first boot device. Save changes and boot from the media.
- Start the Installation: Once booted, you will be presented with the CentOS welcome screen. Select your language and click "Continue".
- Select Installation Destination: In the "Installation Destination" section, choose the disk where CentOS will be installed. Ensure you select the appropriate disk to avoid data loss.
- Choose Minimal Installation: Go to the "Software Selection" section. Here, you will see different environment groups. Select "Minimal Install" under the "Base Environment" category. This option installs only the most essential packages needed to run CentOS.
- Configure Network & Time: Ensure your network is configured and set the correct time and date in the respective sections.
- Begin Installation: Click "Begin Installation". During the installation process, you can set the root password and create a user account.
- Complete Installation: Once the installation is complete, remove the installation media and click "Reboot System".
- Initial Boot: After rebooting, log in with the root account or the user account you created. Congratulations, you now have a minimal CentOS installation.
What are the benefits of choosing a minimal installation for CentOS?
Choosing a minimal installation for CentOS offers several benefits:
- Reduced Resource Usage: A minimal installation consumes less disk space and system resources, making it ideal for older hardware or systems where performance is a priority.
- Enhanced Security: With fewer installed packages, there are fewer potential vulnerabilities. This reduces the attack surface and makes the system more secure by default.
- Customization Flexibility: Starting with a minimal install allows you to build the system according to your specific needs, adding only the software you require.
- Easier Maintenance: Updating and maintaining a system with fewer packages is simpler and less time-consuming. There are fewer dependencies and conflicts to manage.
- Ideal for Servers: Minimal installations are particularly suitable for server environments where only specific services need to be run, ensuring efficient use of server resources.
- Faster Installation and Boot Times: The installation process is quicker, and boot times are faster due to the reduced number of services and applications starting up.
Can I customize the software selection during a minimal CentOS install?
Yes, you can customize the software selection during a minimal CentOS install to some extent. Here's how:
- During Installation: In the "Software Selection" section of the installation process, after selecting "Minimal Install", you can also add additional software under the "Additional software for Selected Environment" section. This allows you to select additional packages that you might need without deviating from the minimal install base.
-
Post-Installation: After completing the minimal installation, you can use package management tools like
yum
ordnf
to install additional software packages. This gives you complete control over what software is installed on your system, allowing you to tailor the system precisely to your needs. - Kickstart Files: For advanced users, you can use a Kickstart file to automate and customize the installation process, including specifying which packages to include or exclude during the install.
How do I manage software packages after a minimal CentOS installation?
After completing a minimal CentOS installation, managing software packages is straightforward using package management tools. Here's how you can manage software packages:
-
Using yum: CentOS 7 and earlier versions use
yum
as the package manager. Here are some common commands:-
Update all packages:
sudo yum update
-
Install a package:
sudo yum install [package-name]
-
Remove a package:
sudo yum remove [package-name]
-
Search for a package:
yum search [keyword]
-
List installed packages:
yum list installed
-
Update all packages:
-
Using dnf: CentOS 8 and later versions use
dnf
, which is similar toyum
but with some improvements. Commondnf
commands include:-
Update all packages:
sudo dnf upgrade
-
Install a package:
sudo dnf install [package-name]
-
Remove a package:
sudo dnf remove [package-name]
-
Search for a package:
dnf search [keyword]
-
List installed packages:
dnf list installed
-
Update all packages:
-
Repositories: To expand the available software, you can enable additional repositories. For example, to enable the EPEL (Extra Packages for Enterprise Linux) repository, use:
-
For yum:
sudo yum install epel-release
-
For dnf:
sudo dnf install epel-release
-
For yum:
-
Package Groups: You can also manage groups of related packages using:
-
List available groups:
yum group list
ordnf group list
-
Install a group:
sudo yum groupinstall [group-name]
orsudo dnf groupinstall [group-name]
-
Remove a group:
sudo yum groupremove [group-name]
orsudo dnf groupremove [group-name]
-
List available groups:
By using these tools and commands, you can effectively manage and customize the software on your minimally installed CentOS system.
The above is the detailed content of How do I perform a minimal installation of CentOS?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Backup and Recovery Policy of GitLab under CentOS System In order to ensure data security and recoverability, GitLab on CentOS provides a variety of backup methods. This article will introduce several common backup methods, configuration parameters and recovery processes in detail to help you establish a complete GitLab backup and recovery strategy. 1. Manual backup Use the gitlab-rakegitlab:backup:create command to execute manual backup. This command backs up key information such as GitLab repository, database, users, user groups, keys, and permissions. The default backup file is stored in the /var/opt/gitlab/backups directory. You can modify /etc/gitlab

Zookeeper performance tuning on CentOS can start from multiple aspects, including hardware configuration, operating system optimization, configuration parameter adjustment, monitoring and maintenance, etc. Here are some specific tuning methods: SSD is recommended for hardware configuration: Since Zookeeper's data is written to disk, it is highly recommended to use SSD to improve I/O performance. Enough memory: Allocate enough memory resources to Zookeeper to avoid frequent disk read and write. Multi-core CPU: Use multi-core CPU to ensure that Zookeeper can process it in parallel.

The CentOS shutdown command is shutdown, and the syntax is shutdown [Options] Time [Information]. Options include: -h Stop the system immediately; -P Turn off the power after shutdown; -r restart; -t Waiting time. Times can be specified as immediate (now), minutes ( minutes), or a specific time (hh:mm). Added information can be displayed in system messages.

On CentOS systems, you can limit the execution time of Lua scripts by modifying Redis configuration files or using Redis commands to prevent malicious scripts from consuming too much resources. Method 1: Modify the Redis configuration file and locate the Redis configuration file: The Redis configuration file is usually located in /etc/redis/redis.conf. Edit configuration file: Open the configuration file using a text editor (such as vi or nano): sudovi/etc/redis/redis.conf Set the Lua script execution time limit: Add or modify the following lines in the configuration file to set the maximum execution time of the Lua script (unit: milliseconds)

The key differences between CentOS and Ubuntu are: origin (CentOS originates from Red Hat, for enterprises; Ubuntu originates from Debian, for individuals), package management (CentOS uses yum, focusing on stability; Ubuntu uses apt, for high update frequency), support cycle (CentOS provides 10 years of support, Ubuntu provides 5 years of LTS support), community support (CentOS focuses on stability, Ubuntu provides a wide range of tutorials and documents), uses (CentOS is biased towards servers, Ubuntu is suitable for servers and desktops), other differences include installation simplicity (CentOS is thin)

Improve HDFS performance on CentOS: A comprehensive optimization guide to optimize HDFS (Hadoop distributed file system) on CentOS requires comprehensive consideration of hardware, system configuration and network settings. This article provides a series of optimization strategies to help you improve HDFS performance. 1. Hardware upgrade and selection resource expansion: Increase the CPU, memory and storage capacity of the server as much as possible. High-performance hardware: adopts high-performance network cards and switches to improve network throughput. 2. System configuration fine-tuning kernel parameter adjustment: Modify /etc/sysctl.conf file to optimize kernel parameters such as TCP connection number, file handle number and memory management. For example, adjust TCP connection status and buffer size

Permissions issues and solutions for MinIO installation under CentOS system When deploying MinIO in CentOS environment, permission issues are common problems. This article will introduce several common permission problems and their solutions to help you complete the installation and configuration of MinIO smoothly. Modify the default account and password: You can modify the default username and password by setting the environment variables MINIO_ROOT_USER and MINIO_ROOT_PASSWORD. After modification, restarting the MinIO service will take effect. Configure bucket access permissions: Setting the bucket to public will cause the directory to be traversed, which poses a security risk. It is recommended to customize the bucket access policy. You can use MinIO

Steps to configure IP address in CentOS: View the current network configuration: ip addr Edit the network configuration file: sudo vi /etc/sysconfig/network-scripts/ifcfg-eth0 Change IP address: Edit IPADDR= Line changes the subnet mask and gateway (optional): Edit NETMASK= and GATEWAY= Lines Restart the network service: sudo systemctl restart network verification IP address: ip addr
