Advertisement
Rewmel

Make iOS 8.1 Support ubuntu 14.10

Nov 23rd, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.33 KB | None | 0 0
  1. There will be a small how-to concerning connection of Apple devices to Ubuntu 14.10
  2.  
  3. I've moved to Ubuntu 3 weeks ago and now I need to sync my music library on iOS 8.1. There was Itunes 13 on my Win8, but It doesn't want to install under Wine and VM is laggy. So i wanted to add a native support of Apple devices to 14.10 with the help of libimobiledevice. Sorry if i make any mistakes.
  4.  
  5. Let's start
  6.  
  7. 1. We'll need git to clone repositories
  8. sudo apt-get install git
  9.  
  10. 2. A folder to keep all stuff in one place
  11. mkdir connapdev
  12. cd connapdev
  13.  
  14. 3. Now we need to install python-dev
  15. sudo apt-get install python-dev
  16.  
  17. 4. We need to clone a repo libxml2 and install it
  18. git clone git://git.gnome.org/libxml2
  19. cd libxml2
  20. ./autogen.sh
  21. make
  22. sudo make install
  23.  
  24. 5.Now we clone and install libplist
  25. cd ../
  26. git clone https://github.com/libimobiledevice/libplist.git
  27. cd libplist
  28. ./autogen.sh
  29. make
  30. sudo make install
  31.  
  32. 6. Clone libsubmuxd and install it
  33. cd ../
  34. git clone https://github.com/libimobiledevice/libusbmuxd.git
  35. cd libusmmuxd
  36. ./autogen.sh
  37. make
  38. sudo make install
  39.  
  40. 7. Now we need OpenSSL(pre installed, but no work for me)
  41. sudo apt-get install openssl libssl-dev
  42.  
  43. 8. Now clone libimobiledevice repo
  44. cd ../
  45. git clone https://github.com/libimobiledevice/libimobiledevice.git
  46. cd libimobiledevice
  47. ./autogen.sh
  48. make
  49. sudo make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement