this post was submitted on 29 Jun 2023
11 points (100.0% liked)

Selfhosted

39257 readers
219 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Essentially looking for a shared drive that family members or friends can upload files to without having to make individual users / accounts Anyone know a good way to do this (self hosted or another service if Foss / private)

top 10 comments
sorted by: hot top controversial new old
[–] Linuturk@lemmy.onitato.com 7 points 1 year ago (1 children)

Another solution might be setting up Syncthing on all your computers. It would present as a folder on the local systems and anything put in there would be synced to the other systems. No logins required.

[–] thecdc1995@lemmy.world 1 points 1 year ago

Upside: Easy as pie and can be used by anyone who has used Dropbox/OneDrive/GDrive/whatever

Downside: everyone gets a copy of every file regardless. Good luck getting rid of old files. Could be fine, though.

[–] Mir@lemmy.fmhy.ml 6 points 1 year ago

Have you checked out NextCloud?

[–] AbidanYre@lemmy.world 4 points 1 year ago
[–] AnagrammadiCodeina@feddit.it 4 points 1 year ago

I wouldnt do it without a login even on a LAN

Nextcloud is a nice centralized system for that, you can setup shared folders that appear as a weblink that anyone can upload to, but it would require someone (likely you) to set up and maintain a LAMP stack application.

Otherwise if you want a simpler "share files between PCs" kind of application then Syncthing would be great for that. Install it on both PCs, link them, then setup a shared folder. The contents of that folder are then mirrored between the pcs.

[–] Nickall@lemmy.fmhy.ml 2 points 1 year ago

filestash (https://www.filestash.app/) can be an option , you can use any back end you want

[–] Soullioness@atosoul.zapto.org 1 points 1 year ago (1 children)

I just use an FTP to share files. It's pretty easy to use and it's very powerful.

[–] vegetaaaaaaa@lemmy.world 2 points 1 year ago (1 children)

FTP requires a installing a thick client, is an old, insecure, complicated protocol, doesn't play well with firewalls... FTP must die! https://mywiki.wooledge.org/FtpMustDie. At least use SFTP (not FTPS) which is built-in to SSH servers and much simpler to setup. But then good luck explaining normal users how to configure a client (WinSCP is decent but sill requires some configuration) unless they are running Linux (most file managers support SFTP in a simplified way).

An alternative is Samba/SMB (multiplatform file sharing protocol Linux/OSX/Windows) - configuring it is a bit involved, but definitely doable. Client setup/file manager integration is OK.

But I would rather use Nextcloud for this, a simple web interface is probably more intuitive for non-technical users. And you get other features such as comments, tags... if that's your thing. Can also be accessed from desktop file managers using WebDAV.

SMB would probably have the best performance of the three, though. Depends on the number and size of files being shared.

[–] Soullioness@atosoul.zapto.org 2 points 1 year ago

Interesting point. I'm looking at some alternatives, I didn't even realize just how insecure it was.