meta data for this page
  •  

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
hw:lenovo_thinkpad_x200s [2022/03/16 11:40] niziakhw:lenovo_thinkpad_x200s [2024/11/26 10:58] (current) niziak
Line 6: Line 6:
   * ''Intel Corporation Ultimate N WiFi Link 5300''   * ''Intel Corporation Ultimate N WiFi Link 5300''
   * [[https://wiki.debian.org/iwlwifi|Debian WIKI: iwlwifi]]   * [[https://wiki.debian.org/iwlwifi|Debian WIKI: iwlwifi]]
 +
 +==== Issues: ====
 +
 +Sometimes it stops TXing (on 5GHz band).
 +<file conf /etc/sysctl.d/ecn.conf>
 +net.ipv4.tcp_ecn=0
 +</file>
 +<code bash>systemctl restart systemd-sysctl</code>
 +
 +
 +2nd workaround (disable power saving):
 +<file rule /etc/udev/rules.d/81-wifi-powersave.rules>
 +ACTION=="add", SUBSYSTEM=="net", KERNEL=="wl*", RUN+="/usr/bin/iw dev $name set power_save off"
 +</file>
 +
 +<file conf /etc/modprobe.d/iwlwifi.conf>
 +option iwlwifi power_save=0
 +</file>
 +
  
 ===== GPU ===== ===== GPU =====
Line 13: Line 32:
 i965 in GM45 chipset i965 in GM45 chipset
  
 +<code bash>
 sudo apt install vainfo sudo apt install vainfo
 vainfo vainfo
Line 21: Line 41:
       VAProfileMPEG2Simple            : VAEntrypointVLD       VAProfileMPEG2Simple            : VAEntrypointVLD
       VAProfileMPEG2Main              : VAEntrypointVLD       VAProfileMPEG2Main              : VAEntrypointVLD
 +</code>
  
 +<code bash>
 sudo apt install intel-gpu-tools sudo apt install intel-gpu-tools
 sudo intel_gpu_top sudo intel_gpu_top
 +</code>
  
 +{{:hw:pasted:20220316-114217.png}}
 +
 +
 +<code bash>
 sudo apt-cache show i965-va-driver-shaders sudo apt-cache show i965-va-driver-shaders
 ... ...
-. 
  This package contains also contains the non-free encode shaders for VP8, VP9,  This package contains also contains the non-free encode shaders for VP8, VP9,
  HEVC and AVC for generation 7.5 hardware or newer.  HEVC and AVC for generation 7.5 hardware or newer.
  
 +</code>
 +
 +<code bash>
 +sudo apt install libvdpau-va-gl1
 +</code>
 +
 +<file conf /etc/X11/xorg.conf.d/20-intel.conf>
 +Section "Device"
 +    Identifier "Intel Graphics"
 +    Driver "intel"
 +    Option "AccelMethod" "sna"
 +    Option "TearFree" "true"
 +    Option "SwapbuffersWait" "false"
 +EndSection
 +</file>
  
  
Line 39: Line 79:
 [[https://wiki.archlinux.org/index.php/Fprint|Fprint]] [[https://wiki.archlinux.org/index.php/Fprint|Fprint]]
  
-apt-get install libpam-fprintd fprintd+<code bash>apt-get install libpam-fprintd fprintd</code>
  
 [[https://wiki.debian.org/SecurityManagement/fingerprint%20authentication]] [[https://wiki.debian.org/SecurityManagement/fingerprint%20authentication]]
Line 48: Line 88:
 To add a signature for a finger, run To add a signature for a finger, run
  
-$ fprintd-enroll+<code bash>$ fprintd-enroll</code>
  
 or create a new signature for all fingers or create a new signature for all fingers
  
 +<code bash>
 $ fprintd-delete "$USER" $ fprintd-delete "$USER"
 $ for finger in {left,right}-{thumb,{index,middle,ring,little}-finger}; do fprintd-enroll -f "$finger" "$USER"; done $ for finger in {left,right}-{thumb,{index,middle,ring,little}-finger}; do fprintd-enroll -f "$finger" "$USER"; done
  
 sudo pam-auth-update sudo pam-auth-update
 +</code>
 or or