• 0 Posts
  • 9 Comments
Joined 2 years ago
cake
Cake day: June 26th, 2023

help-circle
  • My company uses a VPN where the client is so slow inside the VM it is functionally useless. 99%of the time I can still get away with it because my connection amounts to a couple of telnet sessions, but when I actually need data or a spreadsheet or something transferred local, I need to fire up windows directly to snag it.

    Sonicwall has a VPN client that will run fine on Linux (or so they say), but the company won’t switch over to it. And sonicwall considers the windows only version eol and won’t add a Linux version


  • I got tired of windows updates breaking my dual boot. After some research I found that it’s possible to have two uefi partitions: one for windows and one for Linux. It’s not standard but there is nothing expressly written into the efi spec that prohibits it. And it just works. My bios doesn’t care, and works with them both just fine.

    I only use Windows for that 1% of business stuff I can’t accomplish in a vm under windows. Invariably after I boot into widows once ever 3 months it installs so.e update and would kill my ability to boot into Linux. Since setting up 2 partitions I haven’t had this problem.





  • Btrfs and df don’t get along. There are all sorts of internals to btrfs that non btrfs utils ignore. You should run

    sudo btrfs filesystem df /
    sudo btrfs device usage /
    

    It will give you a better picture of what is going on.

    Balancing my help as someone above pointed out, or you may need to boot to a live media of some kind and rebuild the free space cache. Especially with btrfs I encourage people to join their mailing list for help. The devs are awesome and can help you get sorted out.




  • Fedora is systems, right? The easiest way to gain some (temporary) space is to clean out the journal and whatever logs you don’t need. It can grow quite big.

    sudo journalctl --vacuum-size=100M
    

    Will shrink it to something manageable. This will buy you some time to clean up until the journal grows again.

    Also, clearing the apt cache will probably help free up some root partition space

    sudo apt clean
    

    Your root partition where packages are stored and all the logs and transactional databases might be full even if your home directory has tons of free space.