veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

271
active users

#networkmanager

1 post1 participant0 posts today
jik<p><strong>Sysadmin journal: setting up wireguard on all of my Linux desktops</strong></p> <p>I have several mostly interchangeable Linux computers for personal use. All but one are laptops; the mini-tower which isn’t is used as both a desktop and my home network server, e.g., for DNS and for SSHing into the home network from the outside when I’m traveling with one of the laptops.</p><p>A pro-democracy activist group that I’m part of has asked everyone in the group to use a VPN whenever accessing group stuff online (including Signal, Matrix, Proton, etc.) and has recommended using a VPN all the time. I am not convinced this is worth the effort, but it probably can’t hurt, and I don’t want to be the Guy Who Wasn’t Following The Rules if something does end up going down, so today I set out to make this happen.</p><p>I signed up for a VPN service that uses wireguard (no, I’m not going to tell you which one, that would be giving away information unnecessarily) and set out to figure out how to set up this VPN to be active all the time on my phone and all of my Linux computers. Below are my notes about the bumps in the road I hit while figuring this out and how I got over them.</p><p>The VPN service I signed up with has a bespoke Android client so setting it up for Android was trivial.</p><p>The service allowed me to add other devices to my account and download a standard-format wireguard configuration file for each, to be imported into wireguard, which I was able to do easily in NetworkManager on Debian after installing the wireguard package (I’m actually not 100% certain that it was necessary to import the wireguard package, I think it may have worked even if I hadn’t done that):</p><ul><li>Open Settings app</li><li>Click on Network</li><li>Click the + symbol next to VPN</li><li>Click Import from file…</li><li>Select the wireguard configuration file I downloaded from the VPN service</li></ul><p>I wanted to configure the VPN to connect automatically. You can’t do that from the Settings app but you can do it from <code>nm-connection-editor</code> or <code>nmcli</code>. In the connection editor:</p><ul><li>Open <code>nm-connection-editor</code>, a.k.a., the “Advanced Network Configuration” desktop app</li><li>Double-click on the imported VPN</li><li>Click on the General tab</li><li>Check the “Connect automatically with priority” checkbox</li><li>Save and exit</li></ul><p>In <code>nmcli</code>, you can do “<code>nmcli connection modify <em>[connection-name]</em> connection.autoconnect yes</code>“.</p><p>I configure all my Linux machines via Ansible, so I wanted to figure out how to do the wireguard VPN configuration automatically using the <code>nmcli</code> Ansible module, i.e., I wanted to do the import as described above manually the first time and then figure out how to replicate in Ansible code what the manual import did so I wouldn’t have to do it manually in the future. Unfortunately, though the documentation claims this should be possible, for some reason I don’t have the ability to specify <code>wireguard.peers</code> to the module, so I can’t do the configuration automatically. Therefore, I set up an Ansible rule that checks if the VPN is configured and fails if it isn’t, so that I am reminded to configure it manually if/when I’m setting up a new computer:</p> <pre> - name: make sure wireguard VPN is configured and autoconnect is on nmcli: conn_name: "{{wireguard['vpn_name']}}" autoconnect: yes state: present register: nmcli check_mode: true failed_when: nmcli.changed or 'Exists' not in nmcli</pre> <p>Next, I had to deal with the fact that when I enabled the VPN on my desktop, my <code>ddclient</code> configuration stopped getting my correct public IP address and instead started putting the egress IP of my VPN into my dynamic DNS entry. The reason for this is obvious. I told <code>ddclient</code> to <code>use=web, web=http://checkip.dyndns.com/</code>, and that is obviously going to go through the VPN and get the VPN’s IP rather than mine. I don’t know if the fix I came up with is the best one, but it works: <code>use=cmd, cmd='curl --silent --interface enp2s0 http://checkip.dyndns.com/ | perl -ne \'chomp; if (s/.<em>\b([1-9][0-9]</em>\.[1-9][0-9]<em>\.[1-9][0-9]</em>\.[1-9][0-9]<em>)\b.</em>/$1/){print;exit}\''</code></p><p> Next problem: I need to be able to log into my home desktop from outside the house. Solution: add routing policy rules on my home desktop so that traffic to/from our family server in the cloud bypasses the VPN, so that I can SSH into the cloud server from anywhere and then SSH into the home desktop from the cloud server. I deployed a script to <code>/etc/NetworkManager/dispatcher.d</code> to add the routing rules when the VPN comes up and remove them when it comes down. The commands the script runs look like this:</p> <pre>ip -4 rule add from [server IP] table mainip -4 rule add to [server IP] table main</pre> <p>It specifies “del” instead of “add” to remove the rules. I figured this out with the help of <a href="https://www.reddit.com/r/WireGuard/comments/o6lgnm/how_do_i_use_wireguard_for_outgoing_connections/" rel="nofollow noopener" target="_blank">this Reddit posting</a>. Note that this needs to be a dispatcher script because NetworkManager ignores <code>PostUp</code> and <code>PreDown</code> lines in wireguard configuration files when importing them, and as far as I can tell there is no way to configure directly in NetworkManager commands to be run when an interface goes up or down.</p><p>Final challenge: when I am working on one of my laptops and I need to SSH into my desktop, I want to do so directly via the private IP address on the home network when I’m at home, or indirectly through my cloud server when I’m out of the house, and I want this to happen automatically. Fortunately, I already had a NetworkManager dispatcher script which automatically generates ah SSH configuration file that’s included by my main SSH configuration. The old purpose of this script was so that when I’m out of the house with laptop A and I want to SSH into laptop B, which is on my home network but not accessible from the outside, that SSH automatically gets proxied through my desktop, which <em>is</em> accessible from the outside. I was able to augment this script to add the new functionality. Now whenever one of my laptops connects to my home network, the script adds to my SSH config a <code>Host</code> section for the desktop with a <code>HostName</code> line in it specifying the internal domain host name which resolves to its internal IP address, whereas when the laptop connects to a network outside my home, instead of the <code>HostName</code> line it adds a <code>ProxyJump</code> line specifying the host name of my cloud server.</p><p>If you’re one of the two people in the world who read this blog posting all the way to the end, drop a comment and let me know. 😉</p> <a class="" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Fblog.kamens.us%2F2025%2F05%2F10%2Fsysadmin-journal-setting-up-wireguard-on-all-of-my-linux-desktops%2F&amp;linkname=Sysadmin%20journal%3A%20setting%20up%20wireguard%20on%20all%20of%20my%20Linux%20desktops" rel="nofollow noopener" target="_blank"></a><a class="" href="https://www.addtoany.com/share" rel="nofollow noopener" target="_blank"></a> <p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/ansible/" target="_blank">#Ansible</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/ddclient/" target="_blank">#ddclient</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/linux/" target="_blank">#Linux</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/networkmanager/" target="_blank">#NetworkManager</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/sysadmin/" target="_blank">#sysadmin</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/vpn/" target="_blank">#VPN</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://blog.kamens.us/tag/wireguard/" target="_blank">#wireguard</a></p>
Ge0rG<p><span class="h-card" translate="no"><a href="https://metalhead.club/@lkundrak" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>lkundrak</span></a></span><br>soooo then... why isn't there a <a href="https://chaos.social/tags/TurboVision" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TurboVision</span></a> frontend to <a href="https://chaos.social/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> yet? 😈<br><span class="h-card" translate="no"><a href="https://metalhead.club/@pascaldragon" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>pascaldragon</span></a></span> <span class="h-card" translate="no"><a href="https://mastodon.social/@whitequark" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>whitequark</span></a></span></p>
Martin SchmittCW Blogpost
Multi Purr Puss :verified:<p>🧵 2/n</p><p>👉 Meta+Tab does NOT trigger the Overview<br>👉 accidentally, i've found out that Meta+Esc opens the system monitor<br>👉 the well-known Ctrl+W wörks almost no-where - it closes almost everything in <a href="https://layer8.space/tags/Gnome" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Gnome</span></a>. I need to change …well, either the KDE shortcuts, or the Logitech mouse's DPI-Button macro<br>👉 the <a href="https://layer8.space/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> GUI supports a "shipload" of nerdy stuff - no need for nmtui setting up bond0 🤩 👍<br>👉 there's a Qt variant of Transmission - it also supports seeding at 0bit/s 😉👍</p><p><a href="https://layer8.space/tags/KDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDE</span></a> <a href="https://layer8.space/tags/KDEneon" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDEneon</span></a></p>
9to5Linux<p><a href="https://floss.social/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> Weekly Roundup for March 2nd, 2025: <a href="https://floss.social/tags/NVIDIA" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NVIDIA</span></a> 570 graphics driver hits stable, <a href="https://floss.social/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> 1.52 addsIPvlan interface support, <a href="https://floss.social/tags/Armbian" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Armbian</span></a> 25.2 ships Linux kernel 6.12 LTS, <a href="https://floss.social/tags/FrameworkDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FrameworkDesktop</span></a>, <a href="https://floss.social/tags/FrameworkLaptop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FrameworkLaptop</span></a> 12, <a href="https://floss.social/tags/LibreOffice" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LibreOffice</span></a> 25.2.1 fixes 77 bugs, <a href="https://floss.social/tags/KDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDE</span></a> Plasma 6.3.2, <a href="https://floss.social/tags/LinuxMint" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxMint</span></a>'s revamped <a href="https://floss.social/tags/Cinnamon" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Cinnamon</span></a> app menu, and more <a href="https://9to5linux.com/9to5linux-weekly-roundup-march-2nd-2025" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/9to5linux-weekly</span><span class="invisible">-roundup-march-2nd-2025</span></a></p><p><a href="https://floss.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://floss.social/tags/FOSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FOSS</span></a></p>
adingbatponder<p>Setup -&gt; I have a <a href="https://fosstodon.org/tags/RaspberryPi" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RaspberryPi</span></a> <a href="https://fosstodon.org/tags/RaspberryPiZero2W" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RaspberryPiZero2W</span></a> running <a href="https://fosstodon.org/tags/linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>linux</span></a> <a href="https://fosstodon.org/tags/pios" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pios</span></a> <a href="https://fosstodon.org/tags/RaspberryPiOS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RaspberryPiOS</span></a> <a href="https://fosstodon.org/tags/headless" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>headless</span></a></p><p>Aim: I want the pi to always offer a <a href="https://fosstodon.org/tags/hotspot" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hotspot</span></a> <a href="https://fosstodon.org/tags/wifihotspot" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wifihotspot</span></a> on <a href="https://fosstodon.org/tags/boot" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>boot</span></a><br>based on the command </p><p>nmcli device wifi hotspot ssid pizerohotspot password my_password</p><p>Is this below a bad solution ?? -&gt; I came up with this solution in the link below using a .service but fear it shows I am clueless? Is there a better way? Thanks!<br><a href="https://www.loramesh.org/subpages/pi_install.html#pi_hotspot" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">loramesh.org/subpages/pi_insta</span><span class="invisible">ll.html#pi_hotspot</span></a></p><p> <a href="https://fosstodon.org/tags/networkmanager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>networkmanager</span></a> <a href="https://fosstodon.org/tags/hotspot" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hotspot</span></a> <a href="https://fosstodon.org/tags/SystemD" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SystemD</span></a> <a href="https://fosstodon.org/tags/boot" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>boot</span></a> <a href="https://fosstodon.org/tags/services" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>services</span></a> <a href="https://fosstodon.org/tags/nmcli" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nmcli</span></a></p>
9to5Linux<p><a href="https://floss.social/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> 1.52 Released with IPvlan Interface Support, ethtool FEC Mode, and Much More <a href="https://9to5linux.com/networkmanager-1-52-released-with-ipvlan-interface-support-ethtool-fec-mode" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/networkmanager-1</span><span class="invisible">-52-released-with-ipvlan-interface-support-ethtool-fec-mode</span></a></p><p><a href="https://floss.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://floss.social/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a></p>
Karsten<p><a href="https://chaos.social/tags/TIL" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TIL</span></a> you'll need to set<br>`nmcli con mod &lt;SSID&gt; wifi.powersave disable`<br>for your headless pi that it doesn't lose wifi connectivity on idle.</p><p>Why is this not in the docs? </p><p>If it was a true <a href="https://chaos.social/tags/opensource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>opensource</span></a> project, I'd put up a pull request...</p><p><a href="https://chaos.social/tags/WTF" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WTF</span></a> <a href="https://chaos.social/tags/raspi" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>raspi</span></a> <a href="https://chaos.social/tags/RaspberryPi" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RaspberryPi</span></a> <a href="https://chaos.social/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a></p>
Fedora Project (F42 is OUT)<p>Looking for opportunities to harden your Fedora system? Here's one way to make your VPN use more secure with NetworkManager.</p><p>➡️ <a href="https://fedoramagazine.org/protect-your-vpn-from-tunnelvision-attacks-with-networkmanager/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">fedoramagazine.org/protect-you</span><span class="invisible">r-vpn-from-tunnelvision-attacks-with-networkmanager/</span></a></p><p><a href="https://fosstodon.org/tags/Fedora" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fedora</span></a> <a href="https://fosstodon.org/tags/Privacy" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Privacy</span></a> <a href="https://fosstodon.org/tags/Security" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Security</span></a> <a href="https://fosstodon.org/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://fosstodon.org/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://fosstodon.org/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a></p>
Vitex<p><a href="https://github.com/firecat53/networkmanager-dmenu" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/firecat53/networkma</span><span class="invisible">nager-dmenu</span></a></p><p><a href="https://f.cz/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a></p>
Fedora Project (F42 is OUT)<p>Managing IPv4 Address Conflict Detection with NetworkManager</p><p>➡️ <a href="https://fedoramagazine.org/managing-ipv4-address-conflict-detection-with-networkmanager/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">fedoramagazine.org/managing-ip</span><span class="invisible">v4-address-conflict-detection-with-networkmanager/</span></a></p><p><a href="https://fosstodon.org/tags/Fedora" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fedora</span></a> <a href="https://fosstodon.org/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://fosstodon.org/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> <a href="https://fosstodon.org/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a></p>
jexner<p>TIL that if I use NetworkManager to create a WiFi network, I have to use `nmap` to see what devices are connected. Feels odd. <a href="https://tooting.ch/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://tooting.ch/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a></p>
Jiří Eischmann<p>There's one thing you don't want when upgrading your remote server: a broken network.</p><p>My server is running as a VPS on vpsfree.cz. When they were still using OpenVZ, <a href="https://social.vivaldi.net/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> didn't work properly, so I disabled it. The network was set up by the host, it was static, it worked without a <a href="https://social.vivaldi.net/tags/network" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>network</span></a> manager. Until I upgraded to <a href="https://social.vivaldi.net/tags/Fedora" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fedora</span></a> <a href="https://social.vivaldi.net/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> 41, when it terribly failed.</p><p>Now I have systemd-networkd and it works again, but there were some stressful moments. What did you do Friday night? 😅</p>
Thomas Karpiniec<p>For the longest time I've been one of those people grumbling "ugh why can't I just edit /etc/network/interfaces any more, this is just more work than it has to be" but now that I learnt about nmtui I'm pretty sold on this bold new curses NetworkManager future.</p><p><a href="https://social.octet-stream.net/tags/linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>linux</span></a> <a href="https://social.octet-stream.net/tags/networkmanager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>networkmanager</span></a></p>
Sven Geggus<p>802.1x on <a href="https://karlsruhe-social.de/tags/Debian" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Debian</span></a> or <a href="https://karlsruhe-social.de/tags/Ubuntu" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ubuntu</span></a> anybody? Manually running wpa_supplicant with password=hash:something and dhclient works for me, but it did not work adding this to /etc/network/interfaces. I always end up in default VLAN using this method.<br>Will one of the other methods (<a href="https://karlsruhe-social.de/tags/systemd" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>systemd</span></a>-networkd, <a href="https://karlsruhe-social.de/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> or <a href="https://karlsruhe-social.de/tags/netplan" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>netplan</span></a> support hashed passwords?)<br>I am just looking for a method that works.<br><a href="https://karlsruhe-social.de/tags/8021x" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>8021x</span></a></p>
:arch: XeroLinux :kdelight:<p>Hey all.. </p><p>Moving away from all this negativity, I would like to mention if you see empty duplicates in <a href="https://fosstodon.org/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> it's a bug that will be fixed by the devs soon. Please do not report it to me. <a href="https://fosstodon.org/tags/XeroLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>XeroLinux</span></a> <a href="https://fosstodon.org/tags/Foss" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Foss</span></a> <a href="https://fosstodon.org/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://fosstodon.org/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://fosstodon.org/tags/ArchLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ArchLinux</span></a> <a href="https://fosstodon.org/tags/KDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDE</span></a> <a href="https://fosstodon.org/tags/KDEPlasma" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDEPlasma</span></a></p>
AI6YR Ben<p>Hmm, I wonder how much data Ubuntu is mining from connectivity-check.ubuntu.com 🤔 Are they selling that to someone? (Update: seems like the consensus is minimal machine information collected, if anything. Can't help but ask though, folks...) <a href="https://m.ai6yr.org/tags/privacy" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>privacy</span></a> <a href="https://m.ai6yr.org/tags/linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>linux</span></a> <a href="https://m.ai6yr.org/tags/ubuntu" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ubuntu</span></a> <a href="https://m.ai6yr.org/tags/networkmanager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>networkmanager</span></a></p>
House Panther :verified_paw:<p>The <a href="https://goblackcat.social/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://goblackcat.social/tags/timeshift" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>timeshift</span></a> utility just saved my ass. I went to do my weekly upgrading of <a href="https://goblackcat.social/tags/Arch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Arch</span></a> and the new <a href="https://goblackcat.social/tags/networkmanager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>networkmanager</span></a> package broke a part of libvirtd virtual networking. Anyhow, I was able to restore my system and bring it back up. For the win!</p>
pope of nope 🇺🇦<p>Introductory pinpost at my new fediverse home. I:</p><p>* I develop <a href="https://metalhead.club/tags/NetworkManager" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NetworkManager</span></a> at <a href="https://metalhead.club/tags/RedHat" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RedHat</span></a> <br>* Am a dad, sometimes a mom.<br>* Live in <a href="https://metalhead.club/tags/Brno" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Brno</span></a>, near <a href="https://metalhead.club/tags/Adamov" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Adamov</span></a>.<br>* Am a regular in local <a href="https://metalhead.club/tags/hackerspace" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hackerspace</span></a>, <a href="https://metalhead.club/tags/base48" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>base48</span></a>.<br>* Ride bikes all the time, including a huge ass bakfiets.<br>* Am an enemy of human and aminal suffering.<br>* Program <a href="https://metalhead.club/tags/C" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>C</span></a>, <a href="https://metalhead.club/tags/Perl" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Perl</span></a>, <a href="https://metalhead.club/tags/Forth" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Forth</span></a> and therefore am officially obsolete.<br>* Like <a href="https://metalhead.club/tags/Fedora" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fedora</span></a> and <a href="https://metalhead.club/tags/Debian" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Debian</span></a><br>* Enjoy old computers, simple programs, slow bike rides, blasphemy, Manilla Road, and marijuana.<br>* squirrel brain<br>* dunning-kruger<br>* Aspiring Australopithecus Robustus</p><p>🇨🇿 🇪🇺 🇸🇰</p><p>Any opinions expressed are not mine. They're of your employer and Oracle, Inc. in particular.</p>