LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-11-2019, 12:51 PM   #1
bscho
Member
 
Registered: Nov 2012
Location: London
Distribution: Mint 20, Kali, Peppermint, Ubuntu, MakuluFlash, Fedora 32, Windows 12 Lite, MakuluLinux
Posts: 821

Rep: Reputation: 28
compiling problem with libmobile


I unpacked the file and followed the txt file which said:
Installation
============

To compile run:
./autogen.sh
make
sudo make install

The problem is that no autogen.sh is in the package so I went to the site at github found the text of the file and put it into the directory

when I run it says no permission used it as root

the same happens

the file is
#!/bin/sh

olddir=`pwd`
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

cd "$srcdir"

gprefix=`which glibtoolize 2>&1 >/dev/null`
if [ $? -eq 0 ]; then
glibtoolize --force
else
libtoolize --force
fi
aclocal -I m4
autoheader
automake --add-missing
autoconf

cd "$olddir"

if [ -z "$NOCONFIGURE" ]; then
$srcdir/configure "$@"
fi

Any ideas how to fix it maybe I can re edit the file?

Thanks for your help
 
Old 02-12-2019, 02:42 AM   #2
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
cases like this, you really need to show us what project you are trying to compile and which version (link).
and in code tags, a list of all commands entered and full output received. don't paraphrase.

and preferably also an explanation WHY you think you need to compile this from source and why you need it at all.
 
Old 02-12-2019, 03:11 AM   #3
bscho
Member
 
Registered: Nov 2012
Location: London
Distribution: Mint 20, Kali, Peppermint, Ubuntu, MakuluFlash, Fedora 32, Windows 12 Lite, MakuluLinux
Posts: 821

Original Poster
Rep: Reputation: 28
Quote:
Originally Posted by ondoho View Post

and preferably also an explanation WHY you think you need to compile this from source and why you need it at all.
I want to read all my text messages from the iphone.

Do you know any other program that does this?
 
Old 02-12-2019, 04:52 AM   #4
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,863

Rep: Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311
have you tried to look for a solution on the net? https://www.mobikin.com/idevice/view...-computer.html
 
Old 02-12-2019, 05:33 AM   #5
bscho
Member
 
Registered: Nov 2012
Location: London
Distribution: Mint 20, Kali, Peppermint, Ubuntu, MakuluFlash, Fedora 32, Windows 12 Lite, MakuluLinux
Posts: 821

Original Poster
Rep: Reputation: 28
Quote:
Originally Posted by pan64 View Post
have you tried to look for a solution on the net? https://www.mobikin.com/idevice/view...-computer.html
Thanks for that will have to use a windows program and drag the files to my Linux Mint desktop. It requires iTunes and is taking ages to load on a windows having to go to Microsoft.

libmobiledevice is a Linux app so would have been better if I could compile it I have been stuck as the make requires Nettle 3.4 which I just cannot get to compile.

I wish libmobiledevice was in the repository for Mint as this looks to be a good program. I appears to be in Fedora and Ubuntu ones

Any ideas how I can go and get it from the Ubuntu repository?
 
Old 02-12-2019, 05:45 AM   #6
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,863

Rep: Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311
probably this: https://www.youtube.com/watch?v=Y64YmvKMAL8 ?
 
Old 02-12-2019, 05:49 AM   #7
bscho
Member
 
Registered: Nov 2012
Location: London
Distribution: Mint 20, Kali, Peppermint, Ubuntu, MakuluFlash, Fedora 32, Windows 12 Lite, MakuluLinux
Posts: 821

Original Poster
Rep: Reputation: 28
Quote:
Originally Posted by pan64 View Post
I have all ready tried that and the wget comes back with 404 error

Also the video shows a different wget to that on the text below the video
 
Old 02-12-2019, 05:55 AM   #8
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,863

Rep: Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311Reputation: 7311
see the first comment, that link looks ok
 
Old 02-12-2019, 06:00 AM   #9
bscho
Member
 
Registered: Nov 2012
Location: London
Distribution: Mint 20, Kali, Peppermint, Ubuntu, MakuluFlash, Fedora 32, Windows 12 Lite, MakuluLinux
Posts: 821

Original Poster
Rep: Reputation: 28
Quote:
Originally Posted by pan64 View Post
see the first comment, that link looks ok
Does not work it says on their site in search under Ubuntu it has libimobiledevice

The software source has Ubuntu/trusty set but

sudo apt install libimobiledevice does not find it

Any ideas?
 
Old 02-12-2019, 08:04 AM   #10
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by bscho View Post
I wish libmobiledevice was in the repository for Mint as this looks to be a good program. I appears to be in Fedora and Ubuntu ones
if it's in ubuntu's repos then it should be in mint's also, becuase mint is built on it.
and it's
Code:
libimobiledevice
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Compiling a Slackware package from source vs Compiling from source. khronosschoty Slackware 5 09-26-2008 06:09 PM
Compiling a module separately without compiling entire kernel kushalkoolwal Linux - Kernel 8 08-06-2008 01:45 AM
Various Compiling Errors (GCC compiling Openal, GUIlib, xmms-wma) gregorya Linux - Software 2 08-27-2004 05:03 AM
Compiling in ACPI support on Compaq 2135CA (system crashes while compiling) Dag Linux - Laptop and Netbook 20 07-30-2004 07:56 PM
Kernel compiling and module compiling tarballed Linux - General 1 12-22-2002 05:31 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:43 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration