[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Very light "private" cloud



* Michelle Konzack schrieb:
> I am searching vor a OwnCloud/NextCloud replacement, because I use
> exclusively and can not use MySQL.  Also the updates drive me nuts
> and its resurce conumption.

Hi,

Syncthing is just a daemon written in Go that runs in the user session
and synchronizes directories between devices without a central
repository. Installation is as easy as

	sudo apt install syncthing
	mkdir -p ~/.config/systemd/user
	cp /usr/lib/systemd/user/syncthing.service \
		~/.config/systemd/user
	systemctl --user enable --now syncthing.service
	firefox http://localhost:8384

> I need only access for maybe 10 (active) users and a bunch of users
> which have to get read access zu certain files/directories

For multiple users on the same host you have to configure individual
ports in `~/.config/syncthing/config.xml` and run the daemon from the
system service manager:

	systemctl enable --now syncthing@${USER}.service

With this trick, every instance becoms it's own "device". I run this
setup on my NAS at home with 4 users.

regards
-- phrank


Reply to: