Sildur

L4T Ubuntu GPU driver update

May 18th, 2026 (edited)
995
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.70 KB | None | 0 0
  1. # Upgrade from 32.3.1 to 32.7.4 BSP:
  2. # Vulkan API 1.1 to 1.2
  3. sudo apt update
  4. sudo apt dist-upgrade
  5.  
  6. # add the support for the noble-32-7 dist
  7. echo "deb [signed-by=/etc/apt/keyrings/theofficialgman-L4T.asc] https://theofficialgman.github.io/l4t-debs/ l4t noble-32-7" | sudo tee /etc/apt/sources.list.d/theofficialgman-L4T-32-7.list
  8.  
  9. # remove BSP version restrictions
  10. sudo rm -f /etc/apt/preferences.d/00-switch-bsp-restrictions
  11.  
  12. # update and install new nvidia-bsp-32-7 meta package
  13. sudo apt update
  14. sudo apt install -y -o Dpkg::Options::="--force-confdef" nvidia-bsp-32-7
  15.  
  16. ----------------------------------------------------------------------------------------------------------
  17. ----------------------------------------------------------------------------------------------------------
  18. ----------------------------------------------------------------------------------------------------------
  19.  
  20. # Downgrade from 32.7.4 back to 32.3.1 BSP:
  21. # Vulkan API 1.2 back to 1.1
  22. sudo apt update
  23. sudo apt dist-upgrade
  24.  
  25. # remove the noble-32-7 dist
  26. sudo rm -f /etc/apt/sources.list.d/theofficialgman-L4T-32-7.list
  27.  
  28. # temporarily set L4T repo priority higher to force package downgrades
  29. sudo sed -i 's/511/1001/g' /etc/apt/preferences.d/00-switch-repo-priority
  30.  
  31. # disable jetson specific configuration scripts
  32. sudo mkdir -p /opt/nvidia/l4t-packages
  33. sudo touch /opt/nvidia/l4t-packages/.nv-l4t-disable-boot-fw-update-in-preinstall
  34.  
  35. # downgrade to nvidia-bsp-32-3 meta package,
  36. sudo apt install -y -o Dpkg::Options::="--force-confdef" --allow-downgrades nvidia-bsp-32-3
  37.  
  38. # cleanup and restore repo priority
  39. sudo rm -rf /opt/nvidia/l4t-packages
  40. sudo sed -i 's/1001/511/g' /etc/apt/preferences.d/00-switch-repo-priority
Advertisement
Add Comment
Please, Sign In to add comment