wireless

Connect WiFi without GUI on Debian Linux

Install Required Tools 1 2 3 4 apt install \ wpasupplicant \ wireless-tools \ --no-install-recommends Identify your wireless interface First, let’s figure out your wireless interface name using 1 ip link You’ll see output like this: 1 2 3 4 5 6 7 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UP mode DEFAULT group default qlen 1000 link/ether 98:fa:9b:31:a4:h6 brd ff:ff:ff:ff:ff:ff altname enp0s31f6 3: wlp2s0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 link/ether d0:ab:d5:11:4r:5c brd ff:ff:ff:ff:ff:ff Look for the line that starts with something like wl???? — that’s your wireless interface. In this example, it’s wlp2s0. Make a note of it, you’ll use it in the next steps. ...

April 13, 2025 · 2 min · widnyana

The Curse of Intel E1000e

Understanding and Solving Intel E1000e Driver Issues Intel’s E1000e network driver has plagued Linux users for years, causing frustrating network connectivity issues, hardware unit hangs, and system instability. If you’ve encountered the dreaded “Hardware Unit Hang” error on your server or desktop, you’re not alone. This post will help you understand these issues and provide practical solutions to resolve them. Common E1000e Issues and Error Messages The E1000e driver issues typically manifest as: ...

April 4, 2025 · 4 min · widnyana

Installing MongoDB 7 on Fedora 40 Workstation

I’m in the need to install mongosh on my Fedora Linux 40 Workstation, as a context the MongoDB server is using version 7.x running in container using docker-compose.yaml on docker version 26.1.4. ...

June 16, 2024 · 2 min · widnyana