-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathREADME
More file actions
30 lines (24 loc) · 699 Bytes
/
README
File metadata and controls
30 lines (24 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
libusb over TCP/IP
------------------
libusbnet is a wrapper for libusb library
to enable communication with USB devices over
TCP/IP.
Installation
------------
mkdir build && cd build # Create build directory
cmake .. # Create Makefiles using CMake
make
sudo make install
Usage
-----
Example: Probing remote USB bus with libusb.
john@server# usbexportd
jack@client# usbnet -h server:22222 -l libusbnet.so "lsusb" (without authentication)
jack@client# usbnet -a jack@server "lsusb" (with SSH authentication)
See "usbnet --help".
SSH authentication
------------------
See SSH_HOWTO for more information.
---
Marek Vavrusa <marek@vavrusa.com>
Zdenek Vasicek <vasicek@fit.vutbr.cz>