I'm looking for some assistance with trying to install miniDLNA on my pi.
I'm following these instructions on:
http://www.senab.co.uk/2012/06/09/raspb ... rver-pt-1/
After a few hiccups related to me being a relative noob i have now got all of the dependancies listed in the instructions installed, but when i try to install miniDLNA i get:
- Code: Select all
pi@raspberrypi ~ $ sudo dpkg -i minidlna-1.0.24-1-arm.deb
(Reading database ... 58198 files and directories currently installed.)
Preparing to replace minidlna 1.0.24-1 (using minidlna-1.0.24-1-arm.deb) ...
Unpacking replacement minidlna ...
dpkg: dependency problems prevent configuration of minidlna:
minidlna depends on libjpeg62; however:
Package libjpeg62 is not installed.
minidlna depends on sqlite3; however:
Package sqlite3 is not installed.
minidlna depends on libavformat52; however:
Package libavformat52 is not installed.
dpkg: error processing minidlna (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
minidlna
I'm confused - the code above says that sqlite3 isn't installed but it was one of the dependancies i installed previously...
If i try and install the dependancies which the code above says are missing, i get the following:
- Code: Select all
pi@raspberrypi ~ $ sudo apt-get install sqlite3 libavformat52
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libavformat52 : Depends: libavcodec52 (>= 5:0.7.13) but it is not going to be installed
Depends: libavutil50 (>= 5:0.7.13) but it is not going to be installed
Depends: libjack-jackd2-0 (>= 1.9.5~dfsg-14) but it is not going to be installed or
libjack-0.116
Depends: libx264-118 (>= 3:0.118.2085+git8a62835) but it is not going to be installed
minidlna : Depends: libjpeg62 but it is not going to be installed
sqlite3 : Depends: libsqlite3-0 (= 3.7.13-1) but 3.7.12.1-1 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
Are these problems related to me trying to install miniDLNA on wheezy - could some of the libraries not be compatible with wheezy?