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 16:45] 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 60: 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 69: 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