USB पोर्ट को cli के माध्यम से डिस्कनेक्ट और फिर से कनेक्ट करें


18

मेरे पास एक माउस है जो बेतरतीब ढंग से काम करना बंद कर देगा। समाधान आसान है, अनप्लग करें और फिर से भरें। वहाँ एक रास्ता है, हालांकि मैं कमांड लाइन के माध्यम से यह कर सकता हूँ? कमांड लाइन के माध्यम से करने के कुछ फायदे हैं।

  1. कनेक्टर बाहर नहीं पहनता है।
  2. और तेज।
  3. मुझे अपनी मेज के नीचे रेंगने की परेशानी से बचाता है।
  4. सबसे महत्वपूर्ण: मुझे गलती से किसी और चीज को अनप्लग करने से रोकता है।

साथ ही मैं उत्सुक हूं कि यह कैसे किया जाए।

ओएस डेबियन 8 है।

धन्यवाद!



हो सकता है कि unix.stackexchange.com/a/166601/117599 वह है जो आप ढूंढ रहे हैं।
phk

जवाबों:


13

निम्न को सहेजें 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 डिवाइस को रीसेट करना चाहते हैं, उसका बस और डिवाइस आईडी प्राप्त करें:

    lsusb -t 
    
    Bus#  4  
    -Dev#   1 Vendor 0x1d6b Product 0x0001    
    -Dev#   3 Vendor 0x046b Product 0xff10
    
  3. हमारे संकलित कार्यक्रम को निष्पादन योग्य बनाएं:

    chmod +x usbreset
    
  4. sudoविशेषाधिकार के साथ कार्यक्रम निष्पादित करें ; कमांड चलाकर के लिए आवश्यक प्रतिस्थापन <Bus>और <Device>आईडी बनाएं lsusb:

    sudo ./usbreset /dev/bus/usb/004/003
    
    Resetting USB device /dev/bus/usb/004/003
    
    Reset successful
    

उपरोक्त कार्यक्रम का स्रोत: http://marc.info/?l=linux-usb&m=121459435621262&&=2


1
क्या यह प्रभावी रूप से डिवाइस पर पावर रीसेट करता है और इसलिए इसे अनप्लग किए बिना पूरी तरह से रीसेट कर देगा और इसे फिर से इंस्टॉल करेगा?
जरीडीह

इसने एकदम जादू की तरह काम किया।
वेज मार्टिन

यदि एक प्रोग्राम ने एक धारावाहिक USB डिवाइस (जैसे / dev / ttyUSB0 / / dev / myserialdevice से /etc/udev/rules.d/mystuff.rules में निर्दिष्ट किया है) खोला है, और डिवाइस किसी कारण से लटका हुआ है, तो क्या यह है फिर ऊपर के रूप में एक ioctl () के साथ इसे रीसेट करने के लिए आवश्यक है, या यह बस बंद करने के लिए पर्याप्त है () और इसे फिर से खोलें ()?
प्रति लिंडबर्ग

1
@ जरीर्ड ऊपर दिए गए लिंक में एलन की व्याख्या देखते हैं :Note however, that reset followed by re-enumeration is _not_ the same thing as power-cycle followed by reconnect and re-enumeration.
ccujau

2

मैंने एक पायथन लिपि बनाई है, जो यहाँ उत्तर के आधार पर पूरी प्रक्रिया को सरल बनाती है: /ubuntu/645/how-do-you-reset-a-usb-device-from-the-command-line

नीचे दी गई स्क्रिप्ट को reset_usb.py के रूप में सहेजें या इस रेपो को क्लोन करें: https://github.com/mcarans/resetusb/

उपयोग:

python reset_usb.py मदद: यह मदद दिखाएं

sudo python reset_usb.py सूची: सभी USB उपकरणों की सूची बनाएं

sudo python reset_usb.py पाथ / देव / बस / usb / XXX / YYY: पथ / देव / बस / usb / XXX / YYY का उपयोग करके USB डिवाइस रीसेट करें

sudo python reset_usb.py खोज "खोज शब्द": खोज स्ट्रिंग का उपयोग करके USB डिवाइस के लिए खोजें सूची द्वारा लौटाए गए और मिलान डिवाइस रीसेट करें।

sudo python reset_usb.py listpci: सभी पीसीआईघड़ी USB उपकरणों की सूची बनाएं

sudo python reset_usb.py pathpci /sys/bus/pci/drivers/.../XXXX:XX:XX.X: PCI USB डिवाइस को पथ /sys/bus/pci/drivers/.../XXXX:XX का उपयोग करके रीसेट करें: XX.X

sudo python reset_usb.py searchpci "search terms": पीसीपीई USB डिवाइस के लिए खोज शब्दों का उपयोग करके खोज स्ट्रिंग के भीतर listpci द्वारा लौटाए गए और मिलान डिवाइस रीसेट करें।

#!/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)

0

आप हमेशा सॉफ़्टवेयर के माध्यम से यूएसबी स्टैक को रीसेट कर सकते हैं, और यूएसबी डिवाइस को नींद में डाल सकते हैं ( बिजली की बचत) ) मोड , लेकिन यह + 5 वी पोर्ट पावर को प्रभावित नहीं करता है, जो हमेशा चालू रहता है।

आपके USB हब के आधार पर, आप वास्तव में एक भौतिक USB पोर्ट को पावर बंद (चक्र) कर सकते हैं या नहीं कर सकते हैं।

केवल "स्मार्ट" यूएसबी हब प्रति-पोर्ट पावर साइकिलिंग की अनुमति देते हैं। यहां एक छोटी परियोजना है जो आपको इन पर नियंत्रण करने की अनुमति देती है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.