summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-05-16 15:38:00 +0200
committerGravatar Nikias Bassen2019-05-16 15:38:00 +0200
commitd81cb1a62cfc30ce3d17d2fb312d7dc1e04e1e65 (patch)
tree13c7b9731b6dacc705abf8e106fe2514f55235e5
parentbc9abb07b1a2a731b4b6ca89ef99ad86e2442e93 (diff)
downloadusbmuxd-d81cb1a62cfc30ce3d17d2fb312d7dc1e04e1e65.tar.gz
usbmuxd-d81cb1a62cfc30ce3d17d2fb312d7dc1e04e1e65.tar.bz2
Updated README.md
-rw-r--r--README.md38
1 files changed, 19 insertions, 19 deletions
diff --git a/README.md b/README.md
index 748594b..6192f67 100644
--- a/README.md
+++ b/README.md
@@ -11,19 +11,19 @@ multiplexing connections over USB to an iOS device. To users, it means
11you can sync your music, contacts, photos, etc. over USB. To developers, it 11you can sync your music, contacts, photos, etc. over USB. To developers, it
12means you can connect to any listening localhost socket on the device. usbmuxd 12means you can connect to any listening localhost socket on the device. usbmuxd
13is not used for tethering data transfer which uses a dedicated USB interface as 13is not used for tethering data transfer which uses a dedicated USB interface as
14a virtual network device. Multiple connections to different TCP ports can happen 14a virtual network device. Multiple connections to different TCP ports can happen
15in parallel. The higher-level layers are handled by libimobiledevice. 15in parallel. The higher-level layers are handled by libimobiledevice.
16 16
17When usbmuxd is running (normally started, or stopped as a result of "udev" 17When usbmuxd is running (normally started, or stopped as a result of "udev"
18auto-insertion messages or by systemd) it provides a socket interface in 18auto-insertion messages or by systemd) it provides a socket interface in
19"/var/run/usbmuxd" that is designed to be compatible with the socket interface 19`/var/run/usbmuxd` that is designed to be compatible with the socket interface
20that is provided on Mac OS X. 20that is provided on Mac OS X.
21 21
22You should also create a "usbmux" user that has access to USB devices on your 22You should also create a "usbmux" user that has access to USB devices on your
23system. Alternatively, you can pass a different username using the -U argument. 23system. Alternatively, you can pass a different username using the -U argument.
24 24
25Due to iOS 7 the daemon now also manages pairing records with iOS devices and 25Due to iOS 7 the daemon now also manages pairing records with iOS devices and
26the host in "/var/lib/lockdown" (Linux) or "/var/db/lockdown(Mac OS X). 26the host in `/var/lib/lockdown` (Linux) or `/var/db/lockdown` (macOS).
27Ensure proper permissions are setup for the daemon to access the directory. 27Ensure proper permissions are setup for the daemon to access the directory.
28 28
29## Requirements 29## Requirements
@@ -34,17 +34,17 @@ Development Packages of:
34* libusb 34* libusb
35 35
36Software: 36Software:
37 make 37* make
38 autoheader 38* autoheader
39 automake 39* automake
40 autoconf 40* autoconf
41 libtool 41* libtool
42 pkg-config 42* pkg-config
43 gcc 43* gcc or clang
44 udev (Linux only) 44* udev (Linux only)
45 45
46Optional: 46Optional:
47 systemd (Linux only) 47* systemd (Linux only)
48 48
49## Installation 49## Installation
50 50
@@ -60,16 +60,16 @@ The daemon is automatically started by udev or systemd depending on what you
60have configured it on hotplug of an iOS device and exits if the last device 60have configured it on hotplug of an iOS device and exits if the last device
61was unplugged. 61was unplugged.
62 62
63For debugging purposes it is helpful to start usbmuxd using the foreground '-f' 63For debugging purposes it is helpful to start usbmuxd using the foreground `-f`
64argument and enable verbose mode '-v' to get suitable logs. 64argument and enable verbose mode `-v` to get suitable logs.
65 65
66## Who/What/Where? 66## Who/What/Where?
67 67
68* Home: http://www.libimobiledevice.org/ 68* Home: https://www.libimobiledevice.org/
69* Code: `git clone http://git.libimobiledevice.org/usbmuxd.git` 69* Code: `git clone https://git.libimobiledevice.org/usbmuxd.git`
70* Code (Mirror): `git clone https://github.com/libimobiledevice/usbmuxd.git` 70* Code (Mirror): `git clone https://github.com/libimobiledevice/usbmuxd.git`
71* Tickets: http://github.com/libimobiledevice/usbmuxd/issues 71* Tickets: https://github.com/libimobiledevice/usbmuxd/issues
72* Mailing List: http://lists.libimobiledevice.org/mailman/listinfo/libimobiledevice-devel 72* Mailing List: https://lists.libimobiledevice.org/mailman/listinfo/libimobiledevice-devel
73* IRC: irc://irc.freenode.net#libimobiledevice 73* IRC: irc://irc.freenode.net#libimobiledevice
74* Twitter: https://twitter.com/libimobiledev 74* Twitter: https://twitter.com/libimobiledev
75 75
@@ -81,4 +81,4 @@ Apple, iPhone, iPod, and iPod Touch are trademarks of Apple Inc.
81libimobiledevice is an independent software library and has not been 81libimobiledevice is an independent software library and has not been
82authorized, sponsored, or otherwise approved by Apple Inc. 82authorized, sponsored, or otherwise approved by Apple Inc.
83 83
84README Updated on: 2015-12-13 84README Updated on: 2019-05-16