mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-12 23:19:05 +08:00
10 lines
310 B
Markdown
10 lines
310 B
Markdown
```bash
|
|
install -v -m755 -d /etc/modprobe.d
|
|
cat > /etc/modprobe.d/usb.conf << "EOF"
|
|
# Begin /etc/modprobe.d/usb.conf
|
|
install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
|
|
install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true
|
|
# End /etc/modprobe.d/usb.conf
|
|
EOF
|
|
```
|