home.social

#qubes — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #qubes, aggregated by home.social.

  1. #Qubes zerfickt meinen Kopf. Ich hab gerade ernsthaft daeüber nachgedacht, einen Qube, also eine VM, nur für Zeitsynchronisatiom zu erstellen. #qubesos #paranoid #paranoia

  2. Note to self: how to configure the network manually on #QubesOS AppVM: use qubesdb-read <path> to read these paths /qubes-ip, /qubes-gateway, /qubes-ip6, /qubes-gateway6. If you can't use qubesdb-read because the AppVM has no #Qubes daemons running, you have a bigger problem.

    In systemd-networkd, the usual configuration format is:

    [Match]
    Name=eth0
    [Network]
    Address=<IPv4>
    Gateway=<IPv4>
    Address=<IPv6>
    Gateway=<IPv6>

    But QubesOS AppVMs have IP addresses with /32 or /128 netmasks, I guess it's a basic firewall, so the router is not in the subnet, so systemd-networkd doesn't work. In this case, you need:
    [Network]
    Address=<IPv4>/32
    Address=<IPv6>/128
    [Route]
    Gateway=<IPv4>
    GatewayOnLink=yes
    [Route]
    Gateway=<IPv6>
    GatewayOnLink=yes