Reply
Thread Tools
Posts: 3,617 | Thanked: 2,412 times | Joined on Nov 2009 @ Cambridge, UK
#21
Originally Posted by *the_newbie* View Post
Im having a similar problem removing and/installing some apps.
I tried to install Shortcutd along with some others a while ago using fapman.
Shortcutd shows up in settings and in the defualt app manager, however in fapman it does not show up as 'installed' and also itgeneraly does not work.

Here is my output from:
Code:
root
apt-get install -f
I've seen this issue before, but not quite on this scale! I'd suggest doing:
Code:
root
mkdir -p /usr/share/doc/libmikmod2 /usr/share/doc/libsmpeg0 /usr/share/doc/libcairomm-1.0-1 /usr/share/doc/libglibmm-2.4-1c2a /usr/share/doc/libillumination0 /usr/share/doc/libsdl-gfx1.2-4 /usr/share/doc/mplayer /tmp/shortcutd
apt-get -f install
 

The Following User Says Thank You to Rob1n For This Useful Post:
Posts: 46 | Thanked: 22 times | Joined on May 2008 @ London
#22
Originally Posted by Rob1n View Post
I've seen this issue before, but not quite on this scale! I'd suggest doing:
Sorry, between me experiencing app installation problems and reading this comment, I have reflashed my device, had that terrible ‘USB port fall out of socket’ problem, and sent off my n900 for repairs. I hope your reply will help someone else or me as soon as I mess up my n900 again.
__________________
By the time you read this, you've already read it.
 
Posts: 46 | Thanked: 22 times | Joined on May 2008 @ London
#23
Hi, I've received my N900 back from Nokia, they said the fault apparently was not covered by warranty but they fixed it for free anyway! . Now..

I have a problem with shortcutd.

Here is what I get when I run

Code:
apt-get install -f
Code:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 92 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up shortcutd (0.1.4-1) ...
cp: cannot stat '/tmp/shortcutd': No such file or directory
dpkg: error processing shortcutd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 shortcutd
E: Sub-process /usr/bin/dpkg returned an error code (1)
Nokia-N900:~#
I also ran this code to no avail.

Code:
Nokia-N900:~# mkdir -p /tmp/shortcutd
Nokia-N900:~# apt-get install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 92 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up shortcutd (0.1.4-1) ...
cp: omitting directory '/tmp/shortcutd'
dpkg: error processing shortcutd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 shortcutd
E: Sub-process /usr/bin/dpkg returned an error code (1)
Nokia-N900:~#
__________________
By the time you read this, you've already read it.

Last edited by *the_newbie*; 2011-05-05 at 14:52. Reason: more code
 
Posts: 92 | Thanked: 69 times | Joined on Nov 2009 @ UK
#24
Originally Posted by *the_newbie* View Post
Hi, I've received my N900 back from Nokia, they said the fault apparently was not covered by warranty but they fixed it for free anyway! . Now..

I have a problem with shortcutd.

Here is what I get when I run

Code:
apt-get install -f
Code:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 92 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up shortcutd (0.1.4-1) ...
cp: cannot stat '/tmp/shortcutd': No such file or directory
dpkg: error processing shortcutd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 shortcutd
E: Sub-process /usr/bin/dpkg returned an error code (1)
Nokia-N900:~#
I also ran this code to no avail.

Code:
Nokia-N900:~# mkdir -p /tmp/shortcutd
Nokia-N900:~# apt-get install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 92 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up shortcutd (0.1.4-1) ...
cp: omitting directory '/tmp/shortcutd'
dpkg: error processing shortcutd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 shortcutd
E: Sub-process /usr/bin/dpkg returned an error code (1)
Nokia-N900:~#
funnily enough i just reflashed my n900 for the lovely clean feeling and fapman decided to screw me over and hung halfway through installing shortcutd - nowi am in exactly the same situation as you! cant remove it or install it - gah! if only i could find the location of these setup scripts that are failing to run i might be able to diagnose the problem.. any ideas?

ive done all the remove-reinstreq stuff to no avail - even created that dir but it didnt help - ham nor fam can remove or install it and it seems i cant do it using apt-get or dpkg either

Last edited by fusi; 2011-05-27 at 02:55.
 
Posts: 540 | Thanked: 387 times | Joined on May 2009
#25
I didn't read the whole thread but this script I wrote for these types of situations and it might work.

Code:
#!/bin/sh
# fixapt - force uninstall broken .deb package

# Define temporary directory location
tmpdir="/dev/shm";

# Check distro
ifapt=$(which apt-get 2>/dev/null);
 if [ -z "$ifapt" ];
   then echo "Non-debian distribution"; exit 0;
 fi

# Check for root
if [ "$UID" = "0" ];
then ifroot="yes";
else
 if [ "$USER" = "root" ];
 then ifroot="yes";    
 fi
fi
if [ "$ifroot" != "yes" ];
then echo "Need to be root"; exit 0;
fi

# Sanity check
ifempty=$(apt-get -s -f install | grep -A 1 REMOVED);
 if [ -z "$ifempty" ];
   then echo "No broken packages"; exit 0;
 fi

# Force remove packages
apt-get -y -f install > ${tmpdir}/broken; 

# Create backup directory
 if [ -d "/var/lib/dpkg/info" ]; 
   then 
     if [ ! -d "/var/lib/dpkg/broken" ]; 
       then mkdir /var/lib/dpkg/broken; 
     fi; 
 fi; 

# Important: Delete cached files
for i in $(cat ${tmpdir}/broken | grep -A 1 REMOVED | awk NR==2 | sed 's/  //g'); 
 do echo $i; 
 mv /var/lib/dpkg/info/${i}.* /var/lib/dpkg/broken/; 
 dpkg --remove --force-remove-reinstreq ${i}; 
done;

# Check if successful
apt-get -f install 
ifempty=$(apt-get -s -f install | grep -A 1 REMOVED);
 if [ -z "$ifempty" ];
   then echo "Done";
   else echo "Error";
 fi;
Attached Files
File Type: txt fixapt.txt (1.1 KB, 318 views)
 

The Following 3 Users Say Thank You to linuxeventually For This Useful Post:
Posts: 92 | Thanked: 69 times | Joined on Nov 2009 @ UK
#26
Thank you for the reply linuxeventually - really appreciate it though i actually came back just now to say that i had figured out how to fix it!

what i did was:

1. goto /var/lib/dpkg/info as root

Code:
sudo gainroot
cd /var/lib/dpkg/info/
2. delete anything in that folder that starts with 'shortcutd'

Code:
rm shortcutd*
3. cleaned up the package manager

Code:
dpkg --remove shortcutd
4. rebooted and reinstalled and now it works yay \o/

thanks for the script! looks very handy have saved many thanks! hopefully this will help others in the future too

Last edited by fusi; 2011-05-27 at 17:14.
 

