Set up Wifi from terminal

shreyashah1903

shreyashah1903

Posted on May 14, 2024

Set up Wifi from terminal


sudo apt install wpa_supplicant
# Find out what is the wifi name
ip link set dev wlp3s0 up

#If wpa_supplicant conf file does not exist
wpa_passphrase <wifi_name> <wifi_password> | tee /etc/wpa_supplicant/wpa_supplicant.conf

wpa_supplicant -B -c /etc/wpa_supplicant/wpa_supplicant.conf -i wlp3s0
dhclient wlp3s0
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
shreyashah1903
shreyashah1903

Posted on May 14, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

What was your win this week?
weeklyretro What was your win this week?

November 29, 2024

Where GitOps Meets ClickOps
devops Where GitOps Meets ClickOps

November 29, 2024

How to Use KitOps with MLflow
beginners How to Use KitOps with MLflow

November 29, 2024

Modern C++ for LeetCode 🧑‍💻🚀
leetcode Modern C++ for LeetCode 🧑‍💻🚀

November 29, 2024