How do I enable the âmultiverseâ repository?

Clash Royale CLAN TAG#URR8PPP up vote
52
down vote
favorite
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
add a comment |Â
up vote
52
down vote
favorite
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
add a comment |Â
up vote
52
down vote
favorite
up vote
52
down vote
favorite
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
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
package-management software-center software-sources
asked Dec 19 '11 at 22:50
Jorge Castro
34.9k105421614
34.9k105421614
add a comment |Â
add a comment |Â
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.

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

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
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 usesed, to uncomment lines that end withmultiverse:sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
â jfs
Jan 22 '16 at 9:51
 |Â
show 1 more comment
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
1
... which requires some package that is not installed by default.
â 0xC0000022L
Oct 19 '16 at 14:16
add a comment |Â
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
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 havesudo 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
add a comment |Â
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.

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

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
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 usesed, to uncomment lines that end withmultiverse:sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
â jfs
Jan 22 '16 at 9:51
 |Â
show 1 more comment
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.

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

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
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 usesed, to uncomment lines that end withmultiverse:sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
â jfs
Jan 22 '16 at 9:51
 |Â
show 1 more comment
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.

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

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
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.

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

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
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 usesed, to uncomment lines that end withmultiverse:sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
â jfs
Jan 22 '16 at 9:51
 |Â
show 1 more comment
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 usesed, to uncomment lines that end withmultiverse: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
 |Â
show 1 more comment
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
1
... which requires some package that is not installed by default.
â 0xC0000022L
Oct 19 '16 at 14:16
add a comment |Â
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
1
... which requires some package that is not installed by default.
â 0xC0000022L
Oct 19 '16 at 14:16
add a comment |Â
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
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
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
add a comment |Â
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
add a comment |Â
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
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 havesudo 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
add a comment |Â
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
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 havesudo 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
add a comment |Â
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
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
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 havesudo 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
add a comment |Â
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 havesudo 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
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password