• 0 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: July 7th, 2023

help-circle


  • exi@feddit.detoPrivacy@lemmy.mlGoogle has a VPN service now
    link
    fedilink
    arrow-up
    6
    arrow-down
    11
    ·
    edit-2
    1 year ago

    THIS IS A PAID SERVICE.

    Dude, they don’t only do ads. Google has a whole bunch of payed-for services that are never touched for ad-tracking. This is one of them. You are implying that Google Cloud would also use ad-tracking based on customer data, which is absurd.

    Please stop spreading this FUD. Just because the free services are payed for by ads does not mean that everything they do is.

    (edit: Paid, not Payed)


  • exi@feddit.detoPrivacy@lemmy.mlGoogle has a VPN service now
    link
    fedilink
    arrow-up
    12
    arrow-down
    20
    ·
    1 year ago

    So your argument has nothing to do with the product itself and everything to do with “hurr Durr Google bad”.

    Which is fine, and a valid opinion, but has nothing to do with the product.

    I’m annoyed because 90% of the comments here imply or outright state that google will use this data for ads or other means, which has no basis in reality.


  • exi@feddit.detoPrivacy@lemmy.mlGoogle has a VPN service now
    link
    fedilink
    arrow-up
    31
    arrow-down
    18
    ·
    1 year ago

    I’m super confused by the FUD spread in nearly every comment here.

    Pretty much every argument boils down to “we don’t trust google does what they say”, which is funny because I’d like to challenge anyone to provide evidence that google actually sells any of your data. They sell advertising slots that they promise will find the right people, but your data never leaves google. No advertiser gets to see it.

    This VPN service promises and has been independently audited to never log or analyze your traffic and even has built in provisions to anonymize your traffic within Google so they can’t reconstruct it.

    So apart from the questionable assumption that google is blatantly lying, what’s the argument here? Apart from maybe missing some popular VPN Features like country selection.

    Also this is for people that already pay for Google storage anyways, so I don’t see the problem for the intended target audience, it’s sticky an improvement in privacy for them and they get it for free. It sure as hell beats getting your traffic intercepted and ads injected into random http pages like some ISPs do.











  • For a handful of servers, try zabbix. Every distribution has a packaged zabbix agent. It has everything: web ui, a way to Auto discover things with a bit of setup, nice graphs, alerting, LDAP User Management if you need it, a way to define per person/group alerting/notification schedules. And the community is big enough that many common services (fail2ban/postfix/MySQL/etc.) have premade custom monitoring scripts. Adding your own metrics is also very easy.



  • exi@feddit.detoLinux@lemmy.mlWhat Filesystem?
    link
    fedilink
    arrow-up
    6
    ·
    1 year ago

    From arch wiki:

    Disabling CoW in Btrfs also disables checksums. Btrfs will not be able to detect corrupted nodatacow files. When combined with RAID 1, power outages or other sources of corruption can cause the data to become out of sync.

    No thanks


  • exi@feddit.detoLinux@lemmy.mlWhat Filesystem?
    link
    fedilink
    arrow-up
    9
    arrow-down
    1
    ·
    1 year ago

    If you are planning to have any kind of database with regular random writes, stay away from btrfs. It’s roughly 4-5x slower than zfs and will slowly fragment itself to death.

    I’m migrating a server from btrfs to zfs right now for this very reason. I have multiple large MySQL and SQLite tables on it and they have accumulated >100k file fragments each and have become abysmally slow. There are lots of benchmarks out there that show that zfs does not have this issue and even when both filesystems are clean, database performance is significantly higher on zfs.

    If you don’t want a COW filesystem, then XFS on LVM raid for databases or ext4 on LVM for everything else is probably fine.



  • Most of the time, it’s enough to copy the whole EFI partition to the new machine and update whatever boot entries are in there to point to the right new partitions.

    In case of a switch to something like zfs, it’s a bit more involved and you need to boot a live Linux, chroot into the new “/” with /boot mounted and /dev, /proc, /sys bind mounted into the chroot.

    Then you can run the distro-appropriate command to reinstall/ update grub into the EFI partition and they will usually take care of adding the right drivers.