Linux, C, DOS, Vim, networking. he/him

  • 0 Posts
  • 42 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle



  • You added the Flatpak repo as a “system” repo with:

    flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo
    

    As such, the downloaded applications are stored by the system in /var like you said.

    If you run installs as user installs, eg:

    flatpak --user install com.example.appname
    

    Then the application is stored in your home directory, not in /var.

    You can also add the Flatpak repo as a “user” repo, eg:

    flatpak --user remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo
    

    Now all installs will behave as if you passed --user to the install command. All installs will go to your home directory, none will go to /var














  • I’ve been playing with 86Box lately to setup Windows 95 to play some old games.

    Win95 has a bug where it doesn’t run on fast CPUs, so using one of the original CD images in a VM like KVM is not possible.

    (I later found https://github.com/JHRobotics/patcher9x which you can use to patch the install images)

    I tried Bochs but it was impossible to use, it drops to a text debugger and wants you to connect over VNC which isn’t what I wanted anyway. PCem lost a lot of momentum after going unmaintained, and there is no Linux binary.

    86Box has both AppImage and Flatpak, and comes with a nice configuration GUI. It’s easy to use and works well for what I want to do.

    I like how it seems to properly emulate the BIOS and specific devices, so you can use the actual original drivers too.