Skip to main content

logiccloud Activation Service for Raspberry Pi Devices

To activate a license key on a device, you first need to install the correct Activation Service for your device.

  1. Get the linux-activation-service binary from here. Alternatively, use wget to download it directly on the device.
wget https://logicclouddownload.blob.core.windows.net/edge-downloads/activation/linux/arm64/linux-activation-service/linux-activation-service
  1. Put the linux-activation-service binary to /usr/local/bin/.
mv ./linux-activation-service /usr/local/bin/
  1. Create logiccloud-activation.service in /etc/systemd/system with the following contents:
[Unit]
Description=Start the logiccloud activation service for licensing
After=multi-user.target

[Service]
ExecStart=/usr/local/bin/linux-activation-service
Type=simple

[Install]
WantedBy=multi-user.target
  1. Enable the service: sudo systemctl enable logiccloud-activation.service

  2. Start the service: sudo systemctl start logiccloud-activation.service

  3. Verify: sudo systemctl status logiccloud-activation.service