You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there, recently have tried to test it on Debian 10 machine and i had the same problem like @not-in-stock encountered a while back ( #10 ). Driver is working fine, but the interface is down on boot.
After a few tests, I came up to this solution:
Install net-tools . sudo apt install net-tools
Than you should get interface name of your device ( In my case it was wlp4s0 use ip a or whatever to get it).
The last step is to create a service that will run on system startup and it will UP the interface.
$ cd /etc/systemd/system/
$ sudo nano asus_wifi.service
[Unit]
After=network.target
Before=network-online.target
[Service]
ExecStart=ifconfig your_interface_name up
[Install]
WantedBy=multi-user.target
$ sudo systemctl enable asus_wifi.service
I think there are better ways to fix this problem, but this worked well enough for me.
Good luck!
EDIT: Works on Debian 11.
The text was updated successfully, but these errors were encountered:
Hey there, recently have tried to test it on Debian 10 machine and i had the same problem like @not-in-stock encountered a while back ( #10 ). Driver is working fine, but the interface is down on boot.
After a few tests, I came up to this solution:
sudo apt install net-tools
ip a
or whatever to get it).I think there are better ways to fix this problem, but this worked well enough for me.
Good luck!
EDIT: Works on Debian 11.
The text was updated successfully, but these errors were encountered: