-
-
Notifications
You must be signed in to change notification settings - Fork 5
Linux Troubleshooting
The install directory is owned by root. This happens if the installer was run with sudo instead of as a normal user.
Fix:
sudo chown -R $USER:$USER /opt/uxtu4linuxsudo apt install dmidecode # Debian / Ubuntu
sudo dnf install dmidecode # Fedora / RHEL
sudo pacman -S dmidecode # Arch
sudo zypper install dmidecode # openSUSEchmod +x /opt/uxtu4linux/src/Assets/Linux/ryzenadjIf the binary is missing entirely, run About -> Force update to re-download a clean release.
sudo systemctl status uxtu4linux.service
sudo systemctl start uxtu4linux.serviceCheck logs if it keeps failing:
journalctl -u uxtu4linux.service -n 50Then from inside the app go to Settings -> Daemon Service -> Install & enable to reinstall the service.
ryzenadj requires the ryzen_smu kernel module when Secure Boot is on and Secure Boot blocks unsigned modules.
Option 1 - Disable Secure Boot in your UEFI firmware settings.
Option 2 - Sign the module with your MOK key:
# Install build deps (Fedora example)
sudo dnf install cmake gcc gcc-c++ dkms openssl
# Clone and install ryzen_smu
git clone https://github.com/amkillam/ryzen_smu
cd ryzen_smu
sudo make dkms-install
# Enroll the DKMS key
sudo mokutil --import /var/lib/dkms/mok.pubReboot - the system will enter MOK Manager. Choose Enroll MOK, enter the password you set, and reboot again.
Verify the module loaded:
sudo dmesg | grep ryzen_smuA "kernel tainted" message is expected and harmless.
If dmidecode returned an unrecognised CPU name, manually set it in config.toml:
[Info]
cpu = AMD Ryzen 5 7535HS with Radeon GraphicsUse a known model string matching your actual hardware family. See Configuration for all [Info] keys.
UXTU4Linux requires Python 3.10+. Check your version:
python3 --versionInstall a newer version:
# Ubuntu 20.04 (via deadsnakes PPA)
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.11 python3.11-venv
# Fedora / RHEL
sudo dnf install python3.11
# Arch (always ships latest)
sudo pacman -S pythonThen re-run the installer.