Results 1 to 9 of 9

Thread: Synaptic not seeing repos

  1. #1
    Join Date
    Nov 2008
    Beans
    189

    Synaptic not seeing repos

    I have 2 new repos that are listed in my sources.list file. They are also visible in System/Administration/Software Sources/Other Software. However, they are not visible under the Origins tab in Synaptic. Why would this be? And how would I download from them if Synaptic doesn't see them?
    You know it's time for a new computer when your's says, "I'm sorry Dave, I'm afraid I can't do that."
    By the way, it will probably be a Dell......running Vista.

  2. #2
    Join Date
    Nov 2009
    Beans
    Hidden!

    Re: Synaptic not seeing repos

    you need to do this

    Code:
    sudo apt-get update

    then it will "see" your repo's

    cheers

  3. #3
    Join Date
    Nov 2008
    Beans
    189

    Re: Synaptic not seeing repos

    Quote Originally Posted by mushwars View Post
    you need to do this

    Code:
    sudo apt-get update

    then it will "see" your repo's

    cheers
    mushwars Already tried that. apt-get update only updates repos it sees. It doesn't seem to see my new ones...sigh
    You know it's time for a new computer when your's says, "I'm sorry Dave, I'm afraid I can't do that."
    By the way, it will probably be a Dell......running Vista.

  4. #4
    Join Date
    Nov 2009
    Beans
    Hidden!

    Re: Synaptic not seeing repos

    actually that is not true, I could go into /etc/apt/soruces.list and add joe blows repoisitory then apt-get update and then apt-get install joeblowsprogram.

    There is something else wrong can you paste your /etc/apt/sources.list ?

  5. #5
    Join Date
    Nov 2008
    Beans
    189

    Re: Synaptic not seeing repos

    Quote Originally Posted by mushwars View Post
    actually that is not true, I could go into /etc/apt/soruces.list and add joe blows repoisitory then apt-get update and then apt-get install joeblowsprogram.

    There is something else wrong can you paste your /etc/apt/sources.list ?

    mushwars Here's the file. And as I said you can see lines 48 & 49 in System/Administration/Software Sources/Other Software. Makes no sense to me??

    deb cdrom:[Ubuntu 9.10 _Karmic Koala_ - Release i386 (20091028.5)]/ karmic main restricted
    # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
    # newer versions of the distribution.
    deb http://us.archive.ubuntu.com/ubuntu/ karmic main restricted
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic main restricted
    ## Major bug fix updates produced after the final release of the
    ## distribution.
    deb http://us.archive.ubuntu.com/ubuntu/ karmic-updates main restricted
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic-updates main restricted
    ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    ## team. Also, please note that software in universe WILL NOT receive any
    ## review or updates from the Ubuntu security team.
    deb http://us.archive.ubuntu.com/ubuntu/ karmic universe
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic universe
    deb http://us.archive.ubuntu.com/ubuntu/ karmic-updates universe
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic-updates universe
    ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
    ## team, and may not be under a free licence. Please satisfy yourself as to
    ## your rights to use the software. Also, please note that software in
    ## multiverse WILL NOT receive any review or updates from the Ubuntu
    ## security team.
    deb http://us.archive.ubuntu.com/ubuntu/ karmic multiverse
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic multiverse
    deb http://us.archive.ubuntu.com/ubuntu/ karmic-updates multiverse
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic-updates multiverse
    ## Uncomment the following two lines to add software from the 'backports'
    ## repository.
    ## N.B. software from this repository may not have been tested as
    ## extensively as that contained in the main release, although it includes
    ## newer versions of some applications which may provide useful features.
    ## Also, please note that software in backports WILL NOT receive any review
    ## or updates from the Ubuntu security team.
    deb http://us.archive.ubuntu.com/ubuntu/ karmic-backports main restricted universe multiverse
    deb-src http://us.archive.ubuntu.com/ubuntu/ karmic-backports main restricted universe multiverse
    ## Uncomment the following two lines to add software from Canonical's
    ## 'partner' repository.
    ## This software is not part of Ubuntu, but is offered by Canonical and the
    ## respective vendors as a service to Ubuntu users.
    deb http://archive.canonical.com/ubuntu karmic partner
    deb-src http://archive.canonical.com/ubuntu karmic partner
    deb http://security.ubuntu.com/ubuntu karmic-security main restricted
    deb-src http://security.ubuntu.com/ubuntu karmic-security main restricted
    deb http://security.ubuntu.com/ubuntu karmic-security universe
    deb-src http://security.ubuntu.com/ubuntu karmic-security universe
    deb http://security.ubuntu.com/ubuntu karmic-security multiverse
    deb-src http://security.ubuntu.com/ubuntu karmic-security multiverse
    deb file:/usr/local/mydebs ./
    deb http://ftp.us.debian.org/debian sid main
    deb http://http.us.debian.org/debian sid main
    You know it's time for a new computer when your's says, "I'm sorry Dave, I'm afraid I can't do that."
    By the way, it will probably be a Dell......running Vista.

  6. #6
    Join Date
    Nov 2009
    Beans
    Hidden!

    Re: Synaptic not seeing repos

    oh yea, I forgot to ask you what packages are you trying to install, that way I know which repos you need in that sources file. Otherwise I dont know if you have what you need in there or not >_<

  7. #7
    Join Date
    Nov 2008
    Beans
    189

    Re: Synaptic not seeing repos

    Quote Originally Posted by mushwars View Post
    oh yea, I forgot to ask you what packages are you trying to install, that way I know which repos you need in that sources file. Otherwise I dont know if you have what you need in there or not >_<
    Well for starters, python-gobject-dev_2.20.0-1_all.deb. Discovered I needed the gpg keys..getting them now.
    You know it's time for a new computer when your's says, "I'm sorry Dave, I'm afraid I can't do that."
    By the way, it will probably be a Dell......running Vista.

  8. #8
    Join Date
    Nov 2009
    Beans
    Hidden!

    Re: Synaptic not seeing repos

    Quote Originally Posted by Lostin60's View Post
    Well for starters, python-gobject-dev_2.20.0-1_all.deb. Discovered I needed the gpg keys..getting them now.
    yea that package requires
    deb http://ftp.de.debian.org/debian sid main

    which you already have. So, right you need to get the key.

  9. #9
    Join Date
    Nov 2008
    Beans
    189

    Re: Synaptic not seeing repos

    Quote Originally Posted by mushwars View Post
    yea that package requires
    deb http://ftp.de.debian.org/debian sid main

    which you already have. So, right you need to get the key.
    Which is seemingly easier said than done...heheh
    You know it's time for a new computer when your's says, "I'm sorry Dave, I'm afraid I can't do that."
    By the way, it will probably be a Dell......running Vista.

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
  •