- Joined
- Aug 18, 2020
Debian Stable with XFCE only has security updates AFAIK.What distro with a DE has the fewest regular updates on a base install? So they don't start demanding you update packages every day or two?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Debian Stable with XFCE only has security updates AFAIK.What distro with a DE has the fewest regular updates on a base install? So they don't start demanding you update packages every day or two?
I just switched my cheap 14 inch HP to arch.thinking of switching back to Arch/Endeavor or just moving to a stable release like Fedora/Debian cause Tumbleweed's updates take fucking forever
Try syncthing, it'd a pretty good solution for keeping files on multiple machines, and it's available on pretty much every platform.I finally realized that I had installed Linux Mint to the HDD and not the ssd which explains the performance issues i was having. Caved and did a wipe of all the drives when I reinstalled, and it runs a lot better. So far all my computers are running Linux Mint (aside from the server running Debian), and am slowly migrating away from Microsoft services.
Is there something I can install onto my server that I can hook into as a local cloud storage that functions like like OneDrive or DropBok?
I might try syncthing. I see that Linux Mint has built in support for nextcloud, is that something i can install on my server without major overhead?Try syncthing, it'd a pretty good solution for keeping files on multiple machines, and it's available on pretty much every platform.
Nextcloud can run on a raspberry pi, so you're good. It has a bunch of nice extensions too such as backing up your contacts & other stuff you might want to do outside of GoogleI might try syncthing. I see that Linux Mint has built in support for nextcloud, is that something i can install on my server without major overhead?
It looks like swizzin has nextcloud available so i can install it without anything breaking https://swizzin.ltd/applications/nextcloudNextcloud can run on a raspberry pi, so you're good. It has a bunch of nice extensions too such as backing up your contacts & other stuff you might want to do outside of Google
You can just run it in docker to avoid issues https://docs.linuxserver.io/images/docker-nextcloud/#usageIt looks like swizzin has nextcloud available so i can install it without anything breaking https://swizzin.ltd/applications/nextcloud
biggest worry is my nginx proxy being borked if i install it manually
Honestly there's too many container systems for Linux. you got flatpack, docker, snap, appimages, it get's a bit confusing.You can just run it in docker to avoid issues https://docs.linuxserver.io/images/docker-nextcloud/#usage
Some people on this thread are already getting out their holy water, and Usimilitudo is already preparing his speech about how this would not have been a probelm if Nextcloud was in ada or ocaml or something, but that tiny little yaml in the Usage section will help you get this running in no time without anything breaking
Snap is garbage. Flatpak is mostly garbage. Appimages are less garbage but at least don't require a root daemon. Docker itself is also garbage. Podman using docker style images is tolerable garbage, especially rootless. Podman and Docker are the two made for "server" apps, the rest are more user focused although Ubuntu is trying to infect everything with Snap.Honestly there's too many container systems for Linux. you got flatpack, docker, snap, appimages, it get's a bit confusing.
Are there any you consider good?Snap is garbage. Flatpak is mostly garbage. Appimages are less garbage but at least don't require a root daemon. Docker itself is also garbage. Podman using docker style images is tolerable garbage, especially rootless. Podman and Docker are the two made for "server" apps, the rest are more user focused although Ubuntu is trying to infect everything with Snap.
My Nextcloud is using the Docker container with a persistent volume for my storage. Upgrades aren't bad and since the actual files live on my normal filesystem they get backed up as part of normal operations. My main proxy forwards /nextcloud to it and has a "real" letsencrypt cert so nextcloud.domain.com works. My Android phone uses it for photo backups among other things.
saying that they are all garbage without giving an explanation isn't really helpful.Snap is garbage. Flatpak is mostly garbage. Appimages are less garbage but at least don't require a root daemon. Docker itself is also garbage. Podman using docker style images is tolerable garbage, especially rootless. Podman and Docker are the two made for "server" apps, the rest are more user focused although Ubuntu is trying to infect everything with Snap.
Yes, just do this and use Docker. You can use Portainer to have a nice web UI to manage everything.When I set up my next server I might look into using docker images for all my services on it.
Apt is fine if your distro has what you want, be more careful of 3rd party repos. Often they don't support all .deb flavored OSes though.Are there any you consider good?
Or do you only like using pacman, or apt to install packages.
What about some of the helpers?
I still need to wrap my head around how to set up nginx and certificates, but I can see the benefits of using docker containers.Yes, just do this and use Docker. You can use Portainer to have a nice web UI to manage everything.
People here will complain about Docker having root access like everyone is running top secret CIA servers that are going to be targeted by people with 0days and government actors. People like to complain about stuff that might not actually matter for the average joe as long as they take the necessary precautions.
Don't expose your server on the internet and you're good regardless of what you run. If you need something to be available to you outside your home use wireguard in a container and expose just that. Docker lets you use namespaces, do that, it will prevent privilege escalation. Don't use default passwords and ports, especially don't leave stuff without a password, general digital safety stuff.
I could be wrong, but isn't that kinda what snap does?Apt is fine if your distro has what you want, be more careful of 3rd party repos. Often they don't support all .deb flavored OSes though.
I'll use Appimages if they're available for GUI stuff. Have previously tried to build my own Appimages but these days it's easier to just build a container with whatever base OS they do support and run the app in there. Of course this is how you end up with multi-gigabyte containers, but oh well.
appimages are self contained in a folder and are closer to macOS .app programs. I installed superslicer which involved using a script to compile the raw code to an app image, which i then need to use Gear Lever to manage themI could be wrong, but isn't that kinda what snap does?
I use nginx proxy manager. It automatically renews the certificates. I know cloudflare stopped protecting kiwi, but you can also use them for certificates(and add them to nginx proxy manager) that last a really long time so you don't have to worry about renewal. Their protection is actually good regardless of their practices, just stick to the free plan.I still need to wrap my head around how to set up nginx and certificates, but I can see the benefits of using docker containers.