pimox / pimox7

Proxmox V7 for Raspberry Pi
1.75k stars 158 forks source link

apt warning debian 11 daily images #3

Open TuxfeatMac opened 3 years ago

TuxfeatMac commented 3 years ago

I've used the daily images from --> https://raspi.debian.net/daily-images/ <-- for my base install of debian 11

I get a warning from apt as soon as I add the second repo like the pimox.sh does --> Line 6: echo "deb http://deb.debian.org/debian bullseye contrib" > /etc/apt/sources.list.d/buster-contrib.list

aptwarning

Do you recommend using other images as base ?

BlackMix commented 3 years ago

Hi @TuxfeatMac first u need apt update and upgrade bullseye and comment that line

#! /bin/sh

apt install -y gnupg
curl https://raw.githubusercontent.com/pimox/pimox7/master/KEY.gpg | apt-key add -
echo "deb https://raw.githubusercontent.com/pimox/pimox7/master/ dev/" > /etc/apt/sources.list.d/pimox.list
# echo "deb http://deb.debian.org/debian bullseye contrib" > /etc/apt/sources.list.d/buster-contrib.list
apt update
apt install -y proxmox-ve

bullseye have contrib source.list as default

TuxfeatMac commented 3 years ago

Hi @BlackMix

TLDR, Using the latest image from --> https://downloads.raspberrypi.org/raspios_lite_arm64/images/ <-- updating them to 11 and then installing pimox7 indeed workes well =D

I've used the 11 / bullseye image from --> https://raspi.debian.net/daily-images/ <-- so no need to upgrade to 11, I think =)

I've tryed a "vanilla" debian 11 bullseye install, since I'm all so planing to give it a shot on the RockPi 4A 4GB and that would be the only option to get an Debian 11 running on this board I afaik ?

On the "vanilla" images (also tryed stable/tested) I've noticed some things not working so far:

I think it is related to some services not staring propperly like

Butt I haven't had motivation jet to figure out what is going in detail, as I noticed it is running smoothly on the RPiOS Images =D

BlackMix commented 3 years ago

hmmm, nice :) I got same problem few time ago with apparmor.. I think kernel pve not compiled for arm64..

so RpiOS can run pimox7, let me test tho, thanks

TuxfeatMac commented 3 years ago

what I've forgot to mention is that I've installed the raspberrypi-kernel-headers on the RPiOS64 bevore installing proxmox-ve.

Yes indeed your right.... on the "vanilla" installation I've forgot to install the linux-headers bevore installing proxmox-ve.... my fault... and it was not using the pve kernel...

Maybe I give it a nother try the next days =D

vonloschz commented 3 years ago

Pull request made https://github.com/pimox/pimox7/pull/4

hyacin75 commented 3 years ago

On the "vanilla" images (also tryed stable/tested) I've noticed some things not working so far: \<snip>

  • CT's

I think CTs are to be expected, aren't they? The images are built with x86 binaries and run right on the host OS - they don't get access to the potential emulation layer in qemu. I think custom built ARM64 CTs would work fine?

TuxfeatMac commented 3 years ago

Yes, on a fully functional Pimox installation on RPiOS or DietPi arm64 CT's are working fine! But for "vanilla" debain images from https://raspi.debian.net/daily-images/ it is not working "out of the box".