modprobe -r ehci_hcd This kernel module is the responsible for the USB 2.0 support. After ran this command, I was able to copy a lot of files to my external hard drive and it was not suddenly dead anymore. But, as I removed the USB 2.0 support the transfer was running in a very l...
>>> ehci_hcd - USB 2.0 'Enhanced' Host Controller (EHCI) Driver hird=0 - hird:host initiated resume duration, +1 for each 75us (int) ignore_oc=N - ignore_oc:ignore bogus hardware overcurrent indications (bool) log2_irq_thresh=0 - log2_irq_thresh:log2 IRQ latency, 1-64 microfram...
负责加载内核模块的程序 modprobe 和 insmod 从 /etc/modprobe.d 下的配置文件中读取加载顺序,例如,如果 USB 驱动程序 (ehci_hcd、ohci_hcd 和 uhci_hcd...为此,执行以下命令创建文件 /etc/modprobe.d/usb.conf: install -v -m755 -d /etc/modprobe.d cat > /etc/modprobe.d/usb.conf...<< "EOF" ...
# usbcore 253952 8 usbhid,usb_storage,uas,ehci_hcd,uhci_hcd,ohci_hcd,ehci_pci,xhci_hcd In the output above, the ‘usb_storage’ module has been loaded to handle the USB storage device, allowing the system to interact with it. Understanding these fundamentals of kernel modules can help yo...
[ 4.616030] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 4.625198] fsl-ehci: Freescale EHCI Host controller driver [ 4.634675] ehci-platform: EHCI generic platform driver [ 4.640442] ehci-platform 1b000000.usb: EHCI Host Controller ...
...运行以下命令建立 /etc/modprobe.d/usb.conf 文件: 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.../etc/modprobe.d/usb.conf EOF 安装完成后清理工作: ...