𝕽𝖔𝖔𝖙𝖎𝖊𝖘𝖙

  • 3 Posts
  • 203 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle












  • Linux is a problem for people who come from windows and need more than basics but are not tech savvy enough to get their hands dirty.

    Spot-on. For people with minimal to no computer skills in the first place Linux will serve them well.

    The one who well struggle the most ironically are Windows “Power users” and other intermediate/advanced users who don’t have the equivalent skill already in Linux or time/willingness to learn Linux systems.


  • I have a fairly “bleeding edge” laptop with an RTX3000 series GPU and an AMD CPU/APU and I have been surprised at how well it runs on Linux.

    Not only is my battery life consistently better but it handles the GPU switching flawlessly and performance in games is also consistently noticeably better than what I experienced running Windows on the same hardware.

    Even in just the last year or two the advancements in Linux support have been downright incredible! (At least in my personal experience)

    Of course I’m using Nvidia’s proprietary drivers, but I was in Windows too and my experience has only improved by switching to Linux.







  • I use and love Kopia for all my backups: local, LAN, and cloud.

    Kopia creates snapshots of the files and directories you designate, then encrypts these snapshots before they leave your computer, and finally uploads these encrypted snapshots to cloud/network/local storage called a repository. Snapshots are maintained as a set of historical point-in-time records based on policies that you define.

    Kopia uses content-addressable storage for snapshots, which has many benefits:

    Each snapshot is always incremental. This means that all data is uploaded once to the repository based on file content, and a file is only re-uploaded to the repository if the file is modified. Kopia uses file splitting based on rolling hash, which allows efficient handling of changes to very large files: any file that gets modified is efficiently snapshotted by only uploading the changed parts and not the entire file.

    Multiple copies of the same file will be stored once. This is known as deduplication and saves you a lot of storage space (i.e., saves you money).

    After moving or renaming even large files, Kopia can recognize that they have the same content and won’t need to upload them again.

    Multiple users or computers can share the same repository: if different users have the same files, the files are uploaded only once as Kopia deduplicates content across the entire repository.

    There’s a ton of other great features but that’s most relevant to what you asked.