禁用 USB 设备:USB2.0-CRW(通用)

禁用 USB 设备:USB2.0-CRW(通用)

我的笔记本电脑装有 Ubuntu 12.10,但读卡器有问题。它的使用率始终为 100%,powertop 显示其功耗为 16W 甚至更高(对于读卡器来说,这实在是太多了)。以下是 powertop 中的一行:

16.7 W 100.0% USB device: USB2.0-CRW (Generic)

我如何减少唤醒或禁用此读卡器?(我很少使用读卡器)

答案1

我遇到了同样的问题,读卡器消耗的电量最高。这是我所做的。

:find the card reader
lsusb
Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller


:search the kernel module(replace rts with your card name/id)
lsmod | grep rts 

rtsx_usb_ms            20480  0
memstick               16384  1 rtsx_usb_ms
rtsx_usb_sdmmc         28672  0
rtsx_usb               20480  2 rtsx_usb_sdmmc,rtsx_usb_ms


:remove module with dependancies
rmmod rtsx_usb_ms
rmmod rtsx_usb_sdmmc
rmmod rtsx_usb

如果一切顺利,你可以永久将模块列入黑名单

相关内容