Uninstalling¶
Package Manager Uninstall¶
Manual Uninstall¶
If you installed using install.sh:
What the Uninstaller Does¶
- Removes DKMS module for all kernel versions
- Removes source from
/usr/src/mt76-mt7925-*/ - Restores stock kernel modules (via
depmod) - Reloads modules (stock versions)
- Removes telemetry config file (if exists)
Manual DKMS Removal¶
If the uninstall script isn't available:
# Remove from all kernels (replace x.y.z with your version)
sudo dkms remove mt76-mt7925/x.y.z --all
# Remove source directory
sudo rm -rf /usr/src/mt76-mt7925-*
# Rebuild module dependencies
sudo depmod -a
# Reload stock modules
sudo modprobe -r mt7925e mt7925_common mt792x_lib mt76_connac_lib mt76
sudo modprobe mt7925e
Verify Removal¶
# Check DKMS status (should be empty)
dkms status | grep mt76-mt7925
# Check module path (should be kernel/, not updates/dkms/)
modinfo mt7925e | grep filename
After uninstalling, your system will use the stock kernel modules again.
Complete Cleanup¶
To remove all traces including config files: