Howto proxmox raspberrypi5: Difference between revisions
Jump to navigation
Jump to search
Mandulete1 (talk | contribs) |
Mandulete1 (talk | contribs) |
||
Line 84: | Line 84: | ||
pct create 102 ./devuan-rootfs.tar.xz --unprivileged 1 --ostype unmanaged --hostname devuan --net0 name=eth0 --storage local --arch arm64 | pct create 102 ./devuan-rootfs.tar.xz --unprivileged 1 --ostype unmanaged --hostname devuan --net0 name=eth0 --storage local --arch arm64 | ||
for download lxc container images: | for download lxc container images: | ||
edit container config /etc/pve/lxc/102.conf: | |||
lxc.cgroup2.devices.allow: c10:200 rwm | |||
lxc.mount.entry: /dev/net dev/net none bind,create=dir | |||
= references = | |||
* https://images.linuxcontainers.org/images/ | * https://images.linuxcontainers.org/images/ |
Revision as of 00:35, 30 April 2024
configure repo
install gpg key:
curl -o /usr/share/keyrings/pveport.gpg https://mirrors.apqa.cn/proxmox/debian/pveport.gpg
install proxmox repo:
echo "deb [deb=arm64 signed-by=/usr/share/keyrings/pveport.gpg] https://mirrors.apqa.cn/proxmox/debian/pve bookworm port" | tee /etc/apt/sources.list.d/pvport.list
configure rpi
update to latest:
apt update && apt dist-upgrade -y
add hostname to /etc/host:
cat >> /etc/hosts << EOF 127.0.0.1 localhost 127.0.1.1 raspberrypi 192.168.77.125 raspberrypi EOF
edit network configuration:
cat >> /etc/network/interfaces << EOF # loopback auto lo iface lo inet loopback # eth0 iface eth0 inet static # vmbr0 bridge auto vmbr0 iface vmbr0 inet static address 192.168.77.125 netmask 255.255.255.0 gateway 192.168.77.254 bridge-ports eth0 bridge-stp off bridge-fd 0 EOF
configure nameservers:
cat >> /etc/resolv.conf << EOF nameserver 8.8.8.8 nameserver 8.8.8.4 EOF
permit root login:
sed -i 's|^#PermitRootLogin*.*|PermitRootLogin yes|g' /etc/ssh/sshd_config
install packages
install this packages:
apt install ifupdown2 bridge-utils rsyslog -y
install firmware:
apt install pve-edk2-firmware -y
install proxmox packages:
apt install proxmox-ve postfix open-iscsi chrony mmc-utils usbutils pve-edk2-firmware-aarch64 -y
reboot system:
reboot
access web gui
https://192.168.77.125:8006
download image
do this in another computer with more resources
download image:
cd /var/lib/vz/images wget https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-arm64.img
in debian or ubuntu install guestfs-tools:
apt install guestfs-tools -y
in arch install guestfs-tools:
pacman -S guestfs-tools --noconfirm
in rhel install libguestfs-tools:
yum install libguestfs-tools -y
change image root password:
virt-sysprep -a jammy-server-cloudimg-arm64.img -q --root-password password:vidalinux
resize image:
cp jammy-server-cloudimg-arm64.img jammy-server-cloudimg-arm64_10G.img qemu-img resize jammy-server-cloudimg-arm64_10G.img +8G
expand image:
virt-resize --expand /dev/sda1 jammy-server-cloudimg-arm64.img jammy-server-cloudimg-arm64_10G.img
create vm
transfer image to raspi:
scp jammy-server-cloudimg-arm64_10G.img root@192.168.77.125:/var/lib/vz/images/
create vm using cli:
qm create 100 --name testing --ostype l26 --cpu max --cores 1 --memory 512 --scsihw virtio-scsi-pci --net0 virtio,bridge=vmbr0 --bios ovmf --efidisk0 local:0,efitype=4m,pre-enrolled-keys=0 --serial0 socket
add image to vm:
cd /var/lib/vz/images qm importdisk 100 ./jammy-server-cloudimg-arm64_10G.img local
create container
download devuan image:
wget https://images.linuxcontainers.org/images/devuan/beowulf/arm64/default/20240429_11%3A50/rootfs.tar.xz -O ./devuan-rootfs.tar.xz
create container in using pct:
pct create 102 ./devuan-rootfs.tar.xz --unprivileged 1 --ostype unmanaged --hostname devuan --net0 name=eth0 --storage local --arch arm64
for download lxc container images: edit container config /etc/pve/lxc/102.conf:
lxc.cgroup2.devices.allow: c10:200 rwm lxc.mount.entry: /dev/net dev/net none bind,create=dir