Do you know of a way to not start USB hub at boot up? #314
-
uhubctl is blocked by an USB DVD drive which drains too much power and needs an additionnal power source. Since the additional power source isn't usually turned on, the DVD drive fails at starting but keeps trying and prevents uhubctl from stopping the USB hub. If I could just prevent the USB hub from starting at boot, then I could prevent my DVD drive from starting altogether, and then set it on on will with usbhub and turning on its additional power source... Any advice welcome. Otherwise, I'll just unplug the DVD drive :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You can add something like this to /etc/rc.local:
This will turn power off as soon as possible at boot up. However, Linux kernel will enable power even before processing /etc. Just about the only way to achieve that would be patching Linux kernel USB driver to not enable power at boot. |
Beta Was this translation helpful? Give feedback.
You can add something like this to /etc/rc.local:
This will turn power off as soon as possible at boot up. However, Linux kernel will enable power even before processing /etc. Just about the only way to achieve that would be patching Linux kernel USB driver to not enable power at boot.