KXStudio Website https://kx.studio/
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.

Documentation:Manual:video_drivers.php 4.0KB

11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. $PAGE_TITLE = "KXStudio";
  3. $PAGE_TYPE = "NONKXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Documentation", "/Documentation", "/Documentation:Manual:video_drivers");
  5. $PAGE_SOURCE_2 = ARRAY("Documentation", "Manual", "Installing non-free video drivers");
  6. include_once("includes/header.php");
  7. ?>
  8. <div class="level1">
  9. <p>
  10. The majority of modern day PC hardware uses display technology from either Nvidia, ATI/AMD, or Intel.
  11. </p>
  12. <p>
  13. Intel drivers are open source but the official Nvidia and ATI/AMD drivers are proprietary. Fresh KXStudio installations include official drivers for Intel video but only unofficial drivers for Nvidia and ATI/AMD. The official Nvidia or ATI/AMD drivers are easily added if required, and they often provide superior performance (especially for OpenGL 3D and gaming), extra or more complete features, and better power management.
  14. </p>
  15. </div>
  16. <h2><span name="what_type_of_video_hardware_do_i_have" id="what_type_of_video_hardware_do_i_have">What type of video hardware do I have?</span></h2>
  17. <div class="level2">
  18. <p>
  19. If you&#039;re unsure what vendor or model video hardware you have installed in your machine, open a terminal (such as Konsole) and type:
  20. </p>
  21. <pre class="code">lspci</pre>
  22. <p>
  23. lspci will &#039;List PCI&#039; hardware installed on your machine, including your video device - the make and model of which is listed as being a &#039;VGA compatible controller&#039;. If it is a Nvidia or ATI/AMD device then you may want to switch to the non-free driver, if its available for your hardware, to take advantage of the extra features and better performance.
  24. </p>
  25. </div>
  26. <h2><span name="using_the_additional_drivers_tool" id="using_the_additional_drivers_tool">Using the &#039;Additional Drivers&#039; tool</span></h2>
  27. <div class="level2">
  28. <p>
  29. The &#039;Additional Drivers&#039; tool can be used to simplify the process of downloading and installing or removing non-free video drivers. It requires that you are connected to the internet for it to fetch the requested drivers. From the KX Studio desktop menu you can find it under the Applications → System sub-menu or you may find it easier to search for it.
  30. </p>
  31. <p>
  32. When you run the Additional Drivers tool it will check the type of video hardware you have before presenting a new window in which you will see a list of compatible drivers, if any are available. You may be presented with more than one suitable driver but it&#039;s safe to use the recommended version if you&#039;re unsure which version of the driver is best for you. Select a driver, then click &#039;Activate&#039; which will then download and install the new driver. The new driver will not take effect until you have rebooted.
  33. </p>
  34. </div>
  35. <h2><span name="nvidia_video_fixes_and_tweaks" id="nvidia_video_fixes_and_tweaks">Nvidia video fixes and tweaks</span></h2>
  36. <div class="level2">
  37. <p>
  38. To enable the screen brightness control keys and disable the NVIDIA boot logo on my NVIDIA-using laptop using the non-free nvidia driver I had to create a file located at /usr/share/X11/xorg.conf.d/10-nvidia-brightness.conf containing:
  39. </p>
  40. <pre class="code">Section &quot;Device&quot;
  41. Identifier &quot;Device0&quot;
  42. Driver &quot;nvidia&quot;
  43. VendorName &quot;NVIDIA Corporation&quot;
  44. BoardName &quot;GeForce 8600M&quot;
  45. Option &quot;RegistryDwords&quot; &quot;EnableBrightnessControl=1&quot;
  46. Option &quot;NoLogo&quot; &quot;true&quot;
  47. EndSection</pre>
  48. </div>
  49. <h2><span name="additional_amd_issues" id="additional_amd_issues">Additional AMD issues</span></h2>
  50. <div class="level2">
  51. <p>
  52. For thorough information about the proprietary AMD drivers, including how to install more up-to-date drivers or how to remove the proprietary drivers and return to the <acronym title="Free/Libre and Open Source Software">FLOSS</acronym> ones, see the community wiki: <a href="http://wiki.cchtml.com/" class="urlextern" title="http://wiki.cchtml.com/" rel="nofollow">wiki.cchtml.com</a>
  53. </p>
  54. </div>
  55. <p><br/></p>
  56. <?php
  57. include_once("includes/footer.php");
  58. ?>