如何从命令行重置USB设备?


164

是否可以在不与PC物理断开/连接的情况下重置USB设备的连接?

具体来说,我的设备是数码相机。我正在使用gphoto2,但是最近出现“设备读取错误”,因此我想尝试对连接进行软件重置。

据我所知,没有为相机加载内核模块。唯一看起来相关的是usbhid


您正在使用哪个版本的Ubuntu?
用户

我尝试了Li Lo和ssokolow的两种解决方案,但我得到的只是权限被拒绝,如果我使用usbreset代码或命令行“ echo 0> ...”,我会使用sudo,我的USB设备也归root所有,但我可以在没有管理员权限的情况下使用它们(摄像头..)

1
如果出现读取错误,则可能有一些数据损坏。如果您的相机使用外部存储卡(例如MicroSD),则将其连接到计算机并运行fsck可能是明智的。
TSJNachos117,2014年

Answers:


118

将以下内容另存为 usbreset.c

/* usbreset -- send a USB port reset to a USB device */

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>

#include <linux/usbdevice_fs.h>


int main(int argc, char **argv)
{
    const char *filename;
    int fd;
    int rc;

    if (argc != 2) {
        fprintf(stderr, "Usage: usbreset device-filename\n");
        return 1;
    }
    filename = argv[1];

    fd = open(filename, O_WRONLY);
    if (fd < 0) {
        perror("Error opening output file");
        return 1;
    }

    printf("Resetting USB device %s\n", filename);
    rc = ioctl(fd, USBDEVFS_RESET, 0);
    if (rc < 0) {
        perror("Error in ioctl");
        return 1;
    }
    printf("Reset successful\n");

    close(fd);
    return 0;
}

在终端中运行以下命令:

  1. 编译程序:

    $ cc usbreset.c -o usbreset
    
  2. 获取要重置的USB设备的总线和设备ID:

    $ lsusb  
    Bus 002 Device 003: ID 0fe9:9010 DVICO  
    
  3. 使我们的编译程序可执行:

    $ chmod +x usbreset
    
  4. 以sudo特权执行程序;通过运行以下命令对<Bus><Device>id 进行必要的替换lsusb

    $ sudo ./usbreset /dev/bus/usb/002/003  
    

以上程序的来源:http : //marc.info/?l=linux-usb&m=121459435621262&w=2


3
这适用于ubuntu 13.10。设备ID可能有所不同。为了获得鼠标,我在几个shell命令中包裹了上面的代码echo $(lsusb | grep Mouse) mouse=$( lsusb | grep Mouse | perl -nE "/\D+(\d+)\D+(\d+).+/; print qq(\$1/\$2)") sudo /path/to/c-program/usbreset /dev/bus/usb/$mouse
knb 2013年

1
我的外部驱动器似乎无法检测到(我必须重新连接USB电缆);它是在usb3.0台式机PC端口上连接的usb2.0;当我运行时usbreset /dev/bus/usb/011/001,它是2个USB 3.0根集线器之一lsusb,它出现错误:“ ioctl中的错误:是目录”,有任何想法吗?我在两个USB 3.0集线器上都尝试过
Aquarius Power

1
如果有人在Ubuntu 16.04(登录dmesg后用“ input irq status -75”填充dmesg)登录后冻结了(usb)鼠标,那么我可以确认这是唯一对我有用的解决方案。谢谢
奥古斯丁贝兹

1
@ Aquarius,我也收到相同的错误“ ioctl中的错误:是目录”。解决了吗?
ransh

1
在这里查看我的答案askubuntu.com/a/988297/558070使用与该答案相同的重置方法,但也可以简化设备的列表和搜索。
mcarans

58

我以前在您的特定情况下还没有找到自己,所以不确定它是否能满足要求,但是我发现重置USB设备的最简单方法是以下命令:(无需外部应用程序)

sudo sh -c "echo 0 > /sys/bus/usb/devices/1-4.6/authorized"
sudo sh -c "echo 1 > /sys/bus/usb/devices/1-4.6/authorized"

