PCS-Doc_ Proxmox Setup Guide v20220318
Install Proxmox
Installed Proxmox Using the following configuration
2 SAS drives 300GB in a Mirror and 2
Install Promox following the prompts on the CD, only in the choose where to install step, Select the 2 drives and create a ZFS Raid1 mirrorWhen I rebooted I ran into an error where it was stuck on (initrd)
1
zpool import -R / rpool
then pressed CTR-D
#### To make the change permanent, once it booted
1
2
echo -n " rootdelay=15" >> /etc/kernel/cmdline
pve-efiboot-tool refresh
Add repos and packages
- Run Updates, upgrade and install basics
- Add the no subcription repository for proxmox
Edit/etc/apt/sources.list.d/pve-enterprise.list
and insert these lines:1 2
# Proxmox no subscription deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
- Run Updates , upgrade and install basics ```bash apt update &&
apt dis-upgrade &&
apt install –yes net-tools sudo mc unzip screen iftop lshw sshfs make nfs-kernel-server sysstat smartmontools ethtool pv htop ntfs-3g git samba rpcbind libsasl2-modules neofetch ncdu vim tmux iperf3 archivemount fio kpartx
wget https://github.com/muesli/duf/releases/download/v0.8.0/duf_0.8.0_linux_amd64.deb && \
dpkg -i duf_0.8.0_linux_amd64.deb
1
2
3
4
5
6
7
8
### Disable Proxmox Suscription Notice
6. Edit the file
**# vi /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
** Then search for **“No valid subscription”** and replace on **line 507 or 473**
```javascript
Ext.Msg.show({
title: gettext('No valid subscription'),
With
1
2
void({ //Ext.Msg.show({
title: gettext('No valid subscription'),
Restart the service # systemctl restart pveproxy.service