You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.0 KiB

  1. ## Getac T800 G2
  2. Hardware Probe Info - https://linux-hardware.org/?probe=fe815f3c1f (Debian)
  3. ### Install Latest Kernel
  4. Touch screen kernel modules are missing in 5.14 kernel(Used by Redhat 9.2),upgrade the kernel to 6.x to enable and install touchscreen on Getac T800 G2.
  5. ```
  6. $ uname -a
  7. Linux localhost.localdomain 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 12 10:45:03 EDT 2023 x86_64 x86_64 x86_64 GNU/Linux
  8. ```
  9. #### Enable and install ELRepo
  10. ELRepo is an RPM repository for Enterprise Linux Packages.ELRepo supports Redhat and redhat based distributions.
  11. Import the public and install the ELrepo RPM using the below command.
  12. ```
  13. $ sudo rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
  14. $ sudo dnf install https://www.elrepo.org/elrepo-release-9.el9.elrepo.noarch.rpm
  15. ```
  16. #### Install the latest stable mainline stable kernel
  17. ```
  18. $sudo dnf --enablerepo=elrepo-kernel install kernel-ml
  19. ```
  20. After installing the latest kernel verify the kernel version by entering the following command, and for changes to reflect reboot the system.
  21. ```
  22. $ sudo grubby --default-kernel
  23. /boot/vmlinuz-6.5.6-1.el9.elrepo.x86_64
  24. ```
  25. ### Installing eGTouch Driver .
  26. ```
  27. $ git clone https://sovran.dev/vinay/getac-rugged.git
  28. $ cd getac-rugged/eGTouch_v2.5.11703/
  29. ```
  30. Clone the git repository and change the directory into eGTouch_v2.5.11703 and run the setup script
  31. ```
  32. $ sudo ./setup.sh
  33. ```
  34. 1. ```Yes``` to agree with Patent Declaration.
  35. 2. Press ```2``` for USB Controller Interface. and press Enter to confirm the touch controller is linked with the device.
  36. 3. Press ```Y``` for the requirement for the monitor rotation and press Enter to confirm Monitor Name
  37. 4. Press ```Y``` for beep sound and Default Controller as ```1```
  38. Reboot the sytem for changes to work.
  39. ### References
  40. [1] https://wiki.crowncloud.net/?How_to_Install_Kernel_6_x_on_RockyLinux_9
  41. [2] https://support.getac.com/Service/F0021/Index#tab4
  42. [3] https://www.eeti.com/drivers_Linux.html
  43. [4] https://forums.rockylinux.org/t/getac-t800-g2-egalaxtouch-driver-installation/11447