Friday, April 26, 2024
 Popular · Latest · Hot · Upcoming
11
rated 0 times [  11] [ 0]  / answers: 1 / hits: 26541  / 2 Years ago, fri, may 27, 2022, 3:55:49

In the latest version of the libmtp library there are fixes for my Android device so I would like to install the latest version I'm just not sure how! I would assume that this would pushed into the official repositories at some point, so the smart advice would probably be just to wait, but I would like to know how to do this myself if anyone could tell me.



I'm currently using Ubuntu 12.04 and am running libmtp-1.1.2, the latest version (libmtp-1.1.3) has recently been released and the tar.gz file is downloadable from this direct link: http://downloads.sourceforge.net/project/libmtp/libmtp/1.1.3/libmtp-1.1.3.tar.gz



How do I install this? Thanks for any help.


More From » android

 Answers
0

First you need to get the file, extract the tarball and change to the folder. You can do this from a terminal:



wget http://downloads.sourceforge.net/project/libmtp/libmtp/1.1.3/libmtp-1.1.3.tar.gz
tar zxf libmtp-1.1.3.tar.gz
cd libmtp-1.1.3


Second, build the source and install the binaries:



./configure
make
sudo make install


I'd be more inclined to use checkinstall - so not use the make install command, if so enter this commands instead:



./configure
make
sudo checkinstall





If you have not complied any software you might need some extra packages prior to starting.



sudo apt-get install build-essential checkinstall wget


https://help.ubuntu.com/community/CompilingEasyHowTo



https://help.ubuntu.com/community/CompilingSoftware



https://help.ubuntu.com/community/CheckInstall


[#39504] Sunday, May 29, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
puccop

Total Points: 66
Total Questions: 99
Total Answers: 93

Location: Aruba
Member since Sun, Nov 27, 2022
1 Year ago
;