Per accedere alla grotta occorre sostenersi alla catenella fissata all'albero...
venerdì 20 dicembre 2024
mercoledì 18 dicembre 2024
Ubuntu 22.04 networking only using systemd-networkd
AH AH AH AH!! GODO!!! |
Ubuntu 22.04: time to get rid of NetworkManager, the annoying, buggy, bloated, overrated, chaotic NetworkManager:
systemctl stop NetworkManager
apt-get remove NetworkManager
Network cards configuration files: everything will go in /etc/systemd/network except wifi WPA stuff.
Internet via wifi - identify the network card wlxxx...:
networkctl | grep wlan
Configuration file wifi.network, using dynamic addressing (DHCP), adding route metrics to let wired connections take over when needed:
[Match]
Name=wlxxx
[Network]
DHCP=yes
[DHCPv4]
RouteMetric=9
[IPv6AcceptRA]
RouteMetric=9
Configuration of WPA supplicant to let the wifi card autoconnect to myhomewifi/myhomepassword:
TMP=/etc/wpa_supplicant/wpa_supplicant-wlxxx.conf
echo ctrl_interface=/var/run/wpa_supplicant > $TMP
echo eapol_version=1 >>$TMP
echo ap_scan=1 >>$TMP
echo fast_reauth=1 >>$TMP
wpa_passphrase myhomewifi myhomepassword >>$TMP
systemctl restart wpa_supplicant@wlxxx
Ethernet configuration using static addressing, in ethernet.network - just doesn't need DHCP; DNS not actually needed here until I add a gateway:
[Match]
Name=enp1s0
[Network]
Address=192.168.1.3/24
DNS=208.67.222.222
Wireguard requires two configuration files: a wireguard.network file just for the address:
[Match]
Name=wg0
[Network]
Address=192.168.7.77/24
...and a wireguard.netdev file containing the public and private keys, IP addresses and ports; allowed IP's from anywhere because I can "phone home" via ssh on the endpoint:
[NetDev]
Name=wg0
Kind=wireguard
# this file has to be chmod 640 root.systemd-network
[WireGuard]
PrivateKey = eD0Wxxxxxxxxx...
ListenPort = 51821
[WireGuardPeer]
PublicKey = d1LZxxxxx...
AllowedIPs = 0.0.0.0/0
Endpoint = 9.9.9.9:9999
Cellphone(s) configured as USB network cards appearing as ethxa4 here and sporting static addresses; example of xa4.network file:
[Match]
Name=ethxa4
[Network]
Address=192.168.5.11/24
Gateway=192.168.5.2
DNS=1.1.1.1
DNS=9.9.9.9
Enable everything at boot, and restart to apply changes:
systemctl enable systemd-networkdSo long, NetworkManager. You never had anything more than systemd-networkd.
systemctl restart systemd-networkd
martedì 17 dicembre 2024
domenica 15 dicembre 2024
mercoledì 11 dicembre 2024
martedì 12 novembre 2024
venerdì 8 novembre 2024
Supplemento di marcatura di territorio
Quella in fondo è Capri |
Dalla retrocamera del monoruota |
Gyroflow raddrizza la distorsione e livella l'orizzonte ma... butta via un sacco di pixel! |
A una velocità media di 33,9 km/h |
mercoledì 6 novembre 2024
venerdì 1 novembre 2024
martedì 29 ottobre 2024
Il contachimetro dell'apps del monoruota
Dall'alto in basso:
- Distanza percorsa: 26,13 km (scritta in piccolo)
- Velocità attuale: 0 km/h
- Percentuale di carica residua: 69%
- Temperatura motore: 41°C
- Durata della cavalcata: 49 minuti e 24 secondi
- Velocità massima rilevata in quel viaggio: 52,1 km/h
- Velocità media (incluse le pause da fermo ai semafori e agli stop): 31,9 km/h
- Velocità media a motore ingaggiato (cioè escluse le pause): 33,9 km/h
- Voltaggio batteria: 77,7 volt (batteria da 72v nominali, celle "21700" in configurazione 4S20P)
- Consumo corrente al momento: -0,1 ampere (margine di errore +-0,1 ampere, ci sta).
- Ore: 14:52
Nel taschino con la cerniera gialla (sulla sinistra della fascia portacellulare):
- una batteria extra per la telecamera
- tastino bluetooth (singolo click: clacson, doppio click: accensione/spegnimento faro anteriore).
L'app è EUC world, al momento disponibile solo per Android.