Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This driver on Debain 10/11 #14

Open
infirms opened this issue Aug 13, 2021 · 0 comments
Open

This driver on Debain 10/11 #14

infirms opened this issue Aug 13, 2021 · 0 comments

Comments

@infirms
Copy link

infirms commented Aug 13, 2021

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.

@mareksuscak mareksuscak pinned this issue Aug 13, 2021
@infirms infirms changed the title This driver on Debain 10 This driver on Debain 10/11 Aug 29, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant