Proxmox Backup Server (PBS)
Aller à la navigation
Aller à la recherche
Installation du système de base
mkfs.ext4 /dev/sda1 mkswap /dev/sda2
aptitude install debootstrap debian-keyring debian-archive-keyring
mount /dev/sda1 /mnt
debootstrap --arch=amd64 buster /mnt http://ftp.fr.debian.org/debian
mount -o bind /proc /mnt/proc mount -o bind /dev /mnt/dev mount -o bind /sys /mnt/sys chroot /mnt
Éditez le fichier /etc/apt/sources.list
:
deb http://deb.debian.org/debian/ buster main contrib non-free deb-src http://deb.debian.org/debian/ buster main contrib non-free deb http://security.debian.org/ buster/updates main contrib non-free deb-src http://security.debian.org/ buster/updates main contrib non-free # buster-updates, previously known as 'volatile' deb http://deb.debian.org/debian/ buster-updates main contrib non-free deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free # anciennement backports # deb http://deb.debian.org/debian/ buster-backports main contrib non-free
Mettez à jour les paquets :
apt update apt upgrade
Installez les locales et la configuration de console :
apt install locales dpkg-reconfigure locales apt install console-data console-setup-linux console-setup dpkg-reconfigure console-data # from arch > french > latin9)
Définissez la zone horaire :
tzselect dpkg-reconfigure tzdata
Configurez votre /etc/fstab :
# <file system> <mount point> <type> <options> <dump> <pass> UUID=4b47c926-0e14-4076-9c17-637f0ec470aa / ext4 defaults,errors=remount-ro 0 1 UUID=50e94be2-cff4-43f9-a2f8-928a71fecea0 none swap sw 0 0
Installation du kernel
A l'écran Configuring grub-pc
, installez grub sur /dev/sda
OpenSSH
hostname -F /etc/hostname apt install openssh-server