那是我用来重置Kinect的实际设置,因为libfreenect似乎没有API可以使其重新进入睡眠状态。它在我的Gentoo盒子上,但是内核应该足够新,可以为sysfs使用相同的路径结构。

显然不会,1-4.6但是您可以从内核日志(dmesg)中拉出该设备路径,也可以使用类似的lsusb方式获取供应商和产品ID,然后使用类似这样的快速命令来列出路径与不同供应商的关系/产品ID对:

for X in /sys/bus/usb/devices/*; do 
    echo "$X"
    cat "$X/idVendor" 2>/dev/null 
    cat "$X/idProduct" 2>/dev/null
    echo
done

目录不存在:SH:1:无法创建/sys/bus/usb/devices/1-3.1:1.0/authorized
萨科Marchildon

看来他们已经改变了usbfs文件系统的布局。一旦我不那么困倦,我将尝试弄清新的工作方式在Ubuntu上是什么。
ssokolow 2012年

9
谢谢您的辛勤工作!也许您还应该提到echo 1 > /sys/bus/usb/devices/whatever/authorized在禁用设备后立即执行脚本以重新启用设备。我在鼠标和USB键盘上都做到了这一点,最后得到了一个完全失聪的系统:)
Avio 2013年

1
如果将值自动重新设置为1,这很奇怪,因为将其设置为0会告诉系统您不希望设备获得“授权”,因此无法访问。
Tim Tisdall

2
给任何尝试切换到| sudo tee ...特权/sys写入方法的人的注释:如果您还没有缓存sudo凭据,那将很难解决。sudo sh -c "..."当sudo需要提示输入密码时,按预期方式工作。
ssokolow

51

这将重置所有USB1 / 2/3连接的端口[1]:

for i in /sys/bus/pci/drivers/[uoex]hci_hcd/*:*; do
  [ -e "$i" ] || continue
  echo "${i##*/}" > "${i%/*}/unbind"
  echo "${i##*/}" > "${i%/*}/bind"
done

我相信这会解决您的问题。如果您不想重置所有USB端点,则可以从/sys/bus/pci/drivers/ehci_hcd


注意:[1]:*hci_hcd内核驱动程序通常控制USB端口。ohci_hcduhci_hcd用于USB1.1端口,ehci_hcd用于USB2端口和xhci_hcd用于USB3端口。(请参阅https://en.wikipedia.org/wiki/Host_controller_interface_(USB,_Firewire)


您是否相信唤醒USB存储设备可能有用
Aquarius Power

2
尽管我收到以下消息:ls: cannot access /sys/bus/pci/drivers/ehci_hcd/: No such file or directory这已经解决了问题,但是鼠标已经开始立即工作。+1
Attila Fulop 2014年

2
@Otheus OHCI和UHCI是USB 1.1主机标准,EHCI是USB 2.0主机标准,而XHCI是USB 3.0主机标准。
ssokolow

2
这是一个很好的解决方案。但是,在以后的一些Kernels和其他* nix发行版中,您将发现需要替换*hci_hcd*hci-pci,因为hci_hcd驱动程序已被编译到内核中。
not2qubit

1
在Banana Pi上,显然没有PCI总线,我必须使用以下命令:for i in /sys/bus/usb/drivers/*/*:*; do
Martin Hansen

10

我需要在python脚本中自动执行此操作,因此我对以下内容采用了LiLo极其有用的答案:

#!/usr/bin/env python
import os
import sys
from subprocess import Popen, PIPE
import fcntl
driver = sys.argv[-1]
print "resetting driver:", driver
USBDEVFS_RESET= 21780

try:
    lsusb_out = Popen("lsusb | grep -i %s"%driver, shell=True, bufsize=64, stdin=PIPE, stdout=PIPE, close_fds=True).stdout.read().strip().split()
    bus = lsusb_out[1]
    device = lsusb_out[3][:-1]
    f = open("/dev/bus/usb/%s/%s"%(bus, device), 'w', os.O_WRONLY)
    fcntl.ioctl(f, USBDEVFS_RESET, 0)
except Exception, msg:
    print "failed to reset device:", msg

在我的情况下,它是cp210x驱动程序(我可以从看出lsmod | grep usbserial),因此您可以将上面的代码段另存为reset_usb.py,然后执行以下操作:

sudo python reset_usb.py cp210x

如果您的系统上尚未安装ac编译器,但确实有python,这也可能会有所帮助。


在树莓上为我工作
webo80 '16

1
请在您的解决方案上再说几句话。例如,有关常量的一些信息USBDEVFS_RESET。所有系统都一样吗?
not2qubit

@ not2qubit USBDEVFS_RESET对于所有系统都是相同的。对于MIPS,它是536892692。–
yegorich

较新版本的lsusb似乎需要-t参数(树模式)来显示此脚本所期望的驱动程序信息,但是该脚本随后需要一些更新以解析此脚本生成的不同输出行
Cheetah 2010年

请参阅我的答案这里askubuntu.com/a/988297/558070,以获取此脚本的改进版本。
mcarans

8

我创建了一个Python脚本,该脚本基于此处的答案简化了整个过程。

将以下脚本另存为reset_usb.py或克隆仓库。

用法:

python reset_usb.py help  # Show this help
sudo python reset_usb.py list  # List all USB devices
sudo python reset_usb.py path /dev/bus/usb/XXX/YYY  # Reset USB device using path /dev/bus/usb/XXX/YYY
sudo python reset_usb.py search "search terms"  # Search for USB device using the search terms within the search string returned by list and reset matching device
sudo python reset_usb.py listpci  # List all PCI USB devices
sudo python reset_usb.py pathpci /sys/bus/pci/drivers/.../XXXX:XX:XX.X  # Reset PCI USB device using path /sys/bus/pci/drivers/.../XXXX:XX:XX.X
sudo python reset_usb.py searchpci "search terms"  # Search for PCI USB device using the search terms within the search string returned by listpci and reset matching device

脚本:

#!/usr/bin/env python
import os
import sys
from subprocess import Popen, PIPE
import fcntl

instructions = '''
Usage: python reset_usb.py help : Show this help
       sudo python reset_usb.py list : List all USB devices
       sudo python reset_usb.py path /dev/bus/usb/XXX/YYY : Reset USB device using path /dev/bus/usb/XXX/YYY
       sudo python reset_usb.py search "search terms" : Search for USB device using the search terms within the search string returned by list and reset matching device
       sudo python reset_usb.py listpci : List all PCI USB devices
       sudo python reset_usb.py pathpci /sys/bus/pci/drivers/.../XXXX:XX:XX.X : Reset PCI USB device using path
       sudo python reset_usb.py searchpci "search terms" : Search for PCI USB device using the search terms within the search string returned by listpci and reset matching device       
       '''


if len(sys.argv) < 2:
    print(instructions)
    sys.exit(0)

option = sys.argv[1].lower()
if 'help' in option:
    print(instructions)
    sys.exit(0)


def create_pci_list():
    pci_usb_list = list()
    try:
        lspci_out = Popen('lspci -Dvmm', shell=True, bufsize=64, stdin=PIPE, stdout=PIPE, close_fds=True).stdout.read().strip().decode('utf-8')
        pci_devices = lspci_out.split('%s%s' % (os.linesep, os.linesep))
        for pci_device in pci_devices:
            device_dict = dict()
            categories = pci_device.split(os.linesep)
            for category in categories:
                key, value = category.split('\t')
                device_dict[key[:-1]] = value.strip()
            if 'USB' not in device_dict['Class']:
                continue
            for root, dirs, files in os.walk('/sys/bus/pci/drivers/'):
                slot = device_dict['Slot']
                if slot in dirs:
                    device_dict['path'] = os.path.join(root, slot)
                    break
            pci_usb_list.append(device_dict)
    except Exception as ex:
        print('Failed to list pci devices! Error: %s' % ex)
        sys.exit(-1)
    return pci_usb_list


def create_usb_list():
    device_list = list()
    try:
        lsusb_out = Popen('lsusb -v', shell=True, bufsize=64, stdin=PIPE, stdout=PIPE, close_fds=True).stdout.read().strip().decode('utf-8')
        usb_devices = lsusb_out.split('%s%s' % (os.linesep, os.linesep))
        for device_categories in usb_devices:
            if not device_categories:
                continue
            categories = device_categories.split(os.linesep)
            device_stuff = categories[0].strip().split()
            bus = device_stuff[1]
            device = device_stuff[3][:-1]
            device_dict = {'bus': bus, 'device': device}
            device_info = ' '.join(device_stuff[6:])
            device_dict['description'] = device_info
            for category in categories:
                if not category:
                    continue
                categoryinfo = category.strip().split()
                if categoryinfo[0] == 'iManufacturer':
                    manufacturer_info = ' '.join(categoryinfo[2:])
                    device_dict['manufacturer'] = manufacturer_info
                if categoryinfo[0] == 'iProduct':
                    device_info = ' '.join(categoryinfo[2:])
                    device_dict['device'] = device_info
            path = '/dev/bus/usb/%s/%s' % (bus, device)
            device_dict['path'] = path

            device_list.append(device_dict)
    except Exception as ex:
        print('Failed to list usb devices! Error: %s' % ex)
        sys.exit(-1)
    return device_list


if 'listpci' in option:
    pci_usb_list = create_pci_list()
    for device in pci_usb_list:
        print('path=%s' % device['path'])
        print('    manufacturer=%s' % device['SVendor'])
        print('    device=%s' % device['SDevice'])
        print('    search string=%s %s' % (device['SVendor'], device['SDevice']))
    sys.exit(0)

if 'list' in option:
    usb_list = create_usb_list()
    for device in usb_list:
        print('path=%s' % device['path'])
        print('    description=%s' % device['description'])
        print('    manufacturer=%s' % device['manufacturer'])
        print('    device=%s' % device['device'])
        print('    search string=%s %s %s' % (device['description'], device['manufacturer'], device['device']))
    sys.exit(0)

if len(sys.argv) < 3:
    print(instructions)
    sys.exit(0)

option2 = sys.argv[2]

print('Resetting device: %s' % option2)


# echo -n "0000:39:00.0" | tee /sys/bus/pci/drivers/xhci_hcd/unbind;echo -n "0000:39:00.0" | tee /sys/bus/pci/drivers/xhci_hcd/bind
def reset_pci_usb_device(dev_path):
    folder, slot = os.path.split(dev_path)
    try:
        fp = open(os.path.join(folder, 'unbind'), 'wt')
        fp.write(slot)
        fp.close()
        fp = open(os.path.join(folder, 'bind'), 'wt')
        fp.write(slot)
        fp.close()
        print('Successfully reset %s' % dev_path)
        sys.exit(0)
    except Exception as ex:
        print('Failed to reset device! Error: %s' % ex)
        sys.exit(-1)


if 'pathpci' in option:
    reset_pci_usb_device(option2)


if 'searchpci' in option:
    pci_usb_list = create_pci_list()
    for device in pci_usb_list:
        text = '%s %s' % (device['SVendor'], device['SDevice'])
        if option2 in text:
            reset_pci_usb_device(device['path'])
    print('Failed to find device!')
    sys.exit(-1)


def reset_usb_device(dev_path):
    USBDEVFS_RESET = 21780
    try:
        f = open(dev_path, 'w', os.O_WRONLY)
        fcntl.ioctl(f, USBDEVFS_RESET, 0)
        print('Successfully reset %s' % dev_path)
        sys.exit(0)
    except Exception as ex:
        print('Failed to reset device! Error: %s' % ex)
        sys.exit(-1)


if 'path' in option:
    reset_usb_device(option2)


if 'search' in option:
    usb_list = create_usb_list()
    for device in usb_list:
        text = '%s %s %s' % (device['description'], device['manufacturer'], device['device'])
        if option2 in text:
            reset_usb_device(device['path'])
    print('Failed to find device!')
    sys.exit(-1)

这是对这个问题的最佳答案。
kapad

4

由于该问题的特殊情况是gphoto2与USB上的相机的通讯问题,因此gphoto2中有一个选项可以重置其USB连接:

gphoto2 --reset

提出问题时,也许该选项在2010年不存在。


3

最快的重置方法是重置USB控制器本身。这样做将强制udev在断开连接时注销设备,并在启用后重新注册。

echo -n "0000:00:1a.0" | tee /sys/bus/pci/drivers/ehci_hcd/unbind
echo -n "0000:00:1d.0" | tee /sys/bus/pci/drivers/ehci_hcd/unbind
echo -n "0000:00:1a.0" | tee /sys/bus/pci/drivers/ehci_hcd/bind
echo -n "0000:00:1d.0" | tee /sys/bus/pci/drivers/ehci_hcd/bind

这适用于大多数PC环境。但是,如果您使用某些自定义硬件,则可以简单地遍历设备名称。使用这种方法,您无需通过lsusb找出设备名称。您也可以将其合并到自动化脚本中。


1
您需要运行这些命令作为根/ sudo的,它不会在所有系统上运行(在一些,你需要替换ehci_hcdehci-pci这个解决方案(也许它是从哪里来的更多信息):?davidjb.com/blog /
2012/06

3

我通过重新加载模块来使用大锤。这是我的usb_reset.sh脚本:

#!/bin/bash

# USB drivers
rmmod xhci_pci
rmmod ehci_pci

# uncomment if you have firewire
#rmmod ohci_pci

modprobe xhci_pci
modprobe ehci_pci

# uncomment if you have firewire
#modprobe ohci_pci

这是我的系统服务文件/usr/lib/systemd/system/usbreset.service,在我的diplay管理器启动后运行usb_reset.sh:

[Unit]
Description=usbreset Service
After=gdm.service
Wants=gdm.service

[Service]
Type=oneshot
ExecStart=/path/to/usb_reset.sh

在此处使用我的脚本的listpci选项:askubuntu.com/a/988297/558070将帮助您确定要重新加载的USB模块(例如xhci_pci,ehci_pci)。
mcarans

2
不幸的是,在我的系统上,这些内核模块不是与内核分开的,所以这行不通:rmmod: ERROR: Module xhci_pci is builtin.
unfa 2018年

3

我制作了一个python脚本,它将根据设备编号重置特定的USB设备。您可以从命令lsusb中找到设备编号。

例如:

$ lsusb

Bus 002 Device 004: ID 046d:c312 Logitech, Inc. DeLuxe 250 Keyboard

该字符串004中的设备号

import os
import argparse
import subprocess

path='/sys/bus/usb/devices/'

def runbash(cmd):
    p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
    out = p.stdout.read().strip()
    return out

def reset_device(dev_num):
    sub_dirs = []
    for root, dirs, files in os.walk(path):
            for name in dirs:
                    sub_dirs.append(os.path.join(root, name))

    dev_found = 0
    for sub_dir in sub_dirs:
            if True == os.path.isfile(sub_dir+'/devnum'):
                    fd = open(sub_dir+'/devnum','r')
                    line = fd.readline()
                    if int(dev_num) == int(line):
                            print ('Your device is at: '+sub_dir)
                            dev_found = 1
                            break

                    fd.close()

    if dev_found == 1:
            reset_file = sub_dir+'/authorized'
            runbash('echo 0 > '+reset_file) 
            runbash('echo 1 > '+reset_file) 
            print ('Device reset successful')

    else:
            print ("No such device")

def main():
    parser = argparse.ArgumentParser()
    parser.add_argument('-d', '--devnum', dest='devnum')
    args = parser.parse_args()

    if args.devnum is None:
            print('Usage:usb_reset.py -d <device_number> \nThe device    number can be obtained from lsusb command result')
            return

    reset_device(args.devnum)

if __name__=='__main__':
    main()

我喜欢这个解决方案!我已经根据自己的喜好对脚本进行了一些调整:gist.github.com/willstott101/7a455817ec6f4b8d89571ce72bdfd34a
Will S

2

这是只重置匹配的产品/供应商ID的脚本。

#!/bin/bash

set -euo pipefail
IFS=$'\n\t'

VENDOR="045e"
PRODUCT="0719"

for DIR in $(find /sys/bus/usb/devices/ -maxdepth 1 -type l); do
  if [[ -f $DIR/idVendor && -f $DIR/idProduct &&
        $(cat $DIR/idVendor) == $VENDOR && $(cat $DIR/idProduct) == $PRODUCT ]]; then
    echo 0 > $DIR/authorized
    sleep 0.5
    echo 1 > $DIR/authorized
  fi
done

1
我发现您的脚本很有用。但是,如果$DIR消失并且设备不可见,该怎么办?
Eugen Konkov '17

1

有人订购大锤了吗?这是从这里的其他答案中拼凑而成的。

#!/bin/bash

# Root required
if (( UID )); then
        exec sudo "$0" "$@"
fi

cd /sys/bus/pci/drivers

function reinit {(
        local d="$1"
        test -e "$d" || return

        rmmod "$d"

        cd "$d"

        for i in $(ls | grep :); do
                echo "$i" > unbind
        done

        sleep 1

        for i in $(ls | grep :); do
                echo "$i" > bind
        done

        modprobe "$d"

)}

for d in ?hci_???; do
        echo " - $d"
        reinit "$d"
done

马克,您是否发现解除约束确实必要,还是只是出于安全考虑?
ndemou,2016年

这是一把大锤,它可能会做很多不必要的事情
Mark K Cowan

@MarkKCowan,您如何使用它?需要/期望的命令参数是什么?
not2qubit

1
@ not2qubit:不需要命令行参数。将$@在须藤代理仅仅是习惯中的一种力量,让它避免错误,如果我以后决定添加参数(忘记更新须藤代理)。
Mark K Cowan

1
@MarkKCowan Doh!不好意思,朋友!哦,是的诅咒!我不应该在困倦时在此网站上发表评论。已投票!
not2qubit

1

有时我想在特定设备上执行此操作,如VID(供应商ID)和PID(产品ID)所标识。我发现这是一个有用的脚本,它使用了漂亮的libusb库。

首轮:

sudo apt-get install libusb-dev

然后,此c ++文件的resetDeviceConnection应该执行此任务,以重置由vid和pid标识的设备连接。

#include <libusb-1.0/libusb.h>

int resetDeviceConnection(UINT_16 vid, UINT_16 pid){
    /*Open libusb*/
    int resetStatus = 0;
    libusb_context * context;
    libusb_init(&context);

    libusb_device_handle * dev_handle = libusb_open_device_with_vid_pid(context,vid,pid);
    if (dev_handle == NULL){
      printf("usb resetting unsuccessful! No matching device found, or error encountered!\n");
      resetStatus = 1;
    }
    else{
      /*reset the device, if one was found*/
      resetStatus = libusb_reset_device(dev_handle);
    }
    /*exit libusb*/
    libusb_exit(context);
    return resetStatus;
}

(从我的个人TIL目录中被盗:https : //github.com/Marviel/TIL/blob/master/unix_tools/Reset_specific_USB_Device.md


3
请您说明如何运行此脚本
乔治·乌德森

当然,让我更新。
Marviel

1
@Marviel,我们仍在等待更新...
not2qubit

需要毫无用处的
投票

1

我做了一个简单的bash脚本来重置特定的USB设备。

#!/bin/bash
#type lsusb to find "vendor" and "product" ID in terminal
set -euo pipefail
IFS=$'\n\t'

#edit the below two lines of vendor and product values using lsusb result
dev=$(lsusb -t | grep usbdevicename | grep 'If 1' | cut -d' ' -f13|cut -d"," -f1)
#VENDOR=05a3
#PRODUCT=9230
VENDOR=$(lsusb -s $dev | cut -d' ' -f6 | cut -d: -f1)
PRODUCT=$(lsusb -s $dev | cut -d' ' -f6 | cut -d: -f2)

for DIR in $(find /sys/bus/usb/devices/ -maxdepth 1 -type l); do
  if [[ -f $DIR/idVendor && -f $DIR/idProduct &&
        $(cat $DIR/idVendor) == $VENDOR && $(cat $DIR/idProduct) == $PRODUCT ]]; then
    echo 0 > $DIR/authorized
    sleep 0.5
    echo 1 > $DIR/authorized
  fi
done

0

也许这也适用于相机:

在我这边USB 3.03.4.42(kernel.org)Linux上恢复了饥饿的硬盘。 dmesg告诉我,这是在360s之后超时的命令(抱歉,我无法在此处复制syslog,而不是连接的网络),并且驱动器完全挂起。访问设备的进程被阻止在内核中,这是无法杀死的。 NFS悬挂,ZFS悬挂,dd悬挂。

完成此操作后,一切又恢复了。 dmesg仅告诉了一行有关USB找到的设备的信息。

我真的不知道下面的细节。但这行得通。

以下示例输出来自带有2.6.32-5-686内核的Debian Squeeze ,因此我认为它适用于2.6及更高版本:

$ ls -al /dev/sdb
brw-rw---T 1 root floppy 8, 16 Jun  3 20:24 /dev/sdb

$ ls -al /sys/dev/block/8:16/device/rescan
--w------- 1 root root 4096 Jun  6 01:46 /sys/dev/block/8:16/device/rescan

$ echo 1 > /sys/dev/block/8:16/device/rescan

如果这不起作用,也许其他人可以弄清楚如何向设备发送真正的重置。


0

试试这个,这是一个软件拔出(弹出)。

有时不能简单地解除绑定某些设备的设备。

例:

我想删除或弹出“ Genius NetScroll 120”。

然后我首先检查我连接的USB设备

$ lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 003: ID 03f0:231d Hewlett-Packard 
Bus 001 Device 004: ID 138a:0007 Validity Sensors, Inc. VFS451 Fingerprint Reader
Bus 001 Device 005: ID 04f2:b163 Chicony Electronics Co., Ltd 
Bus 002 Device 009: ID 0458:003a KYE Systems Corp. (Mouse Systems) NetScroll+ Mini Traveler / Genius NetScroll 120  **<----This my Mouse! XDDD**

好的,我找到了鼠标,它具有总线002,设备009,idVendor 0458和idProduct 003a,因此这是有关鼠标的参考设备信息。

这很重要,总线号是设备的开始名称路径,我将检查产品ID和供应商以确保删除正确的设备。

$ ls /sys/bus/usb/drivers/usb/
1-1/    1-1.1/  1-1.3/  1-1.5/  2-1/    2-1.3/  bind    uevent  unbind  usb1/   usb2/

注意文件夹,检查以2开头的文件夹,因为我的总线是002,所以我将检查该文件夹,然后逐个检查包含有关鼠标信息的正确idVendor和idProduct的每个文件夹。

在这种情况下,我将使用以下命令检索信息:

cat /sys/bus/usb/drivers/usb/2-1.3/idVendor
0458
cat /sys/bus/usb/drivers/usb/2-1.3/idProduct
003a

好的,路径/sys/bus/usb/drivers/usb/2-1.3/与我的信息鼠标匹配!XDDD。

现在该删除设备了!

su -c "echo 1 > /sys/bus/usb/drivers/usb/2-1.3/remove"

再次插入USB设备,即可再次使用!


10
如果您无法再次插入该怎么办?(例如,它是内部sdcard读取器)
aleb 2014年

0

如果您知道设备名称,则此python脚本将起作用:

#!/usr/bin/python
"""
USB Reset

Call as "usbreset.py <device_file_path>"

With device_file_path like "/dev/bus/usb/bus_number/device_number"
"""
import fcntl, sys, os

USBDEVFS_RESET = ord('U') << (4*2) | 20

def main():
    fd = os.open(sys.argv[1], os.O_WRONLY)
    if fd < 0: sys.exit(1)
    fcntl.ioctl(fd, USBDEVFS_RESET, 0)
    os.close(fd)
    sys.exit(0)
# end main

if __name__ == '__main__':
    main()
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.