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.
- 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
- Put the linux-activation-service binary to /usr/local/bin/.
mv ./linux-activation-service /usr/local/bin/
- 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
-
Enable the service:
sudo systemctl enable logiccloud-activation.service
-
Start the service:
sudo systemctl start logiccloud-activation.service
-
Verify:
sudo systemctl status logiccloud-activation.service