Make sure you have the latest version of Suite!
Install Suite
- Create a file at - /lib/systemd/system/suite.servicewith the following contents:
[Unit]
Description=Suite service
After=network.target
[Service]
Environment="SUITE_USERNAME=<your_suite_email>"
Environment="SUITE_PASSWORD=<your_suite_password>"
User=<your-linux-user>
Group=<your-linux-group>
WorkingDirectory=/home/<your-linux-user>
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/suite start
ExecStop=/usr/bin/suite stop --wait
[Install]
WantedBy=multi-user.target
Replace:
- <your_suite_email>with your Suite email
- <your_suite_password>with your actual password
- <your-linux-user>and- <your-linux-group>accordingly
 β
If you want to mount multiple drives automatically:
- Ensure the service is running 
- suite drive listto gather your drive IDs.
- Replace the - ExecStartline with:- ExecStart=/usr/bin/suite start -d <drive-id> -d <drive-id>
- sudo systemctl restart suite.service
You can use the Suite CLI to interact with the running service.
β
β οΈ Currently, Suite must run as a Type=oneshot service. If Suite is stopped while your computer is still running, it will not be started until the next reboot.