The Following 3 Users Say Thank You to fusi For This Useful Post:
corduroysack's Avatar
Posts: 939 | Thanked: 366 times | Joined on Dec 2010 @ U.K.
#27
i'm having this problem when i try and install anything:
need to fetch date for 0 packages
--- 2011-08-24 10:35:55 ---
sent 0 requests, received 0 replies with 0 errors
--- 2011-08-24 10:35:55 ---
Finished fetching package dates
--- 2011-08-24 10:36:01 ---
Start reading package lists
--- 2011-08-24 10:36:01 ---
No need to read package lists
--- 2011-08-24 10:36:01 ---
Start fetching package dates
--- 2011-08-24 10:36:01 ---
No need to fetch dates
--- 2011-08-24 10:36:19 ---
Start reading package lists
--- 2011-08-24 10:36:19 ---
No need to read package lists
--- 2011-08-24 10:36:19 ---
Start fetching package dates
--- 2011-08-24 10:36:19 ---
No need to fetch dates
--- 2011-08-24 10:36:37 ---
/usr/bin/apt-get -qsy --allow-unauthenticated -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install tweego
--- 2011-08-24 10:36:52 ---
Output from last process:
---
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
libqca2 libqca2-plugin-ossl libqoauth
Suggested packages:
libqca2-plugin-cyrus-sasl libqca2-plugin-gnupg libqca2-plugin-pkcs11
Recommended packages:
ca-certificates
The following NEW packages will be installed:
libqca2 libqca2-plugin-ossl libqoauth tweego
0 upgraded, 4 newly installed, 0 to remove and 19 not upgraded.
1 not fully installed or removed.
Inst libqca2 (2.0.2-1maemo3 Extras:2.0/fremantle-1.3, Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Inst libqca2-plugin-ossl (2.0.0beta3-4 Extras:2.0/fremantle-1.3, Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Inst libqoauth (1.0.1-5 Extras:2.0/fremantle-1.3, Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Inst tweego (0.6.5-4 Extras-devel:2.0/fremantle)
Conf khweeteur (0.5.27-2 Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Conf libqca2 (2.0.2-1maemo3 Extras:2.0/fremantle-1.3, Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Conf libqca2-plugin-ossl (2.0.0beta3-4 Extras:2.0/fremantle-1.3, Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Conf libqoauth (1.0.1-5 Extras:2.0/fremantle-1.3, Extras-devel:2.0/fremantle, Extras-testing:2.0/fremantle)
Conf tweego (0.6.5-4 Extras-devel:2.0/fremantle)

--- 2011-08-24 10:36:57 ---
/usr/bin/apt-get -qy --allow-unauthenticated -o DPkg:ptions::=--force-confnew -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install tweego
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
libqca2 libqca2-plugin-ossl libqoauth
Suggested packages:
libqca2-plugin-cyrus-sasl libqca2-plugin-gnupg libqca2-plugin-pkcs11
Recommended packages:
ca-certificates
The following NEW packages will be installed:
libqca2 libqca2-plugin-ossl libqoauth tweego
0 upgraded, 4 newly installed, 0 to remove and 19 not upgraded.
1 not fully installed or removed.
Need to get 944kB of archives.
After this operation, 2834kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
libqca2 libqca2-plugin-ossl libqoauth tweego
Authentication warning overridden.
Get:1 http://repository.maemo.org fremantle-1.3/free libqca2 2.0.2-1maemo3 [504kB]
Get:2 http://repository.maemo.org fremantle-1.3/free libqca2-plugin-ossl 2.0.0beta3-4 [110kB]
Get:3 http://repository.maemo.org fremantle-1.3/free libqoauth 1.0.1-5 [28.2kB]
Get:4 http://repository.maemo.org fremantle/free tweego 0.6.5-4 [302kB]
Fetched 944kB in 1s (562kB/s)
Selecting previously deselected package libqca2.
(Reading database ... 55561 files and directories currently installed.)
Unpacking libqca2 (from .../libqca2_2.0.2-1maemo3_armel.deb) ...
Selecting previously deselected package libqca2-plugin-ossl.
Unpacking libqca2-plugin-ossl (from .../libqca2-plugin-ossl_2.0.0beta3-4_armel.deb) ...
Selecting previously deselected package libqoauth.
Unpacking libqoauth (from .../libqoauth_1.0.1-5_armel.deb) ...
Selecting previously deselected package tweego.
Unpacking tweego (from .../tweego_0.6.5-4_armel.deb) ...
Setting up khweeteur (0.5.27-2) ...
Listing /usr/lib/python2.5/site-packages/khweeteur ...
Listing /usr/lib/python2.5/site-packages/khweeteur/icons ...
Listing /usr/lib/python2.5/site-packages/khweeteur/oauth ...
Listing /usr/lib/python2.5/site-packages/khweeteur/oauth2 ...
Segmentation fault
Segmentation fault
dpkg: error processing khweeteur (--configure):
subprocess post-installation script returned error exit status 139
Setting up libqca2 (2.0.2-1maemo3) ...
Setting up libqca2-plugin-ossl (2.0.0beta3-4) ...
Setting up libqoauth (1.0.1-5) ...
Setting up tweego (0.6.5-4) ...
Errors were encountered while processing:
khweeteur
E: Sub-process /usr/bin/dpkg returned an error code (1)

it seems to have happened since entering this:
http://talk.maemo.org/showpost.php?p...&postcount=459
__________________
"I Reject Your Reality & Substitute My Own" Adam Savage

Last edited by corduroysack; 2011-08-24 at 09:52.
 
Posts: 4 | Thanked: 0 times | Joined on Jan 2012 @ Belgrade, Serbia.
#28
Had errors installing programs, so I searched for help, but noting helped so i re-flashed, but again no luck with installations..

Code:
BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) built-in shell (ash)
Enter 'help' for a list of built-in commands.

~ $ root


BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) built-in shell (ash)
Enter 'help' for a list of built-in commands.

Nokia-N900:~# apt-get install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
12 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up libavutil49 (4:0.5+svn20090706-5) ...
Optifying usr/share/doc/libavutil49 -> /opt/maemo/usr/share/doc/libavutil49
mv: cannot rename '/usr/share/doc/libavutil49': No such file or directory
dpkg: error processing libavutil49 (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libavcodec52:
libavcodec52 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavcodec52 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libavformat52:
libavformat52 depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
libavformat52 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavformat52 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libavdevice52:
libavdevice52 depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
libavdevice52 depends on libavformat52 (>= 3:0.svn20090303-1) | libavformat-extra-52 (>= 3:0.svn20090303-1); however:
Package libavformat52 is not configured yet.
Package libavformat-extra-52 is not installed.
libavdevice52 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavdevice52 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libavfilter0:
libavfilter0 depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
libavfilter0 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavfilter0 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libpostproc51:
libpostproc51 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libpostproc51 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libswscale0:
libswscale0 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libswscale0 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of ffmpeg:
ffmpeg depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
ffmpeg depends on libavdevice52 (>= 3:0.svn20090303-1) | libavdevice-extra-52 (>= 3:0.svn20090303-1); however:
Package libavdevice52 is not configured yet.
Package libavdevice-extra-52 is not installed.
ffmpeg depends on libavfilter0 (>= 3:0.svn20090303-1) | libavfilter-extra-0 (>= 3:0.svn20090303-1); however:
Package libavfilter0 is not configured yet.
Package libavfilter-extra-0 is not installed.
ffmpeg depends on libavformat52 (>= 3:0.svn20090303-1) | libavformat-extra-52 (>= 3:0.svn20090303-1); however:
Package libavformat52 is not configured yet.
Package libavformat-extra-52 is not installed.
ffmpeg depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
ffmpeg depends on libpostproc51 (>= 3:0.svn20090303-1) | libpostproc-extra-51 (>= 3:0.svn20090303-1); however:
Package libpostproc51 is not configured yet.
Package libpostproc-extra-51 is not installed.
ffmpeg depends on libswscale0 (>= 3:0.svn20090303-1) | libswscale-extra-0 (>= 3:0.svn20090303-1); however:
Package libswscale0 is not configured yet.
Package libswscale-extra-0 is not installed.
dpkg: error processing ffmpeg (--configure):
dependency problems - leaving unconfigured
Setting up libtelepathy-qt4-1 (0.7.3-0maemo1) ...
Optifying usr/share/doc/libtelepathy-qt4-1 -> /opt/maemo/usr/share/doc/libtelepathy-qt4-1
mv: cannot rename '/usr/share/doc/libtelepathy-qt4-1': No such file or directory
dpkg: error processing libtelepathy-qt4-1 (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libqtm-12:
libqtm-12 depends on libtelepathy-qt4-1 (>= 0.7.3); however:
Package libtelepathy-qt4-1 is not configured yet.
dpkg: error processing libqtm-12 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of qmltube:
qmltube depends on ffmpeg; however:
Package ffmpeg is not configured yet.
qmltube depends on libqtm-12; however:
Package libqtm-12 is not configured yet.
dpkg: error processing qmltube (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xtube:
xtube depends on qmltube (>= 0.9.8); however:
Package qmltube is not configured yet.
dpkg: error processing xtube (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
libavutil49
libavcodec52
libavformat52
libavdevice52
libavfilter0
libpostproc51
libswscale0
ffmpeg
libtelepathy-qt4-1
libqtm-12
qmltube
xtube
E: Sub-process /usr/bin/dpkg returned an error code (1)
Than I did:

Code:
Nokia-N900:~# dpkg --configure -a
Setting up libavutil49 (4:0.5+svn20090706-5) ...
Optifying usr/share/doc/libavutil49 -> /opt/maemo/usr/share/doc/libavutil49
mv: cannot rename '/usr/share/doc/libavutil49': No such file or directory
dpkg: error processing libavutil49 (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libavcodec52:
libavcodec52 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavcodec52 (--configure):
dependency problems - leaving unconfigured
Setting up libtelepathy-qt4-1 (0.7.3-0maemo1) ...
Optifying usr/share/doc/libtelepathy-qt4-1 -> /opt/maemo/usr/share/doc/libtelepathy-qt4-1
mv: cannot rename '/usr/share/doc/libtelepathy-qt4-1': No such file or directory
dpkg: error processing libtelepathy-qt4-1 (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of ffmpeg:
ffmpeg depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
ffmpeg depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing ffmpeg (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of qmltube:
qmltube depends on ffmpeg; however:
Package ffmpeg is not configured yet.
dpkg: error processing qmltube (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libswscale0:
libswscale0 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libswscale0 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libavdevice52:
libavdevice52 depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
libavdevice52 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavdevice52 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libavfilter0:
libavfilter0 depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
libavfilter0 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavfilter0 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libavformat52:
libavformat52 depends on libavcodec52 (>= 3:0.svn20090303-1) | libavcodec-extra-52 (>= 3:0.svn20090303-1); however:
Package libavcodec52 is not configured yet.
Package libavcodec-extra-52 is not installed.
libavformat52 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libavformat52 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libpostproc51:
libpostproc51 depends on libavutil49 (>= 3:0.svn20090303-1) | libavutil-extra-49 (>= 3:0.svn20090303-1); however:
Package libavutil49 is not configured yet.
Package libavutil-extra-49 is not installed.
dpkg: error processing libpostproc51 (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xtube:
xtube depends on qmltube (>= 0.9.8); however:
Package qmltube is not configured yet.
dpkg: error processing xtube (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libqtm-12:
libqtm-12 depends on libtelepathy-qt4-1 (>= 0.7.3); however:
Package libtelepathy-qt4-1 is not configured yet.
dpkg: error processing libqtm-12 (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
libavutil49
libavcodec52
libtelepathy-qt4-1
ffmpeg
qmltube
libswscale0
libavdevice52
libavfilter0
libavformat52
libpostproc51
xtube
libqtm-12
There were more programs not installed, but some succeeded as i repeated process many times.. QML-tube is installed and running but not according to code, xtube is not installed and other I don't even know what for are those..

PLS help..I found some similar topics, but were old, and solutions are not helping to me, and were finished with no str8 conclusion..so any idea would be nice. I'll try everything till solved..
 
Posts: 13 | Thanked: 6 times | Joined on Jan 2012
#29
hellow guys
i'm having the same problem with this annoying dpkg thing...here is what i get:
/home/user # apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
2 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up mplayer (1.0svn20091221-4) ...
Optifying usr/share/doc/mplayer -> /opt/maemo/usr/share/doc/mplayer
mv: cannot rename '/usr/share/doc/mplayer': No such file or directory
dpkg: error processing mplayer (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of sib:
sib depends on mplayer; however:
Package mplayer is not configured yet.
dpkg: error processing sib (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
mplayer
sib
E: Sub-process /usr/bin/dpkg returned an error code (1)


/home/user # dpkg --configure -a
Setting up mplayer (1.0svn20091221-4) ...
Optifying usr/share/doc/mplayer -> /opt/maemo/usr/share/doc/mplayer
mv: cannot rename '/usr/share/doc/mplayer': No such file or directory
dpkg: error processing mplayer (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of sib:
sib depends on mplayer; however:
Package mplayer is not configured yet.
dpkg: error processing sib (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
mplayer
sib
 
Posts: 1,523 | Thanked: 1,997 times | Joined on Jul 2011 @ not your mom's FOSS basement
#30
sudo mkdir /usr/share/doc/mplayer && dpkg --configure -a

The error is self-explanatory; next time try to actually read the log.
 
Reply


 
Forum Jump


All times are GMT. The time now is 15:18.