How do I enable the “multiverse” repository?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
52
down vote

favorite
13












I keep seeing places refer to the "multiverse" repository as a place I can get software, how can I enable this repository? Please specify how to do this graphically and via command line.










share|improve this question

























    up vote
    52
    down vote

    favorite
    13












    I keep seeing places refer to the "multiverse" repository as a place I can get software, how can I enable this repository? Please specify how to do this graphically and via command line.










    share|improve this question























      up vote
      52
      down vote

      favorite
      13









      up vote
      52
      down vote

      favorite
      13






      13





      I keep seeing places refer to the "multiverse" repository as a place I can get software, how can I enable this repository? Please specify how to do this graphically and via command line.










      share|improve this question













      I keep seeing places refer to the "multiverse" repository as a place I can get software, how can I enable this repository? Please specify how to do this graphically and via command line.







      package-management software-center software-sources






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 19 '11 at 22:50









      Jorge Castro

      34.9k105421614




      34.9k105421614




















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          41
          down vote



          accepted










          The Multiverse repository contains packages (software) that is "not free" , referring to licensing restrictions.




          The Multiverse repository contains software which has been classified as non-free. This software may not be permitted in some jurisdictions. When installing each package from this repository, you should verify that the laws of your country permit you to use it. Also, this software may not include security updates.




          For additional information on the philosophy of the ubuntu repositories, see Overview of the default Ubuntu software repositories



          You can enable the repository from the command line or graphically.



          Graphically



          Open Software center, navigate to the "Ubuntu software" tab at the top, select (check off) multiverse.



          Software Center



          Use the "Reload" button to update your package list.



          Reload



          Command line



          Open /etc/apt/sources.list with any editor.



          # command line editor (nano)
          sudo -e /etc/apt/sources.list

          # graphical editor
          gksu gedit /etc/apt/sources.list


          Uncomment (remove the # from the front of) the multiverse lines or add them in if needed, so the lines look like this:



          ## 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/ oneiric multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
          deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse


          Uncomment the deb-src lines if you need to download the source code (most users will not need the source code, so if in doubt, leave them disabled).



          Save your edit (if you are using nano, Ctrl+X , then type Y to save your changes) then, to update your package list, run



          sudo apt-get update


          • For additional information on managing your repositories, see Ubuntu Wiki - Repositories





          share|improve this answer






















          • If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
            – Meetai.com
            Jan 15 '15 at 13:47










          • Can someone update the screenshots, please? Thanks.
            – kiri
            Aug 2 '15 at 10:47










          • @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
            – Panther
            Aug 2 '15 at 13:42










          • @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
            – kiri
            Aug 3 '15 at 2:06






          • 1




            You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
            – jfs
            Jan 22 '16 at 9:51

















          up vote
          42
          down vote













          Another option available for newer releases of Ubuntu:



          sudo apt-add-repository multiverse && sudo apt-get update


          From the man page:



          Examples:
          apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
          apt-add-repository 'http://myserver/path/to/repo myrepo'
          apt-add-repository 'https://packages.medibuntu.org free non-free'
          apt-add-repository http://extras.ubuntu.com/ubuntu
          apt-add-repository ppa:user/repository
          apt-add-repository multiverse





          share|improve this answer


















          • 1




            ... which requires some package that is not installed by default.
            – 0xC0000022L
            Oct 19 '16 at 14:16

















          up vote
          16
          down vote













          From the command line without using a text editor or GUI:



          sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list


          http://alestic.com/2012/05/aws-command-line-packages






          share|improve this answer


















          • 6




            Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
            – Brent Faust
            Aug 10 '14 at 19:52







          • 6




            At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
            – Guss
            Jun 7 '15 at 9:22










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f89096%2fhow-do-i-enable-the-multiverse-repository%23new-answer', 'question_page');

          );

          Post as a guest






























          3 Answers
          3






          active

          oldest

          votes








          3 Answers
          3






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          41
          down vote



          accepted










          The Multiverse repository contains packages (software) that is "not free" , referring to licensing restrictions.




          The Multiverse repository contains software which has been classified as non-free. This software may not be permitted in some jurisdictions. When installing each package from this repository, you should verify that the laws of your country permit you to use it. Also, this software may not include security updates.




          For additional information on the philosophy of the ubuntu repositories, see Overview of the default Ubuntu software repositories



          You can enable the repository from the command line or graphically.



          Graphically



          Open Software center, navigate to the "Ubuntu software" tab at the top, select (check off) multiverse.



          Software Center



          Use the "Reload" button to update your package list.



          Reload



          Command line



          Open /etc/apt/sources.list with any editor.



          # command line editor (nano)
          sudo -e /etc/apt/sources.list

          # graphical editor
          gksu gedit /etc/apt/sources.list


          Uncomment (remove the # from the front of) the multiverse lines or add them in if needed, so the lines look like this:



          ## 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/ oneiric multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
          deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse


          Uncomment the deb-src lines if you need to download the source code (most users will not need the source code, so if in doubt, leave them disabled).



          Save your edit (if you are using nano, Ctrl+X , then type Y to save your changes) then, to update your package list, run



          sudo apt-get update


          • For additional information on managing your repositories, see Ubuntu Wiki - Repositories





          share|improve this answer






















          • If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
            – Meetai.com
            Jan 15 '15 at 13:47










          • Can someone update the screenshots, please? Thanks.
            – kiri
            Aug 2 '15 at 10:47










          • @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
            – Panther
            Aug 2 '15 at 13:42










          • @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
            – kiri
            Aug 3 '15 at 2:06






          • 1




            You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
            – jfs
            Jan 22 '16 at 9:51














          up vote
          41
          down vote



          accepted










          The Multiverse repository contains packages (software) that is "not free" , referring to licensing restrictions.




          The Multiverse repository contains software which has been classified as non-free. This software may not be permitted in some jurisdictions. When installing each package from this repository, you should verify that the laws of your country permit you to use it. Also, this software may not include security updates.




          For additional information on the philosophy of the ubuntu repositories, see Overview of the default Ubuntu software repositories



          You can enable the repository from the command line or graphically.



          Graphically



          Open Software center, navigate to the "Ubuntu software" tab at the top, select (check off) multiverse.



          Software Center



          Use the "Reload" button to update your package list.



          Reload



          Command line



          Open /etc/apt/sources.list with any editor.



          # command line editor (nano)
          sudo -e /etc/apt/sources.list

          # graphical editor
          gksu gedit /etc/apt/sources.list


          Uncomment (remove the # from the front of) the multiverse lines or add them in if needed, so the lines look like this:



          ## 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/ oneiric multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
          deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse


          Uncomment the deb-src lines if you need to download the source code (most users will not need the source code, so if in doubt, leave them disabled).



          Save your edit (if you are using nano, Ctrl+X , then type Y to save your changes) then, to update your package list, run



          sudo apt-get update


          • For additional information on managing your repositories, see Ubuntu Wiki - Repositories





          share|improve this answer






















          • If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
            – Meetai.com
            Jan 15 '15 at 13:47










          • Can someone update the screenshots, please? Thanks.
            – kiri
            Aug 2 '15 at 10:47










          • @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
            – Panther
            Aug 2 '15 at 13:42










          • @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
            – kiri
            Aug 3 '15 at 2:06






          • 1




            You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
            – jfs
            Jan 22 '16 at 9:51












          up vote
          41
          down vote



          accepted







          up vote
          41
          down vote



          accepted






          The Multiverse repository contains packages (software) that is "not free" , referring to licensing restrictions.




          The Multiverse repository contains software which has been classified as non-free. This software may not be permitted in some jurisdictions. When installing each package from this repository, you should verify that the laws of your country permit you to use it. Also, this software may not include security updates.




          For additional information on the philosophy of the ubuntu repositories, see Overview of the default Ubuntu software repositories



          You can enable the repository from the command line or graphically.



          Graphically



          Open Software center, navigate to the "Ubuntu software" tab at the top, select (check off) multiverse.



          Software Center



          Use the "Reload" button to update your package list.



          Reload



          Command line



          Open /etc/apt/sources.list with any editor.



          # command line editor (nano)
          sudo -e /etc/apt/sources.list

          # graphical editor
          gksu gedit /etc/apt/sources.list


          Uncomment (remove the # from the front of) the multiverse lines or add them in if needed, so the lines look like this:



          ## 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/ oneiric multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
          deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse


          Uncomment the deb-src lines if you need to download the source code (most users will not need the source code, so if in doubt, leave them disabled).



          Save your edit (if you are using nano, Ctrl+X , then type Y to save your changes) then, to update your package list, run



          sudo apt-get update


          • For additional information on managing your repositories, see Ubuntu Wiki - Repositories





          share|improve this answer














          The Multiverse repository contains packages (software) that is "not free" , referring to licensing restrictions.




          The Multiverse repository contains software which has been classified as non-free. This software may not be permitted in some jurisdictions. When installing each package from this repository, you should verify that the laws of your country permit you to use it. Also, this software may not include security updates.




          For additional information on the philosophy of the ubuntu repositories, see Overview of the default Ubuntu software repositories



          You can enable the repository from the command line or graphically.



          Graphically



          Open Software center, navigate to the "Ubuntu software" tab at the top, select (check off) multiverse.



          Software Center



          Use the "Reload" button to update your package list.



          Reload



          Command line



          Open /etc/apt/sources.list with any editor.



          # command line editor (nano)
          sudo -e /etc/apt/sources.list

          # graphical editor
          gksu gedit /etc/apt/sources.list


          Uncomment (remove the # from the front of) the multiverse lines or add them in if needed, so the lines look like this:



          ## 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/ oneiric multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
          deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
          #deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse


          Uncomment the deb-src lines if you need to download the source code (most users will not need the source code, so if in doubt, leave them disabled).



          Save your edit (if you are using nano, Ctrl+X , then type Y to save your changes) then, to update your package list, run



          sudo apt-get update


          • For additional information on managing your repositories, see Ubuntu Wiki - Repositories






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 13 '17 at 21:30









          Volker Siegel

          8,66043349




          8,66043349










          answered Dec 19 '11 at 23:00









          Panther

          75.3k10150257




          75.3k10150257











          • If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
            – Meetai.com
            Jan 15 '15 at 13:47










          • Can someone update the screenshots, please? Thanks.
            – kiri
            Aug 2 '15 at 10:47










          • @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
            – Panther
            Aug 2 '15 at 13:42










          • @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
            – kiri
            Aug 3 '15 at 2:06






          • 1




            You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
            – jfs
            Jan 22 '16 at 9:51
















          • If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
            – Meetai.com
            Jan 15 '15 at 13:47










          • Can someone update the screenshots, please? Thanks.
            – kiri
            Aug 2 '15 at 10:47










          • @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
            – Panther
            Aug 2 '15 at 13:42










          • @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
            – kiri
            Aug 3 '15 at 2:06






          • 1




            You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
            – jfs
            Jan 22 '16 at 9:51















          If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
          – Meetai.com
          Jan 15 '15 at 13:47




          If the lines aren't present on that file, copy the existing ones from universe and replace the word 'universe' by 'multiverse'
          – Meetai.com
          Jan 15 '15 at 13:47












          Can someone update the screenshots, please? Thanks.
          – kiri
          Aug 2 '15 at 10:47




          Can someone update the screenshots, please? Thanks.
          – kiri
          Aug 2 '15 at 10:47












          @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
          – Panther
          Aug 2 '15 at 13:42




          @minerz029 - there are already screenshots posted. See also help.ubuntu.com/community/Repositories/Ubuntu
          – Panther
          Aug 2 '15 at 13:42












          @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
          – kiri
          Aug 3 '15 at 2:06




          @bodhi.zazen - update <-. The screenshots are reflective of a outdated version of Ubuntu. I'm asking to have them updated with screenshots from a newer version.
          – kiri
          Aug 3 '15 at 2:06




          1




          1




          You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
          – jfs
          Jan 22 '16 at 9:51




          You could use sed, to uncomment lines that end with multiverse: sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
          – jfs
          Jan 22 '16 at 9:51












          up vote
          42
          down vote













          Another option available for newer releases of Ubuntu:



          sudo apt-add-repository multiverse && sudo apt-get update


          From the man page:



          Examples:
          apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
          apt-add-repository 'http://myserver/path/to/repo myrepo'
          apt-add-repository 'https://packages.medibuntu.org free non-free'
          apt-add-repository http://extras.ubuntu.com/ubuntu
          apt-add-repository ppa:user/repository
          apt-add-repository multiverse





          share|improve this answer


















          • 1




            ... which requires some package that is not installed by default.
            – 0xC0000022L
            Oct 19 '16 at 14:16














          up vote
          42
          down vote













          Another option available for newer releases of Ubuntu:



          sudo apt-add-repository multiverse && sudo apt-get update


          From the man page:



          Examples:
          apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
          apt-add-repository 'http://myserver/path/to/repo myrepo'
          apt-add-repository 'https://packages.medibuntu.org free non-free'
          apt-add-repository http://extras.ubuntu.com/ubuntu
          apt-add-repository ppa:user/repository
          apt-add-repository multiverse





          share|improve this answer


















          • 1




            ... which requires some package that is not installed by default.
            – 0xC0000022L
            Oct 19 '16 at 14:16












          up vote
          42
          down vote










          up vote
          42
          down vote









          Another option available for newer releases of Ubuntu:



          sudo apt-add-repository multiverse && sudo apt-get update


          From the man page:



          Examples:
          apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
          apt-add-repository 'http://myserver/path/to/repo myrepo'
          apt-add-repository 'https://packages.medibuntu.org free non-free'
          apt-add-repository http://extras.ubuntu.com/ubuntu
          apt-add-repository ppa:user/repository
          apt-add-repository multiverse





          share|improve this answer














          Another option available for newer releases of Ubuntu:



          sudo apt-add-repository multiverse && sudo apt-get update


          From the man page:



          Examples:
          apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
          apt-add-repository 'http://myserver/path/to/repo myrepo'
          apt-add-repository 'https://packages.medibuntu.org free non-free'
          apt-add-repository http://extras.ubuntu.com/ubuntu
          apt-add-repository ppa:user/repository
          apt-add-repository multiverse






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Oct 22 '15 at 17:20

























          answered Nov 26 '14 at 16:33









          Erik Osterman

          52943




          52943







          • 1




            ... which requires some package that is not installed by default.
            – 0xC0000022L
            Oct 19 '16 at 14:16












          • 1




            ... which requires some package that is not installed by default.
            – 0xC0000022L
            Oct 19 '16 at 14:16







          1




          1




          ... which requires some package that is not installed by default.
          – 0xC0000022L
          Oct 19 '16 at 14:16




          ... which requires some package that is not installed by default.
          – 0xC0000022L
          Oct 19 '16 at 14:16










          up vote
          16
          down vote













          From the command line without using a text editor or GUI:



          sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list


          http://alestic.com/2012/05/aws-command-line-packages






          share|improve this answer


















          • 6




            Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
            – Brent Faust
            Aug 10 '14 at 19:52







          • 6




            At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
            – Guss
            Jun 7 '15 at 9:22














          up vote
          16
          down vote













          From the command line without using a text editor or GUI:



          sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list


          http://alestic.com/2012/05/aws-command-line-packages






          share|improve this answer


















          • 6




            Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
            – Brent Faust
            Aug 10 '14 at 19:52







          • 6




            At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
            – Guss
            Jun 7 '15 at 9:22












          up vote
          16
          down vote










          up vote
          16
          down vote









          From the command line without using a text editor or GUI:



          sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list


          http://alestic.com/2012/05/aws-command-line-packages






          share|improve this answer














          From the command line without using a text editor or GUI:



          sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list


          http://alestic.com/2012/05/aws-command-line-packages







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Aug 8 '12 at 21:42

























          answered Aug 8 '12 at 20:03









          Jonathan Oliver

          51156




          51156







          • 6




            Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
            – Brent Faust
            Aug 10 '14 at 19:52







          • 6




            At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
            – Guss
            Jun 7 '15 at 9:22












          • 6




            Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
            – Brent Faust
            Aug 10 '14 at 19:52







          • 6




            At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
            – Guss
            Jun 7 '15 at 9:22







          6




          6




          Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
          – Brent Faust
          Aug 10 '14 at 19:52





          Excellent. And, it's idempotent. Note, however, that it's aggressive -- all deb multiverse repos will be added, even those that are for building from src. To leave those out, add a space after "deb", so we have sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update
          – Brent Faust
          Aug 10 '14 at 19:52





          6




          6




          At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
          – Guss
          Jun 7 '15 at 9:22




          At least in recent versions of Ubuntu, the multiverse source lines are not present in the sources.list file, only the multiverse security repo will be enabled by this command.
          – Guss
          Jun 7 '15 at 9:22

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f89096%2fhow-do-i-enable-the-multiverse-repository%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

          Trouble downloading packages list due to a “Hash sum mismatch” error

          How do I move numbers in filenames, in a batch renaming operation?