Configure IPv6 for Proxmox Host via Slaac

The Proxmox server running at home only has an IPv4 statically assigned to it. Since I’ve been trying to get all my connected devices at home to get IPv6 assigned, I figured I should try with this Proxmox server next. I’m running Proxmox VE 8.0.4, and it’s based on Debian 12 (bookwarm). The settings for its network interfaces are stored in /etc/network/interfaces: root@pve:~# cat /etc/network/interfaces auto lo iface lo inet loopback auto vmbr0 iface vmbr0 inet static address 192....

September 16, 2023 · 3 min · 551 words · kenno

Query Latest Debian 12 AMI Id Using AWS SSM Parameter Store

Debian publishes their releases of Amazon Machine Image (AMI) for bookworm at Debian bookworm on Amazon EC2 [1]. There, you can find the AMIs for various regions and two architecture amd64 and arm64. Another way to search for AMI for Debian 12 (bookworm) is to use AWS CLI with describe-images. Here is an example on how to list the 3 most recent AMIs of Debian 12 (amd64 architecture), sorted by most recent to the oldest:...

August 5, 2023 · 2 min · 365 words · kenno

How to check cpu temp on Debian and Ubuntu

This is just a quick note for me to display CPU temperature on one of my fanless device which runs Debian. Install the required package lm-sensors Run the sensors command. Here is a sample output: root@pve:~# sensors coretemp-isa-0000 Adapter: ISA adapter Package id 0: +45.0°C (high = +105.0°C, crit = +105.0°C) Core 0: +37.0°C (high = +105.0°C, crit = +105.0°C) Core 1: +37.0°C (high = +105.0°C, crit = +105.0°C) Core 2: +37....

August 29, 2022 · 1 min · 105 words · kenno

Unknown Authn provider: ldap

Unknown Authn provider: ldap a2enmod authnz_ldap<br /> apache2ctl restart

September 12, 2012 · 1 min · 9 words · kenno

PHP extension "mcrypt" must be loaded.

On Ubuntu or Debian: $ sudo apt-cache search php|egrep ^php5- $ sudo apt-get install php5-mcrypt Ref: Install php extensions on ubuntu

May 22, 2011 · 1 min · 21 words · kenno