sources sources everywhere

Ask a Question related to Ubuntu, Design and Development.

  1. #1

    Default sources sources everywhere

    Greetings One & All

    Trying to get a thorough understanding of the runes in
    /etc/apt/sources.list

    I've inherited a network containing a few ubuntu servers, all containing
    different source configurations. Attempting to sanitise the muddle has
    prompted a few questions ....

    o What is the significance of "main restricted " as opposed to "main"?

    o Does ubuntu have the debian concept of stable/testing/unstable or does
    it just use the release names?

    o How do I find out if a ubuntu server has already installed a package
    from universe or multiverse?

    Finally, is there any point in specifying more than one mirror e.g.

    deb [url]http://archive.ubuntu.com/ubuntu[/url] breezy main restricted
    deb [url]http://gb.archive.ubuntu.com/ubuntu[/url] breezy main restricted

    Thanks for reading.
    --
    William Tasso
    William Tasso Guest

  2. Similar Questions and Discussions

    1. Music Sources
      Hi, can you give me some web addresses where I can download free or paid music for multimedia projects? Thanks, Pavel.
    2. Light Sources
      I have a simple geometric object that I would like to illuminate with an imaginary light source. I do not want the imaginary 'light' source to be...
    3. Sources
      Could anybody tell me which are the best sites (or sources) to learn ASP? Thanks in advance, Patricia
    4. actionscript sources?
      does anyone know any places I can find actionscript to study and pull apart to furthur my learning on this side of things? I'd like u see...
    5. sources.list
      Am I missing something? ------------------ root:/# cat /etc/apt/sources.list deb cdrom:/ woody contrib main non-US/contrib non-US/main...
  3. #2

    Default Re: sources sources everywhere

    "William Tasso" <spamblocked@tbdata.com> writes:
    > o What is the significance of "main restricted " as opposed to "main"?

    "main restricted" means "main and restricted"

    restricted is something like Debian's non-free
    > o Does ubuntu have the debian concept of stable/testing/unstable or
    > does it just use the release names?
    just the release names

    > o How do I find out if a ubuntu server has already installed a package
    > from universe or multiverse?

    dpkg --get-selections |awk '/install$/ {print $1}'| \
    xargs apt-cache show | grep '^Filename: pool/universe'


    Maybe there's something better...


    > Finally, is there any point in specifying more than one mirror e.g.
    >
    > deb [url]http://archive.ubuntu.com/ubuntu[/url] breezy main restricted
    > deb [url]http://gb.archive.ubuntu.com/ubuntu[/url] breezy main restricted
    apt tries the mirrors in the specified order. Thus it may be useful if
    your preferred mirror isn't complete or is offline



    Florian
    --
    Das toitsche Usenet ist die Wiederaufführung des Dreißigjährigen Krieges mit
    den Mitteln einer Talkshow. [Alexander Bartolich in dcpu]
    Florian Diesch Guest

  4. #3

    Default Re: sources sources everywhere

    On Thu, 16 Mar 2006 15:42:48 +0000, William Tasso wrote:
    > Greetings One & All
    >
    > Trying to get a thorough understanding of the runes in
    > /etc/apt/sources.list
    >
    > I've inherited a network containing a few ubuntu servers, all containing
    > different source configurations. Attempting to sanitise the muddle has
    > prompted a few questions ....
    >
    > o What is the significance of "main restricted " as opposed to "main"?
    That's referring to two separate items. "Main" refers to the main
    supported packages, and "restricted" refers to restricted
    copyright packages.
    >
    > o Does ubuntu have the debian concept of stable/testing/unstable or does
    > it just use the release names?
    Just the release names.
    >
    > o How do I find out if a ubuntu server has already installed a package
    > from universe or multiverse?
    If you use Synaptic and search for the package, it will indicate if the
    package is installed.
    >
    > Finally, is there any point in specifying more than one mirror e.g.
    >
    > deb [url]http://archive.ubuntu.com/ubuntu[/url] breezy main restricted deb
    > [url]http://gb.archive.ubuntu.com/ubuntu[/url] breezy main restricted
    You only need one mirror for each repository, but it doesn't hurt to have
    another handy if a mirror goes down. I would comment out the extra
    repository to save time when updating the repositories.




    Swild Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139