Hi there ;)

https://albony.xyz/

New Termux and Armbian mirrors live now!

Termux mirror.albony.xyz/termux Its added to the termux mirrorlist so you should get it automatically soon, if you want to add it manually: termux-change-repo (part of termux-tools package) can be used to modify sources. Another way of doing it is by using apt edit-sources and adding the following lines: # main deb https://mirror.albony.xyz/termux/termux-main stable main # root deb https://mirror.albony.xyz/termux/termux-root root stable # X11 deb https://mirror.albony.xyz/termux/termux-x11 x11 main Armbian mirror.albony.xyz/armbian This is also added to the armbian mirrorlist but you can also add it manually by editing the sources....

August 16, 2022 · 1 min · Albony

Albony.xyz Mirror

June 24, 2022 · 1 min · Albony
APT trying to connect over IPv6

APT mirror connection issue: IPv6

The Problem when I did sudo apt update && sudo apt upgrade -y I noticed that it was trying to connect to the ubuntu mirror over IPv6 (and failing) My ISP hasn’t enabled IPv6 for me, so I can’t connect over IPv6. and I don’t have any IPv6 DNS servers. But still apt was trying to connect over IPv6… weird… The Fix You can create a file in the /etc/apt/apt.conf.d directory to force apt to use IPv4 echo 'Acquire::ForceIPv4 "true";' | sudo tee /etc/apt/apt....

May 16, 2022 · 1 min · Albony
Proxmox

Dark Mode for Proxmox

How to make proxmox UI beautiful I use proxmox daily for virtual machines and LCX containers, It is one of the best virtual machince platform that utilizes KVM And it’s FOSS but the default UI is too bright and I prefer darker themes Discord-PVE Discord-PVE is a discord theme for the proxmox virtual environment it uses custom stylesheet. To Install it: run this oneliner bash <(curl -s https://raw.githubusercontent.com/Weilbyte/PVEDiscordDark/master/PVEDiscordDark.sh ) install This looks soo much better https://github....

December 10, 2021 · 1 min · Albony
Docker

Setting DNS for containers in a docker environment

Setting DNS for all containers in a docker environment I have noticed that all my containers default to 8.8.8.8 google dns because they are unable to connect to the DNS servers configured for my network. I have been using a dirty hack to set my own DNS servers. I knew this wasn’t the correct way to do it. i.e making a resolv.conf in the docker directory and mounting it at /etc/resolv....

December 10, 2021 · 1 min · Albony