User Tools

Site Tools


config:nuc-info

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
config:nuc-info [2019/03/03 22:05] – created Wulf Rajekconfig:nuc-info [2023/05/29 11:55] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== NUC Info ====== ====== NUC Info ======
 +
 +===== NUC6CAYH =====
 +General NUC Firmware updates/info:
 +Downloads for Intel® NUC Kit NUC6CAYH\\
 +https://downloadcenter.intel.com/product/95062/Intel-NUC-Kit-NUC6CAYH\\
 +
 +Power Button Menu BIOS Update Instructions for Intel® NUC\\
 +https://www.intel.com/content/www/us/en/support/articles/000006030/mini-pcs.html\\
 +
 +F7 BIOS Update Instructions for Intel® NUC\\
 +https://www.intel.com/content/www/us/en/support/articles/000005850/mini-pcs.html\\
 +
 +BIOS Update [AYAPLCEL.86A]\\
 +https://downloadcenter.intel.com/download/28105/BIOS-Update-AYAPLCEL-86A-?product=95062\\
 +https://downloadmirror.intel.com/28105/eng/AY_0055_ReleaseNotes.pdf\\
 +
 +
  
 ===== NUC8i5BEH ===== ===== NUC8i5BEH =====
Line 9: Line 26:
 </code> </code>
  
 +Notes:\\
 +LMDE3 doesn't have up to date graphics drivers. Linux Mint 19 does.
 +Popping sound on shutdown/reboot can be removed by setting ALSA to mute the soundcard before shutting down:
 +<code>sudo vi /etc/init.d/alsa-utils</code>
 +uncomment the line
 +<code>
 +          mute_and_zero_levels "$TARGET_CARD" || EXITSTATUS=1
 +</code>
 +
 +===== NUC8 Fan Replacement =====
 +
 +Model BSC0805HA-00 
 +Maker Delta Electronics Inc / DC Brushless
 +DC 5V 0.60A
 +
 +or
 +
 +AVC BAZB0808R5H
 +DC 5V 0.50A
 +AVC.com
 +
 +
 +Replace fan instructions:
 +https://www.ifixit.com/Guide/Fix+NUC8i7BEH+overheating/131345
 +
 +Sellers:
 +https://de.aliexpress.com/item/1005003041859874.html
 +https://www.aliexpress.com/item/1005002713180613.html
  
 ===== Various CPU comparisons and benchmarks ===== ===== Various CPU comparisons and benchmarks =====
Line 63: Line 108:
 Intel Core i5-6500 @ 3.20GHz  7244 Intel Core i5-6500 @ 3.20GHz  7244
 </code> </code>
 +
 +==== Intel Graphics ====
 +
 +Mint Intel Driver Config
 +<code>
 +sudo apt-get remove xserver-xorg-video-intel
 +sudo reboot
 +</code>
 +
 +confirm with 
 +<code>inxi -G</code>
 +and 
 +<code>grep modesetting /var/log/Xorg.0.log</code>
 +
 +
 +To revert to Intel driver:
 +<code>
 +sudo apt-get install xserver-xorg-video-intel
 +sudo reboot
 +</code>
 +
 +X 2D performance better on Intel driver vs modesetting with optimised SNA (as opposed to generic GLAMOR)
 +
 +glxgears
 +
 +<code>
 +/etc/xorg.conf.d/20-video.conf
 +/etc/X11/xorg.conf
 +Section "Device"
 +    Identifier  "Card0"
 +    Driver      "intel"
 +    BusID       "PCI:0:2:0"
 +    Option      "AccelMethod"   "SNA"
 +#    Option      "AccelMethod"   "glamor"
 +    Option      "DRI"  "3"
 +EndSection
 +</code>
 +
 +<code>
 +$ cat /etc/X11/xorg.conf.d/20-intel.conf 
 +Section "Device"
 +  Identifier  "Intel Graphics"
 +  Driver      "intel"
 +  Option      "AccelMethod"     "sna"
 +  Option      "TearFree"        "true"
 +  Option      "DRI"             "3"
 +</code>
 +
 +Intel Info:
 +https://wiki.archlinux.org/index.php/intel_graphics
 +
config/nuc-info.1551650731.txt.gz · Last modified: 2023/05/29 11:53 (external edit)