Advertisement
Guest User

Intel Centrino 6300N on blackPanther OS

a guest
May 17th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.12 KB | None | 0 0
  1. #Detect
  2. lspci -v | grep -iE -5 'wifi'
  3.  
  4. # results
  5. 04:00.0 Network controller: Intel Corporation Centrino Ultimate-N 6300 (rev 3e)
  6. Subsystem: Intel Corporation Centrino Ultimate-N 6300 3x3 AGN
  7. Flags: bus master, fast devsel, latency 0, IRQ 36
  8. Memory at f6200000 (64-bit, non-prefetchable) [size=8K]
  9. Capabilities: <access denied>
  10. Kernel driver in use: iwlwifi
  11. Kernel modules: iwlwifi
  12.  
  13. # solutions for test
  14. modprobe -r iwlwifi
  15. modprobe iwlwifi 11n_disable=8
  16.  
  17. # pernament solutions if test is successful
  18. echo "options iwlwifi 11n_disable=8" > /etc/modprobe.d/intel-6300-iwlwifi-disable11n.conf
  19.  
  20. # optional 1 - for powersave
  21. echo "wifi.powersave = 2" > /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
  22.  
  23. # Optional 2 - I recommend that your regulatory domain be set explicitly. Check yours:
  24. iw reg get
  25.  
  26. #If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:
  27. iw reg set DE
  28.  
  29. #Of course, substitute your country code if not Germany. Set it permanently. change the last line to read:
  30. echo "REGDOMAIN=DE" > /etc/default/crda
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement