Rocky Linux minimal installs leave out many useful command-line tools by default. These packages help make your VPS easier to manage.
Disclaimer:
The tools listed in this guide are optional and intended for general server use. Enviroweb provides unmanaged VPS hosting and does not support or manage installed software. You are responsible for installing, configuring, and maintaining any software on your server.
Step 1: Log in to your VPS
Login using SSH or the console in your control panel.
Step 2: Install basic utilities
sudo dnf install curl wget unzip htop git -y
Tool breakdown:
- curl / wget: Download files or interact with external services
- unzip: Extract .zip archives
- htop: View system processes and usage
- git: Manage code repositories and deploy applications
These tools are safe and commonly used in most VPS environments.