this post was submitted on 08 Mar 2024
2 points (66.7% liked)

Self Hosted - Self-hosting your services.

11120 readers
1 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

Important

Beginning of January 1st 2024 this rule WILL be enforced. Posts that are not tagged will be warned and if not fixed within 24h then removed!

Cross-posting

If you see a rule-breaker please DM the mods!

founded 3 years ago
MODERATORS
 

I have a VPS server in the cloud that I use for wireguard. I got the idea to also use it to host a shared folder across my devices: Linux laptop and Android phone.

I started doing some research on this, and would welcome pointers.

top 11 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 5 months ago* (last edited 5 months ago) (2 children)

Syncthing. I switched from Dropbox to syncthing several years ago when Dropbox started enshitifying and never looked back.

[–] [email protected] 3 points 5 months ago

Sync thing is a great resource if you want your files to be replicated across systems. I use it for files that I might work on while in different locations and devices.

Its basically a personal onedrive or Dropbox.

[–] [email protected] 1 points 5 months ago

Syncthing

looks promising, thanks!

[–] [email protected] 3 points 5 months ago

you could do that via SFTP, Samba, NFS or iSCSI.

[–] [email protected] 2 points 5 months ago (1 children)

I would not "share" it synchronously as @[email protected] recommended because in that case the data is only stored on one device and almost always accessed remotely. If the internet connection is gone, you'd no longer have access to the data and if the VPS dies, your data would be gone on all other machines too.

If you want to use Nextcloud anyways, that would be an option.

If all you want to do is have a shared synchronised state between multiple machines though, Syncthing would be a much lighter weight purpose-built alternative.

[–] [email protected] 2 points 5 months ago (1 children)

It's really down to where you want the files to live. Sure synching would provide easy redundancy with a copy of the files on every machine, but that 20GB of documents or whatever would effectively become 100gb of files if it's being synced to 5 different computers, eating up 20GB of space on every computer, meanwhile using a standard network share would give you a single centralized location with one copy of the data, then you just make backups according to whatever your backup scheme is.

[–] [email protected] 2 points 5 months ago

It really depends on what it is you're trying to share between machines.

I don't use syncthing but something that fulfils a similar function (git-annex). My Documents repo is set up in such a way that all instances of the repo try to have a copy of everything because documents are very important data and don't take much space. Other (larger) repos only try to have two or three independant copies; depending on how large and important their data is.

[–] [email protected] 2 points 5 months ago (1 children)

I've been using self-hosted Seafile for quite a while and can recommend it.

[–] [email protected] 0 points 5 months ago

promising, thx!

[–] [email protected] 1 points 5 months ago (1 children)

I think SFTP would work plenty. On linux you can use rclone to mount it, and Android has many file managers that support it (personal favorite is Total Commander with the SFTP plugin)

You could also certainly host a full Nextcloud instance, but it might be a bit overkill

[–] [email protected] 0 points 5 months ago

I was looking into Nextcloud! It was my first thought.