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

[FIXED] bind9 is running bind9 status reports failed!

bind9 runs in a chroot environment on lenny. The service can be started as usual: # /etc/init.d/bind9 start Starting domain name service...: bind9. Let’s check bind9 status: ` /etc/init.d/bind9 status bind9 is not running failed! ` Well, the first thing I did was to check the log file, in which I found no error related to named. So I tried another way to check the status: # rndc status version: 9....

December 19, 2010 · 1 min · 195 words · kenno

Can&#8217;t locate Net/LDAP.pm

On Debian: # apt-get install libnet-ldap-perl

October 25, 2010 · 1 min · 6 words · kenno

Enable sudo insults

Look for line begins with Defaults, and append insults to the end. Save it, and clear the sudo session (sudo -K), and try sudo with a wrong password. 🙂 Source: Enable sudo insults for some laughs

April 15, 2010 · 1 min · 36 words · kenno

Enable Japanese input on Debian/Ubuntu

Normally, I would install Scim and Anthy for Japanese input method on Debian. Recently, I found an easier way to achieve the same thing, which is to use IBus instead of Scim. Install ibus: sudo apt-get install ibus ibus-anthy ibus-gtk From the menu, System -> Preferences -> IBus Preference IBus Preference should detects that you have run IBus daemon yet, click &#8220;Yes&#8221; to run it. You’ll be asked to edit your ....

March 14, 2010 · 1 min · 150 words · kenno

Stopping hard drive clicking noise on MSI U100

Finally, the OS X has been removed from MSI Wind U100, and completely replaced by Debian (testing). Whenever the computer is idle, the hdd makes this weird clicking noise. To stop it, we can use hdparm to turn it off. ` kenno@tora:~$ sudo hdparm -B 254 /dev/sda Source: MSI Wind – Gentoo Linux Wiki

November 28, 2009 · 1 min · 54 words · kenno