Skip Navigation
Posts
1
Comments
158
Joined
2 yr. ago
  • I would quit youtube immediately but there are some good content creators that don't post their videos elsewhere and I do want to watch them. Gladly there's FreeTube for that.

  • Curious choice to write a c++ program for this instead of doing the same thing in a powershell script.

    One feature it should have: delete itself after running to leave no traces of such a tool.

  • at least existing features and data remain free.

    For now.

  • Quite true. Linux and all modules loaded into it are GPL licensed. The userland and tooling on the other hand can be licensed however. They are free to close source on anything except kernel code.

  • This is the first step in moving to fully closed source. I guess degooled versions are getting too popular thus a threat to google's business.

  • The file system was not unmounted cleanly so the dirty bit is 1 -> windows tells you to check the drive. This clears the dirty bit even if nothing was wrong.

  • laughs in btrfs and xfs

  • You can set the webpage to self refresh on interval by itself no extensions needed.

  • "Page refresh". You mean F5 (or ctrl + r) right?

  • It depends on your threat model. Using tor via a know vpn endpoint does make you stand out and can be used to profile your traffic. One of the main points of tor is that all users look exactly the same.

    If you have e.g. one user out of a 100 using a vpn endpoint instead of some residential ip address that user immediately becomes a much more interesting target. There is information floating around in the web that state actors have control over several entry and exit nodes.

  • You got most things right about UDP and TCP. They both work in the transport layer of the OSI model. They are also completely different protocols, related yes but independent.

    UDP is "simpler" as it basically throws data packages in to the network and hope they reach their destination. TCP on the other hand has checks in place that verifies that a data package has actually reached its destination.

  • This is or was part of their anti-spam/flooding protection.

    That's the official explanation. A phone number is a nice way to attach a real world identity to the data (which of course is sold to advertisers/data brokers etc).

  • It's all Fediverse. You can follow things on lemmy on mastodon and vice versa and so on.

  • Not the same thing. With session saving I don't have configure anything.

  • KDE + wayland on Tumbleweed gave me this experience.

  • Wayland has at least one deal breaker for me. It doesn't remember where my windows were at logout when saving the session. I have six virtual desktops and have specific windows in certain desktops. Putting everything back where they belong after each login, no thank you. Until they add that I'll stick to X11.

  • I'll add shift + f6 for refactor rename and ctrl + 6 for redefining your function i.e. add/remove parameters and/or return value.

  • Linux @lemmy.ml
    FrostyPolicy @suppo.fi

    No internet in virtual machine

    I have on the host machine two network interfaces. One is lan and the other is a wlan. For libvirt I have created a nat network which is bound to the wlan. From the guest I can access other machines in the network host wlan is connected to. Also DNS lookup works. The problem is that there's no connection to the internet at all, e.g. pinging something gives "Destination network unreachable". This only happens when both network connection on the host are active. Running qemu/libvirt on OpenSuse Tumbleweed.

    The nat network in question:

     undefined
        
    <network>
      <name>natToWlan</name>
      <uuid>a44c939c-e6bf-44d0-8f86-376056d418a4</uuid>
      <forward dev="wlp19s0f4u1u1" mode="nat">
        <nat>
          <port start="1024" end="65535"/>
        </nat>
        <interface dev="wlp19s0f4u1u1"/>
      </forward>
      <bridge name="virbr1" stp="on" delay="0"/>
      <mac address="52:54:00:1f:64:95"/>
      <ip address="192.168.100.1" netmask="255.255.255.0">
        <dhcp>
          <range start="192.168.100.128" end="192.168.100.254"/>