Jump to content

Debian with Proxmox: Difference between revisions

From Wiki
Marcluer (talk | contribs)
mNo edit summary
Marcluer (talk | contribs)
mNo edit summary
Line 1: Line 1:
== Why not the Proxmox Installer? ==
== Why not the Proxmox Installer? ==
* The Proxmox installer does not allow for manual partitioning and wipes the whole disk
* The Proxmox installer does not allow for manual partitioning and wipes the whole disk
* The Debian allows manual partitioning
* Debian allows manual partitioning


== Installation of Debian ==
== Installation of Debian ==
* https://www.debian.org/download.en.html
* https://www.debian.org/download.en.html
** AMD64 netinst
** AMD64 netinst
** (Non-graphical) Install (Non-expert)


== Config basics ==
== Config basics ==
Line 13: Line 14:
apt upgrade
apt upgrade
apt install sudo mc nmap powertop fail2ban  
apt install sudo mc nmap powertop fail2ban  
</pre>
* sudo visudo
<pre>
%sudo  ALL=(ALL:ALL) ALL
marcluer ALL=(ALL) NOPASSWD: ALL
</pre>
</pre>



Revision as of 11:36, 8 October 2025

Why not the Proxmox Installer?

  • The Proxmox installer does not allow for manual partitioning and wipes the whole disk
  • Debian allows manual partitioning

Installation of Debian

Config basics

su
apt update
apt upgrade
apt install sudo mc nmap powertop fail2ban 
  • sudo visudo
%sudo   ALL=(ALL:ALL) ALL
marcluer ALL=(ALL) NOPASSWD: ALL
  • /etc/network/interfaces
allow-hotplug enp2s0
iface enp2s0 inet static
    address 192.168.111.11/24
    gateway 192.168.111.1
  • /etc/resolv.conf
domain local
nameserver 192.168.111.1
  • /etc/hosts
127.0.0.1       localhost
192.168.111.10  proxmox.local  proxmox

Install proxmox