Avatar

Noogs

noogs@lemmy.noogs.me
Joined
0 posts • 24 comments
Direct message

Not weird at all. All my data is shared from a single VM but I access it from several others than run jellyfin and the *arrs, and a few other things. When you don’t want everything running on the same virtual machine, you need to share the data over the network, even if it’s all on the same physical box.

permalink
report
parent
reply

There’s a bit to explain here. So the root user is basically the equivalent of Administrator. One big difference (there are many) is that when you run something as root using sudo, you are actually running as the root user. When you ran the first command to create the folder, you created it in your home directory using the ~ shorthand variable which points to your /home/ user folder. The second command, also references your home folder. However since your running as root, it’s looking for the file in the root user’s home directory or /root, not your home folder.

The config file needs to be in the home directory of the user running the command unless you can put the full path to the config file in the command, then you can put it wherever you want.

permalink
report
reply

I’m here too but I haven’t seen much activity from the few of us that have migrated. I won’t go back to reddit but I fear most of the MSP community will stay there at least for the time being.

I agree that MSPs mainly push proprietary but there is a growing sub-community of us that still advocate for FOSS where we can, and use strictly FOSS products for their personal tech. I hope to see at least many of those people migrate here. CIPP users and the CyberDrain and MSPGeek communities are filled with these people for example.

permalink
report
reply

I have a single Proxmox host running:

  • Apache reverse proxy
  • 2x PiHole
  • Jellyfin
  • UniFi Controller
  • Sonarr
  • Radarr
  • Lidarr
  • Readarr
  • Prowlarr
  • NextCloud
  • Deluge
  • MySQL
  • HomeAssistant
  • OpenSense firewall
  • Zoneminder
  • Lemmy (with Alexandrite)
  • RockStor NAS
  • Windows 10 workstation
permalink
report
reply

I run a supermicro chassis with 6 3TB drives in a RAID6 using a dedicated hardware RAID controller. Old school for these days but works for my needs for now. Drives were free from a buddy of mine so until they start dying or I need more space, they’ll do. Then I have two 120GB intel enterprise SSDs for running Proxmox. VMs and LXCs are all on the spinning disks which surprisingly perform well enough.

permalink
report
reply

I run a supermicro chassis with 6 3TB drives in a RAID6 using a dedicated hardware RAID controller. Old school for these days but works for my needs for now. Drives were free from a buddy of mine so until they start dying or I need more space, they’ll do. Then I have two 120GB intel enterprise SSDs for running Proxmox. VMs and LXCs are all on the spinning disks which surprisingly perform well enough.

permalink
report
reply

I run a supermicro chassis with 6 3TB drives in a RAID6 using a dedicated hardware RAID controller. Old school for these days but works for my needs for now. Drives were free from a buddy of mine so until they start dying or I need more space, they’ll do. Then I have two 120GB intel enterprise SSDs for running Proxmox. VMs and LXCs are all on the spinning disks which surprisingly perform well enough.

permalink
report
reply

The usual go to for self hosted password managers is VaultWarden. There’s no deb or rpm package but you can get it spun up with docker pretty easily. Any reason you’re specifically looking for “included” or packaged solutions? That’s going to severely limit your options.

permalink
report
reply

Everything else just makes it easier to manage which depending on your preferences and how much content you’re dealing with that may not be a problem for you. I run the whole stack using Deluge as my downloader with a VPN. Radarr, Sonarr, and Lidarr automatically locate the torrents on the public tracker sites for me, send the downloads to Deluge, and imports the media into Jellyfin when the download finishes. I also use Jellyseer for discovering and requesting content, as well as allowing family members to request content. I also use Prowlarr to manage the trackers being used in the various arr apps. It’s a very robust and automated system but it all boils down to just downloading torrents over a VPN.

permalink
report
parent
reply

I don’t know enough about the fediverse or Lemmy code to say how easy or hard this would be to implement but if we’re logging in with the username noogs@lemmy.noogs.me for example, it’s reasonable for the app to assume the server is located at lemmy.noogs.me and it can derive the likely URL of https://lemmy.noogs.me from that. The only case this wouldn’t work is if your instance is running on a port other than 443 because then we need some way to tell the app what the port should be.

Email (or at least Microsoft Exchange email) uses a protocol called autodiscover for this which uses DNS to tell an email client where to get connection information from, it then polls that URL for the information and configures the email client automatically. Using a similar DNS based approach may be useful as well.

permalink
report
reply