Initial Configuration
Overview
After installing Proxmox VE, several important configuration steps are needed to ensure your environment is properly set up. This guide will cover some essential post-installation tasks.
Repository Configuration
One of the most important initial tasks is configuring your Proxmox VE repositories correctly. This ensures:
- Proper package management
- Access to security updates
- Removal of subscription warnings
- System stability
Post-Installation Script
We'll use the ProxmoxVE post-installation script to handle repository configuration automatically:
bash
bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/post-pve-install.sh)"
What This Script Does
The script will help you:
- Configure appropriate package repositories
- Disable the Enterprise repository if not needed
- Enable the No-Subscription repository
- Remove subscription notifications
- Update the system packages
Important
After running the script:
- Review the changes it suggests carefully
- Only apply the changes that make sense for your environment
- When prompted about updates, it's recommended to apply them
System Updates
After configuring repositories:
- Ensure all system packages are up to date
- Apply any pending security updates
- Reboot if required by kernel updates
bash
apt update && apt upgrade -y
Next Steps
With the basic system configuration complete, proceed to:
- Network Configuration - Set up network bridges for VM connectivity
- Firewall VM Setup - Create and configure your OPNsense firewall
Additional Resources
The ProxmoxVE Community Scripts project offers many other useful tools that you might want to explore after completing this guide.