You are not logged in.
So I would like to run the commands
sudo modprobe -r b43
sudo modprobe b43
on startup. I have tried to add them to the startup script, but that apparently did not take.
Anyway its possible?
Last edited by bobhund (2024-06-15 14:00:11)
Offline
@bobhund
How about creating /etc/rc.local
#!/bin/sh -e
modprobe -r b43
modprobe b43
exit 0
chmod +x /etc/rc.local
...Welcome to the family...
Offline
Or using 'systemd service unit file' or via 'crontab'.
Offline
@bobhund
How about creating /etc/rc.local#!/bin/sh -e
modprobe -r b43
modprobe b43
exit 0chmod +x /etc/rc.local
That worked perfect.
Offline