🚀 Urmobo Installation on Linux Devices
Before starting the installation, visit Microsoft's official page and follow the step-by-step instructions to install the .NET Runtime 8 on your device:
🔗 Install .NET Runtime on Linux
Next, on the platform, go to Help and Support > Downloads and download the .sh file, which contains all the necessary commands for the installation.
🖥️ Open the terminal in the folder where the file was downloaded (usually the Downloads folder) to proceed with the installation.
🛠️ Configuring the Installation on Linux
Run the command below to gain root privileges:
sudo su
Change the file’s read, write, and execute permissions with the command:
chmod a+rwx UrmoboLinuxSetup.sh
Run the installation script using:
./UrmoboLinuxSetup.sh
or
TOKEN=[token] ./UrmoboLinuxSetup.shWhen the installation is complete, if you did not pass the token in the installation command, the config.txt file will automatically open so you can enter the entity token (the entity token is available within the management platform).
After entering the token, save the file by pressing CTRL + O, then close it with CTRL + X. To finish, run the following command to start the application:
systemctl start urmobo_mdm.service
Done! Your device is now ready for management on the platform.
🛠️ Troubleshooting
If your device does not appear in the portal, run the command below to check if the service started correctly:
sudo systemctl status urmbo_mdm.serviceThe output should be similar to the image below:
If urmobo's service has not started correctly, check the token by running the command:
sudo nano /usr/bin/Urmobo/MDM/config.txtThis will cause the token configuration window to open again and after correcting the token you must restart the service with the command:
sudo systemctl restart urmobo_mdm.service