lunedì 8 agosto 2016

reset stampante via usb da linux

Editate un file usbreset.c con dentro questo:

/* 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;
}
compilate con:
 cc usbreset.c -o usbreset
date i permessi:

chmod +x usbreset
beccate le coordinate delle stampanti:

artexe@mryouen-kiosk:~$ lsusb
Bus 002 Device 002: ID 0dd4:015d Custom Engineering SPA
e resettate la stampante:

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

Nessun commento:

Posta un commento