FrostyPolicy

joined 2 years ago
[–] FrostyPolicy@suppo.fi 12 points 20 hours ago* (last edited 20 hours ago) (1 children)

GrapheneOS is the way to go with a Pixel phone. Wifi calling works just fine on my Pixel 8. As does VoLTE.

[–] FrostyPolicy@suppo.fi -1 points 3 days ago (1 children)

Not all distros ship SELinux and the ones that do, don’t actually configure it securely.

You're welcome to work with distro maintainers to fix this instead of just complaining about it.

New users are expected to keep copying and pasting commands from their browsers to their terminal which compromises some Linux security defenses.

This is a big problem

Most if not all of the Linux Distros in 2025 ship with Grub bootloader, which suffers from a lot of problems, instead of using the bootloaders that does not support BIOS and will improve the reliability of booting and provide a more stable experience.

You're welcome to work with distro maintainers to fix this instead of just complaining about it.

[–] FrostyPolicy@suppo.fi 6 points 3 days ago

Mobile radio communication is encrypted between you and the tower. Newer protocols have better encryption then older. That's why Stingray tracker is bad since it can force phones to use older vulnerable protocols.

[–] FrostyPolicy@suppo.fi 7 points 5 days ago (2 children)

Coming up with a decent domain name has been the challenge for me. You can't really put on to your cv or so something like me@thebestmfofalltime.com. You can but that doesn't sound very professional.

[–] FrostyPolicy@suppo.fi 4 points 5 days ago

That's usually the answer to these kind of questions.

[–] FrostyPolicy@suppo.fi 5 points 5 days ago

Signed it months ago.

[–] FrostyPolicy@suppo.fi 15 points 5 days ago (26 children)

the humanism of Fahrenheit.

How? Fahrenheit scale is totally incomprehensible. Celsius at least is using a rational point for 0 (=where water freezes) and same scale as Kelvin.

[–] FrostyPolicy@suppo.fi 2 points 5 days ago (1 children)

Choosing a decent service is usually the easy part (at least with the help of this community). The hard part is to change your email address everywhere.

[–] FrostyPolicy@suppo.fi 3 points 5 days ago* (last edited 5 days ago)

As they use imap, caldav and carddav for email, calendar and contacts you can use any app you want e.g. thunderbird.

Edit: They even have a moving service so you can move your existing emails from gmail to them.

[–] FrostyPolicy@suppo.fi 22 points 6 days ago (7 children)

I'm using filen.io. E2ee and zero knowledge service from Germany. Their desktop client just works.

[–] FrostyPolicy@suppo.fi 1 points 6 days ago (2 children)

Businesses can’t be expected to indefinitely support a piece of technology for free.

Of course not but they themselves announced long ago that win10 will be EOL'd in October 2025. Then later they announced that you can buy extra support for plenty and increasing amounts of money. And now this.

Though even longer ago they announced that win10 will be the last windows ever.

22
submitted 1 year ago* (last edited 1 year ago) by FrostyPolicy@suppo.fi to c/linux@lemmy.ml
 

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:

<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"/>
    </dhcp>
  </ip>
</network>
view more: next ›