« Syncthing » : différence entre les versions
De www.yakakliker.org
(Page créée avec « === Installation === = Debian/Ubuntu Packages = To allow the system to check the packages authenticity, you need to provide the release key. # Add the release PGP keys: '''sudo mkdir -p /etc/apt/keyrings sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg <nowiki>https://syncthing.net/release-key.gpg</nowiki>''' The <code>stable</code> channel is updated with stable release builds, usually every first Tuesday of the month. # Add the "stable" chan... ») |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
= | == Debian/Ubuntu Packages == | ||
= Debian/Ubuntu Packages = | |||
To allow the system to check the packages authenticity, you need to provide the release key. | To allow the system to check the packages authenticity, you need to provide the release key. | ||
# Add the release PGP keys: | # Add the release PGP keys: | ||
Ligne 15 : | Ligne 13 : | ||
# Update and install syncthing: | # Update and install syncthing: | ||
'''sudo apt-get update | '''sudo apt-get update | ||
sudo apt-get install syncthing | sudo apt-get install syncthing | ||
== Liens == | |||
https://apt.syncthing.net/ | https://apt.syncthing.net/ |
Dernière version du 7 août 2025 à 10:52
Debian/Ubuntu Packages
To allow the system to check the packages authenticity, you need to provide the release key.
# Add the release PGP keys: sudo mkdir -p /etc/apt/keyrings sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
The stable
channel is updated with stable release builds, usually every first Tuesday of the month.
# Add the "stable" channel to your APT sources: echo "deb [signed-by=/etc/apt/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list
The candidate
channel is updated with release candidate builds, usually every second Tuesday of the month. These predate the corresponding stable builds by about three weeks.
# Add the "candidate" channel to your APT sources: echo "deb [signed-by=/etc/apt/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing candidate" | sudo tee /etc/apt/sources.list.d/syncthing.list
And finally.
# Update and install syncthing: sudo apt-get update sudo apt-get install syncthing