Page 1 of 3 123 LastLast
Results 1 to 10 of 27

Thread: unmet dependecies in apt-get

Hybrid View

  1. #1
    Junior Member registered user
    Join Date
    Apr 2004
    Posts
    23

    unmet dependecies in apt-get

    in an attempt to install mplayer i broke apt-get again ( differently this time ) i looked around at other posts of simmilar problems but didn't find anything that worked for me. Thanks in adavace.
    PS- a fast solution would be nice b/c i would like to get an updated version of the gimp

    c01100011@silver:~$ su
    Password:
    root@silver:/home/c01100011# apt-get install gaim
    Reading Package Lists... Done
    Building Dependency Tree... Done
    gaim is already the newest version.
    You might want to run `apt-get -f install' to correct these:
    The following packages have unmet dependencies:
    mplayer: Depends: libvorbis0 (>= 1.0.0) but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    root@silver:/home/c01100011# apt-get -f install
    Reading Package Lists... Done
    Building Dependency Tree... Done
    Correcting dependencies... failed.
    The following packages have unmet dependencies:
    E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
    E: Unable to correct dependencies
    root@silver:/home/c01100011#

  2. #2
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: unmet dependecies in apt-get

    Quote Originally Posted by c01100011
    in an attempt to install mplayer i broke apt-get again ( differently this time ) i looked around at other posts of simmilar problems but didn't find anything that worked for me. Thanks in adavace.
    PS- a fast solution would be nice b/c i would like to get an updated version of the gimp
    Open the file /etc/apt/sources.list for editing and put a # character in front of all the lines that have stable (from Debian) in them. While still editing the file change the line you have for mplayer to this.
    Code:
    ## Various Multimedia Helper Apps Mplayer, Real, etc.. ##
    deb ftp://ftp.nerim.net/debian-marillat/ unstable main
    To actually be installing Mplayer from the unstable branch instead of the stable that it looks like you have done. Now use dselect update to get both the apt and dpkg databases back in sync and then try apt-get --reinstall install mplayer-??? replace the ??? with the arch that you need 386, 686 or k7 and hopefully this solves the problem.

  3. #3
    Junior Member registered user
    Join Date
    Apr 2004
    Posts
    23
    I don't know if that did anything but the reponcec i got was this
    root@silver:~# apt-get --reinstall install mplayer-386
    Reading Package Lists... Done
    Building Dependency Tree... Done
    You might want to run `apt-get -f install' to correct these:
    The following packages have unmet dependencies:
    mplayer: Depends: libvorbis0 (>= 1.0.0) but it is not going to be installed
    mplayer-386: Depends: libdirectfb-0.9-20 but it is not going to be installed
    Depends: libdivxdecore0 (>= 1:5.0.1) but it is not going to be installed
    Depends: libfaad2-0 (>= 2.0-rc3-0.0) but it is not going to be installed
    Depends: libggi2 (>= 1:2.0.4) but it is not going to be installed
    Depends: libpostproc0 (>= 0.90rc4) but it is not going to be installed
    Depends: libxvidcore2 (>= 1:0.9.2-0.2) but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

  4. #4
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    So go ahead and do what apt just told you to do. Not guaranteed to work everytime.

  5. #5
    Junior Member registered user
    Join Date
    Apr 2004
    Posts
    23
    i have tried apt-get install -f many times and it doesn't fix the problem.

  6. #6
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479
    Quote Originally Posted by c01100011
    I don't know if that did anything but the reponcec i got was this
    root@silver:~# apt-get --reinstall install mplayer-386
    Reading Package Lists... Done
    Building Dependency Tree... Done
    You might want to run `apt-get -f install' to correct these:
    The following packages have unmet dependencies:
    mplayer: Depends: libvorbis0 (>= 1.0.0) but it is not going to be installed
    mplayer-386: Depends: libdirectfb-0.9-20 but it is not going to be installed
    Depends: libdivxdecore0 (>= 1:5.0.1) but it is not going to be installed
    Depends: libfaad2-0 (>= 2.0-rc3-0.0) but it is not going to be installed
    Depends: libggi2 (>= 1:2.0.4) but it is not going to be installed
    Depends: libpostproc0 (>= 0.90rc4) but it is not going to be installed
    Depends: libxvidcore2 (>= 1:0.9.2-0.2) but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    Can you post the /etc/apt/sources.list that you are using something is not right here that package should install with no problems. The libvorbis0 package that it is complaining about is from stable so you are still trying to install the stable version of mplayer what does the output of these commands look like on your machine you should be seeing testing/unstable for the candidate to install for each package except the vorbis one.

    Code:
    >$ apt-cache policy mplayer-386
    mplayer-386:
      Installed: 1:1.0-pre3cvs20040404-0.0
      Candidate: 1:1.0-pre3cvs20040404-0.0
      Version Table:
     *** 1:1.0-pre3cvs20040404-0.0 0
            600 ftp://ftp.nerim.net unstable/main Packages
            100 /var/lib/dpkg/status
    
    >$ apt-cache policy libvorbis0
    libvorbis0:
      Installed: (none)
      Candidate: 1.0rc3-1
      Version Table:
         1.0rc3-1 0
            500 http://192.168.0.4 stable/main Packages
            100 /var/lib/dpkg/status
    
    >$ apt-cache policy libdirectfb-0.9-20
    libdirectfb-0.9-20:
      Installed: 0.9.20-1
      Candidate: 0.9.20-1
      Version Table:
     *** 0.9.20-1 0
            990 http://192.168.0.4 testing/main Packages
            600 http://192.168.0.4 unstable/main Packages
            100 /var/lib/dpkg/status
    
    >$ apt-cache policy libdivxdecore0
    libdivxdecore0:
      Installed: 1:5.0.1-1
      Candidate: 1:5.0.1-1
      Version Table:
     *** 1:5.0.1-1 0
            600 ftp://ftp.nerim.net unstable/main Packages
            100 /var/lib/dpkg/status
    
    >$ apt-cache policy libfaad2-0
    libfaad2-0:
      Installed: 2.0-rc3-0.0
      Candidate: 2.0-rc3-0.0
      Version Table:
     *** 2.0-rc3-0.0 0
            600 ftp://ftp.nerim.net unstable/main Packages
            100 /var/lib/dpkg/status
    
    >$ apt-cache policy libggi2
    libggi2:
      Installed: 1:2.0.4-2
      Candidate: 1:2.0.4-2
      Version Table:
     *** 1:2.0.4-2 0
            990 http://192.168.0.4 testing/main Packages
            600 http://192.168.0.4 unstable/main Packages
            100 /var/lib/dpkg/status
         1:2.0.1-2 0
            500 http://192.168.0.4 stable/main Packages
    
    >$ apt-cache policy libpostproc0
    libpostproc0:
      Installed: 1:1.0-pre1.1
      Candidate: 1:1.0-pre1.1
      Version Table:
     *** 1:1.0-pre1.1 0
            600 ftp://ftp.nerim.net unstable/main Packages
            100 /var/lib/dpkg/status
    
    >$ apt-cache policy libxvidcore2
    libxvidcore2:
      Installed: 1:0.9.2-sarge0.3
      Candidate: 1:0.9.2-sarge0.3
      Version Table:
     *** 1:0.9.2-sarge0.3 0
            100 /var/lib/dpkg/status
         1:0.9.2-0.3 0
            600 ftp://ftp.nerim.net unstable/main Packages

  7. #7
    Junior Member registered user
    Join Date
    Apr 2004
    Posts
    23
    # See sources.list(5) for more information, especialy
    # Remember that you can only use http, ftp or file URIs
    # CDROMs are managed through the apt-cdrom tool.

    ## Various Multimedia Helper Apps Mplayer, Real, etc.. ##
    deb ftp://ftp.nerim.net/debian-marillat/ unstable main

    # Security updates for "stable"
    deb http://security.debian.org stable/updates main contrib non-free
    deb http://security.debian.org testing/updates main contrib non-free

    # Stable
    #deb http://ftp2.de.debian.org/pub/debian stable main contrib non-free
    #deb http://ftp2.de.debian.org/pub/debian-non-US stable/non-US main contrib non-free

    # Sources
    deb-src http://ftp2.de.debian.org/pub/debian stable main contrib non-free
    deb-src http://ftp2.de.debian.org/pub/debian-non-US stable/non-US main contrib non-free

    # Testing
    deb http://ftp2.de.debian.org/pub/debian testing main contrib non-free
    deb http://ftp2.de.debian.org/pub/debian-non-US testing/non-US main contrib non-free

    # Sources
    deb-src http://ftp2.de.debian.org/pub/debian testing main contrib non-free
    deb-src http://ftp2# See sources.list(5) for more information, especialy
    # Remember that you can only use http, ftp or file URIs
    # CDROMs are managed through the apt-cdrom tool.

    ## Various Multimedia Helper Apps Mplayer, Real, etc.. ##
    deb ftp://ftp.nerim.net/debian-marillat/ unstable main

    # Security updates for "stable"
    deb http://security.debian.org stable/updates main contrib non-free
    deb http://security.debian.org testing/updates main contrib non-free

    # Stable
    #deb http://ftp2.de.debian.org/pub/debian stable main contrib non-free
    #deb http://ftp2.de.debian.org/pub/debian-non-US stable/non-US main #contrib non-free
    #.de.debian.org/pub/debian-non-US testing/non-US main contrib non-free

    # Unstable
    deb http://ftp2.de.debian.org/debian unstable main contrib non-free
    deb http://ftp2.de.debian.org/debian-non-US unstable/non-US main contrib non-free

    # Sources
    deb-src http://ftp2.de.debian.org/debian unstable main contrib non-free
    deb-src http://ftp2.de.debian.org/debian-non-US unstable/non-US main contrib non-free

    # Experimental
    deb http://ftp2.de.debian.org/debian ../project/experimental main contrib non-free
    deb-src http://ftp2.de.debian.org/debian ../project/experimental main contrib non-free

    # Mozilla
    # deb http://non-us.debian.org/~kitame/mozilla ./
    # deb-src http://non-us.debian.org/~kitame/mozilla ./

    # GNOME 2.0
    # deb http://www.gnome.de/debian/ ./

    # KDE 3
    # deb http://ktown.kde.org/~nolden/kde stable main
    # deb-src http://ktown.kde.org/~nolden/kde stable main
    # We get packages from testing/unstable for now

    # cdbakeoven
    # deb http://coyote.asoc.euitt.upm.es/mud/debian/ ./

    # XFree 4.2/4.3
    # deb http://people.debian.org/~branden/packages sid/i386/
    # deb-src http://people.debian.org/~branden/packages sid/source/
    # deb http://www.penguinppc.org/~daniels/sid/i386 ./
    # deb-src http://www.penguinppc.org/~daniels/sid/source ./

    # JavaReading Package Lists... Done
    #deb ftp://ftp.gwdg.de/pub/languages/java/linux/debian woody main non-free
    #deb-src ftp://ftp.gwdg.de/pub/languages/java/linux/debian woody main non-free
    #deb ftp://ftp.gwdg.de/pub/languages/java/linux/debian unstable main non-free
    #deb-src ftp://ftp.gwdg.de/pub/languages/java/linux/debian unstable main non-free
    # deb http://people.debian.org/~sgybas/jdk13
    # LyX & others (now in debian/unstable)
    # deb ftp://ntama.uni-mainz.de/pub/debian unofficial/
    # deb-src ftp://ntama.uni-mainz.de/pub/debian unofficial/

    # Evolution
    #deb ftp://ftp.ximian.com/pub/debian stable main
    #deb-src ftp://ftp.ximian.com/pub/debian stable main

    # Blades Repository (pppoeconf & co)
    # deb http://people.debian.org/~blade/testing ./
    # deb-src http://people.debian.org/~blade/testing ./

    # Wine CVS snapshot
    # deb http://people.debian.org/~andreas/debian wine main
    # deb-src http://people.debian.org/~andreas/debian wine main

    # deb cdrom:[Debian GNU/Linux 2.2 r3 _Potato_ - Official i386 Binary-1 (20010427)]/ unstable contrib main non-US/contrib non-US/main
    deb http://eyck.forumakad.pl/debian ./

  8. #8
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479
    Try this for the sources.list and it should work the line you have at the bottom of the file was causing the problem it has the stable version of mplayer. Make sure you use dselect update after changing the file then install and you will probably want to install the w32codecs package as well.

    Code:
    # See sources.list(5) for more information, especialy
    # Remember that you can only use http, ftp or file URIs
    # CDROMs are managed through the apt-cdrom tool.
    
    ## Various Multimedia Helper Apps Mplayer, Real, etc.. ##
    deb ftp://ftp.nerim.net/debian-marillat/ unstable main
    
    # Security updates for "stable"
    #deb http://security.debian.org stable/updates main contrib non-free
    deb http://security.debian.org testing/updates main contrib non-free
    
    # Stable
    #deb http://ftp2.de.debian.org/pub/debian stable main contrib non-free
    #deb http://ftp2.de.debian.org/pub/debian-non-US stable/non-US main contrib non-free
    
    # Sources
    #deb-src http://ftp2.de.debian.org/pub/debian stable main contrib non-free
    #deb-src http://ftp2.de.debian.org/pub/debian-non-US stable/non-US main contrib non-free
    
    # Testing
    deb http://ftp2.de.debian.org/pub/debian testing main contrib non-free
    deb http://ftp2.de.debian.org/pub/debian-non-US testing/non-US main contrib non-free
    
    # Sources
    deb-src http://ftp2.de.debian.org/pub/debian testing main contrib non-free
    deb-src http://ftp2.de.debian.org/pub/debian-non-US testing/non-US main contrib non-free
    
    # Unstable
    deb http://ftp2.de.debian.org/debian unstable main contrib non-free
    deb http://ftp2.de.debian.org/debian-non-US unstable/non-US main contrib non-free
    
    # Sources
    deb-src http://ftp2.de.debian.org/debian unstable main contrib non-free
    deb-src http://ftp2.de.debian.org/debian-non-US unstable/non-US main contrib non-free
    
    # Experimental
    deb http://ftp2.de.debian.org/debian ../project/experimental main contrib non-free
    deb-src http://ftp2.de.debian.org/debian ../project/experimental main contrib non-free
    
    # Mozilla
    # deb http://non-us.debian.org/~kitame/mozilla ./
    # deb-src http://non-us.debian.org/~kitame/mozilla ./
    
    # GNOME 2.0
    # deb http://www.gnome.de/debian/ ./
    
    # KDE 3
    # deb http://ktown.kde.org/~nolden/kde stable main
    # deb-src http://ktown.kde.org/~nolden/kde stable main
    # We get packages from testing/unstable for now
    
    # cdbakeoven
    # deb http://coyote.asoc.euitt.upm.es/mud/debian/ ./
    
    # XFree 4.2/4.3
    # deb http://people.debian.org/~branden/packages sid/i386/
    # deb-src http://people.debian.org/~branden/packages sid/source/
    # deb http://www.penguinppc.org/~daniels/sid/i386 ./
    # deb-src http://www.penguinppc.org/~daniels/sid/source ./
    
    # JavaReading Package Lists... Done
    #deb ftp://ftp.gwdg.de/pub/languages/java/linux/debian woody main non-free
    #deb-src ftp://ftp.gwdg.de/pub/languages/java/linux/debian woody main non-free
    #deb ftp://ftp.gwdg.de/pub/languages/java/linux/debian unstable main non-free
    #deb-src ftp://ftp.gwdg.de/pub/languages/java/linux/debian unstable main non-free
    # deb http://people.debian.org/~sgybas/jdk13
    # LyX & others (now in debian/unstable)
    # deb ftp://ntama.uni-mainz.de/pub/debian unofficial/
    # deb-src ftp://ntama.uni-mainz.de/pub/debian unofficial/
    
    # Evolution
    #deb ftp://ftp.ximian.com/pub/debian stable main
    #deb-src ftp://ftp.ximian.com/pub/debian stable main
    
    # Blades Repository (pppoeconf & co)
    # deb http://people.debian.org/~blade/testing ./
    # deb-src http://people.debian.org/~blade/testing ./
    
    # Wine CVS snapshot
    # deb http://people.debian.org/~andreas/debian wine main
    # deb-src http://people.debian.org/~andreas/debian wine main
    
    # deb cdrom:[Debian GNU/Linux 2.2 r3 _Potato_ - Official i386 Binary-1 (20010427)]/ unstable contrib main non-US/contrib non-US/main
    #deb http://eyck.forumakad.pl/debian ./

  9. #9
    Junior Member registered user
    Join Date
    Apr 2004
    Posts
    23
    at least i feel like i am getting closer to a soulution .... I replaced the sources list and ran dselect update and it seemed to be working ok untill

    11% [Connecting to ftp2.de.debian.org (195.71.9.196)]
    Err http://ftp2.de.debian.org testing/main Packages
    Could not connect to ftp2.de.debian.org:80 (195.71.9.196), connection timed out

    I tried it several times with the same problem
    ahhhh !

  10. #10
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479
    Quote Originally Posted by c01100011
    at least i feel like i am getting closer to a soulution .... I replaced the sources list and ran dselect update and it seemed to be working ok untill

    11% [Connecting to ftp2.de.debian.org (195.71.9.196)]
    Err http://ftp2.de.debian.org testing/main Packages
    Could not connect to ftp2.de.debian.org:80 (195.71.9.196), connection timed out

    I tried it several times with the same problem
    ahhhh !
    It could be the pub in the line in these sections I just did an update and the ftp2.de severs are working here so you should be able to connect.
    Code:
     
     # Testing 
     deb http://ftp2.de.debian.org/pub/debian testing main contrib non-free 
     deb http://ftp2.de.debian.org/pub/debian-non-US testing/non-US main contrib non-free 
     
     # Sources 
     deb-src http://ftp2.de.debian.org/pub/debian testing main contrib non-free 
     deb-src http://ftp2.de.debian.org/pub/debian-non-US testing/non-US main contrib non-free
    Just remove it (pub) from the line to make them look like the unstable lines in the file except of course for testing still in the line.

Page 1 of 3 123 LastLast

Similar Threads

  1. "Unmet dependencies" - apt-get broken
    By Boolean in forum General Support
    Replies: 1
    Last Post: 02-22-2004, 08:18 PM
  2. Replies: 1
    Last Post: 10-18-2003, 06:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


NETGEAR ProSafe 5-port Gigabit Switch GS105v5 picture

NETGEAR ProSafe 5-port Gigabit Switch GS105v5

$9.99



Cisco Catalyst 2960-48TT-L 48-Port Fast Ethernet Managed Rackmount Switch picture

Cisco Catalyst 2960-48TT-L 48-Port Fast Ethernet Managed Rackmount Switch

$46.99



TP-Link 5-Port Gigabit Unmanaged Ethernet Switch Network Expansion TL-SG105 picture

TP-Link 5-Port Gigabit Unmanaged Ethernet Switch Network Expansion TL-SG105

$19.95



5Ports Gigabit Network Switch w/ 4 PoE+ Ports Total 52W each port 30W Plug&Play picture

5Ports Gigabit Network Switch w/ 4 PoE+ Ports Total 52W each port 30W Plug&Play

$31.99



TP-Link TL-SG2210P 10-Port Gigabit Smart Switch w/ 8-Port PoE+ NO AC SKU 25597 picture

TP-Link TL-SG2210P 10-Port Gigabit Smart Switch w/ 8-Port PoE+ NO AC SKU 25597

$39.99



Arista DCS-7050SX-64-R 48P 10GbE SFP+ 4P 40GbE QSFP+ RA Switch picture

Arista DCS-7050SX-64-R 48P 10GbE SFP+ 4P 40GbE QSFP+ RA Switch

$125.00



TP-Link TL-SG105 5-Port Gigabit Ethernet Unmanaged Metal Desktop Network Switch picture

TP-Link TL-SG105 5-Port Gigabit Ethernet Unmanaged Metal Desktop Network Switch

$22.49



Linksys 8-Port Managed Gigabit PoE+ Switch 110W w/ 2 Uplink Gigabit - LGS310MPC picture

Linksys 8-Port Managed Gigabit PoE+ Switch 110W w/ 2 Uplink Gigabit - LGS310MPC

$49.00



NETGEAR 5-Port Gigabit Ethernet Unmanaged Switch (Gs305) - Desktop Quiet Fanless picture

NETGEAR 5-Port Gigabit Ethernet Unmanaged Switch (Gs305) - Desktop Quiet Fanless

$22.00



10-Port Gigabit PoE Network Switch with 8 PoE+ Ports with 2 Combo SFP Slots 125W picture

10-Port Gigabit PoE Network Switch with 8 PoE+ Ports with 2 Combo SFP Slots 125W

$39.99