Uninstalling KAE 1.0
If you do not need KAE 1.0 installed using source code or want to install a new version of KAE, refer to this section to uninstall KAE through the make uninstall command.
Procedure
- Use an SSH tool to remotely log in to the Linux CLI as the root user.
- Run the make uninstall command to uninstall the KAE driver packages and library packages that are installed using source code.
- Uninstall the driver.
1 2
cd kae_driver make uninstall
- Uninstall the warpdrive driver development library.
1 2
cd warpdrive make uninstall
- Uninstall the KAE.
1 2
cd KAE make uninstall
- Uninstall the driver.
- Restart the system or use commands to manually uninstall the drivers loaded to the kernel, and check whether the drivers are successfully uninstalled.
- Check drivers that have been loaded to the kernel.
1lsmod | grep uacce
Command output:1uacce 36864 3 hisi_sec2,hisi_qm,hisi_hpre
- Uninstall the drivers in sequence.
1 2 3 4
rmmod hisi_hpre rmmod hisi_sec2 rmmod hisi_qm rmmod uacce
- Check whether the drivers are uninstalled successfully.
1lsmod | grep uacce
- Check drivers that have been loaded to the kernel.
Parent topic: Uninstalling KAE Installed Using Source Code