Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. sudo apt-get update
  2. sudo apt-get install -y wpasupplicant wireless-tools
  3.  
  4. sudo iwconfig
  5. # The above command confirms the wifi adapter name
  6. sudo vim /etc/networking/interfaces/
  7. # Add the below to the bottom of the file
  8. ```
  9. auto wlp4s0
  10. iface wlp4s0 inet dhcp
  11. wpa-ssid Guest
  12. wpa-psk Spheres@@2018
  13. ```
  14. sudo reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement