Difference between revisions of "Installing I3M Linux Daemon on Airtop3"

From fit-PC wiki
Jump to: navigation, search
(Created page with "* Integrated interactive information monitor I<sup>3</sup>M is a GUI system integrated in the front panel of Airtop * Download and install the following packa...")   (change visibility)
 
(Re-installing I3M Linux Daemon)   (change visibility)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
* Integrated interactive information monitor [[Airtop:I3M | I<sup>3</sup>M]] is a GUI system integrated in the front panel of Airtop
 
* Integrated interactive information monitor [[Airtop:I3M | I<sup>3</sup>M]] is a GUI system integrated in the front panel of Airtop
* Download and install the following package:
+
* Download I3M monitoring tools:
 
<pre>
 
<pre>
$ wget https://fit-iot.com/files/download/airtop/sw/I3M/Linux/airtop-fpsvc_3.0-2.deb
+
$ sudo wget https://fit-iot.com/files/download/airtop/sw/I3M/Linux/airtop-fpsvc -O /usr/local/sbin/airtop-fpsvc
$ sudo dpkg -i airtop-fpsvc_3.0-2.deb
+
$ sudo wget https://fit-iot.com/files/download/airtop/sw/I3M/Linux/gpu-thermald -O /usr/local/sbin/gpu-thermald
...
+
$ sudo chmod +x /usr/local/sbin/*
Created symlink /etc/systemd/system/multi-user.target.wants/airtop-fpsvc.service → /lib/systemd/system/airtop-fpsvc.service.
+
</pre>
Created symlink /etc/systemd/system/multi-user.target.wants/gpu-thermald.service → /lib/systemd/system/gpu-thermald.service.
+
* Fix dependencies:
 +
<pre>
 +
$ lib_path="/usr/lib/x86_64-linux-gnu"
 +
$ [ -e $lib_path/libsensors.so.4 ] || sudo ln -s $lib_path/libsensors.so.*.0.0 $lib_path/libsensors.so.4
 +
</pre>
 +
* Create file /etc/rc.local with the following content:
 +
<pre>
 +
#!/bin/bash
 +
modprobe i2c-i801
 +
sleep 1
 +
/usr/local/sbin/airtop-fpsvc
 +
[ "$(lspci -nn | grep VGA | grep NVIDIA)" ] && /usr/local/sbin/gpu-thermald
 +
exit 0
 +
</pre>
 +
* Make it executable:
 +
<pre>
 +
$ sudo chmod +x /etc/rc.local
 +
</pre>
 +
* Ensure I3M panel is working
 +
<pre>
 +
$ sudo /etc/rc.local
 +
</pre>
 +
* Reboot, ensure I3M panel is still working
 +
<pre>
 +
$ sudo reboot
 
</pre>
 
</pre>
* Note, the package adds "acpi_enforce_resources=lax" string to the kernel boot line
 
* Reboot the Airtop after installation
 
 
* Now you can navigate through menus between multiple screens of the I<sup>3</sup>M that display system information, temperatures, power consumption and notifications
 
* Now you can navigate through menus between multiple screens of the I<sup>3</sup>M that display system information, temperatures, power consumption and notifications

Latest revision as of 06:43, 23 July 2020

  • Integrated interactive information monitor I3M is a GUI system integrated in the front panel of Airtop
  • Download I3M monitoring tools:
$ sudo wget https://fit-iot.com/files/download/airtop/sw/I3M/Linux/airtop-fpsvc -O /usr/local/sbin/airtop-fpsvc
$ sudo wget https://fit-iot.com/files/download/airtop/sw/I3M/Linux/gpu-thermald -O /usr/local/sbin/gpu-thermald
$ sudo chmod +x /usr/local/sbin/*
  • Fix dependencies:
$ lib_path="/usr/lib/x86_64-linux-gnu"
$ [ -e $lib_path/libsensors.so.4 ] || sudo ln -s $lib_path/libsensors.so.*.0.0 $lib_path/libsensors.so.4
  • Create file /etc/rc.local with the following content:
#!/bin/bash
modprobe i2c-i801
sleep 1
/usr/local/sbin/airtop-fpsvc
[ "$(lspci -nn | grep VGA | grep NVIDIA)" ] && /usr/local/sbin/gpu-thermald
exit 0
  • Make it executable:
$ sudo chmod +x /etc/rc.local
  • Ensure I3M panel is working
$ sudo /etc/rc.local
  • Reboot, ensure I3M panel is still working
$ sudo reboot
  • Now you can navigate through menus between multiple screens of the I3M that display system information, temperatures, power consumption and notifications