Results 1 to 5 of 5

Thread: gdebi install now failing on Trusty

  1. #1
    Join Date
    Oct 2017
    Beans
    2

    gdebi install now failing on Trusty

    Up until the end of September our scripts were working fine - though a little long winded.

    Code:
      sudo apt-get install -y aptitude 
      sudo aptitude install -y gdebi
      wget http://www.princexml.com/download/prince_10r7-1_ubuntu14.04_amd64.deb
      sudo gdebi --non-interactive prince_10r7-1_ubuntu14.04_amd64.deb
    Since October, the last command now fails because gdebi is not fully installing. Upon inspecting the console logs we see this key difference in the aptitude install of gdebi since October:

    Code:
      Err http://archive.ubuntu.com/ubuntu/ trusty-updates/main gdebi-core all 0.9.5.3ubuntu2
      404  Not Found [IP: 91.189.88.162 80]
    It seems that the gdebi-core has fallen out of the trusty-updates repository!

    My questions are:

    i) Does anyone know who I speak to to get it re-instated?, or

    ii) Does anyone know a better way to do an unattended install of a deb package not in the Ubuntu repositories, than going through the aptitude/gdebi route above (for info, we are stuck on Ubuntu 14.04)?

    Thanks,

  2. #2
    Join Date
    Jun 2016
    Beans
    2,831
    Distro
    Xubuntu

    Re: gdebi install now failing on Trusty

    Just add
    Code:
    sudo apt-get update
    at the top of your script.

    Quote Originally Posted by timtrs View Post
    ii) Does anyone know a better way to do an unattended install of a deb package not in the Ubuntu repositories, than going through the aptitude/gdebi route above (for info, we are stuck on Ubuntu 14.04)?
    Why do you need to use aptitude here?

    Assuming you do need aptitude for other things, and assuming you want this script to install aptitude, I would write it like this -
    Code:
      sudo apt-get update
      sudo apt-get install -y aptitude gdebi
      wget http://www.princexml.com/download/prince_10r7-1_ubuntu14.04_amd64.deb
      sudo gdebi --non-interactive prince_10r7-1_ubuntu14.04_amd64.deb
    Xubuntu 22.04, ArchLinux ♦ System76 hardware, virt-manager/KVM, VirtualBox
    When your questions are resolved to your satisfaction, please use Thread Tools > "Mark this thread as solved..."

  3. #3
    Join Date
    Jul 2013
    Location
    Wisconsin
    Beans
    4,952

    Re: gdebi install now failing on Trusty

    1)
    Code:
      Err http://archive.ubuntu.com/ubuntu/ trusty-updates/main gdebi-core all 0.9.5.3ubuntu2
      404  Not Found [IP: 91.189.88.162 80]
    gdebi and gdebi-core are still there.
    Your source URL is wrong.
    Try opening it in a web browser, and you will see.


    2) In the longer term, once you migrate to something newer than 14.04 you can simply do:

    Code:
      wget http://url/package_name.deb
      sudo apt install -y /path/to/package_name.deb
    Of course, it would work better (and safer) if the package were in the Debian/Ubuntu repositories instead of some website on the dirty, dirty internet.

  4. #4
    Join Date
    Apr 2011
    Location
    Mystletainn Kick!
    Beans
    13,614
    Distro
    Ubuntu

    Re: gdebi install now failing on Trusty

    It seems that the gdebi-core has fallen out of the trusty-updates repository!
    +1 to halogen2's post.
    The version it's looking for it no longer viable.
    the current version is
    0.9.5.3ubuntu3
    an apt-get update would have fixed that.
    Splat Double Splat Triple Splat
    Earn Your Keep
    Don't mind me, I'm only passing through.
    Once in a blue moon, I'm actually helpful
    .

  5. #5
    Join Date
    Oct 2017
    Beans
    2

    Re: gdebi install now failing on Trusty

    Many thanks indeed to all you guys for your help.
    And sorry for not replying earlier - I don't seem to get email notifications of replies.

Tags for this Thread

Bookmarks

Posting Permissions

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