Skipping acquire of configured file 'contrib/binary-i386/Packages' as repository ⦠doesn't support architecture 'i386'

Clash Royale CLAN TAG#URR8PPP up vote
6
down vote
favorite
I installed Ubuntu 18.04 and then while installing Virtualbox i get the 'i386' error message after I did:
$ sudo apt-get update
Get:1 http://nl.archive.ubuntu.com/ubuntu bionic InRelease [242 kB]
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://ppa.launchpad.net/danielrichter2007/grub-customizer/ubuntu bionic InRelease
Hit:4 http://nl.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://nl.archive.ubuntu.com/ubuntu bionic-backports InRelease
Get:6 http://download.virtualbox.org/virtualbox/debian bionic InRelease [4429 B]
Get:7 http://download.virtualbox.org/virtualbox/debian bionic/contrib amd64 Packages [1426 B]
Fetched 248 kB in 1s (209 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'contrib/binary-i386/Packages' as repository 'http://download.virtualbox.org/virtualbox/debian bionic InRelease' doesn't support architecture 'i386'
I found several answers on Askubuntu for the 'i386' message but I don't know how to apply this to my situation
package-management virtualbox 18.04
add a comment |Â
up vote
6
down vote
favorite
I installed Ubuntu 18.04 and then while installing Virtualbox i get the 'i386' error message after I did:
$ sudo apt-get update
Get:1 http://nl.archive.ubuntu.com/ubuntu bionic InRelease [242 kB]
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://ppa.launchpad.net/danielrichter2007/grub-customizer/ubuntu bionic InRelease
Hit:4 http://nl.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://nl.archive.ubuntu.com/ubuntu bionic-backports InRelease
Get:6 http://download.virtualbox.org/virtualbox/debian bionic InRelease [4429 B]
Get:7 http://download.virtualbox.org/virtualbox/debian bionic/contrib amd64 Packages [1426 B]
Fetched 248 kB in 1s (209 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'contrib/binary-i386/Packages' as repository 'http://download.virtualbox.org/virtualbox/debian bionic InRelease' doesn't support architecture 'i386'
I found several answers on Askubuntu for the 'i386' message but I don't know how to apply this to my situation
package-management virtualbox 18.04
add a comment |Â
up vote
6
down vote
favorite
up vote
6
down vote
favorite
I installed Ubuntu 18.04 and then while installing Virtualbox i get the 'i386' error message after I did:
$ sudo apt-get update
Get:1 http://nl.archive.ubuntu.com/ubuntu bionic InRelease [242 kB]
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://ppa.launchpad.net/danielrichter2007/grub-customizer/ubuntu bionic InRelease
Hit:4 http://nl.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://nl.archive.ubuntu.com/ubuntu bionic-backports InRelease
Get:6 http://download.virtualbox.org/virtualbox/debian bionic InRelease [4429 B]
Get:7 http://download.virtualbox.org/virtualbox/debian bionic/contrib amd64 Packages [1426 B]
Fetched 248 kB in 1s (209 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'contrib/binary-i386/Packages' as repository 'http://download.virtualbox.org/virtualbox/debian bionic InRelease' doesn't support architecture 'i386'
I found several answers on Askubuntu for the 'i386' message but I don't know how to apply this to my situation
package-management virtualbox 18.04
I installed Ubuntu 18.04 and then while installing Virtualbox i get the 'i386' error message after I did:
$ sudo apt-get update
Get:1 http://nl.archive.ubuntu.com/ubuntu bionic InRelease [242 kB]
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://ppa.launchpad.net/danielrichter2007/grub-customizer/ubuntu bionic InRelease
Hit:4 http://nl.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://nl.archive.ubuntu.com/ubuntu bionic-backports InRelease
Get:6 http://download.virtualbox.org/virtualbox/debian bionic InRelease [4429 B]
Get:7 http://download.virtualbox.org/virtualbox/debian bionic/contrib amd64 Packages [1426 B]
Fetched 248 kB in 1s (209 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'contrib/binary-i386/Packages' as repository 'http://download.virtualbox.org/virtualbox/debian bionic InRelease' doesn't support architecture 'i386'
I found several answers on Askubuntu for the 'i386' message but I don't know how to apply this to my situation
package-management virtualbox 18.04
edited Apr 29 at 22:23
Thomas Wardâ¦
41.2k23112166
41.2k23112166
asked Apr 28 at 12:27
Newbie
3314
3314
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
19
down vote
Edit:
sudo nano /etc/apt/sources.list.d/virtualbox.list
and change:
deb http://download.virtualbox.org/virtualbox/debian bionic contrib
for
deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic contrib
Or open terminal an execute the following command:
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
add a comment |Â
up vote
1
down vote
You should try with a https deb source:
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
19
down vote
Edit:
sudo nano /etc/apt/sources.list.d/virtualbox.list
and change:
deb http://download.virtualbox.org/virtualbox/debian bionic contrib
for
deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic contrib
Or open terminal an execute the following command:
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
add a comment |Â
up vote
19
down vote
Edit:
sudo nano /etc/apt/sources.list.d/virtualbox.list
and change:
deb http://download.virtualbox.org/virtualbox/debian bionic contrib
for
deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic contrib
Or open terminal an execute the following command:
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
add a comment |Â
up vote
19
down vote
up vote
19
down vote
Edit:
sudo nano /etc/apt/sources.list.d/virtualbox.list
and change:
deb http://download.virtualbox.org/virtualbox/debian bionic contrib
for
deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic contrib
Or open terminal an execute the following command:
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
Edit:
sudo nano /etc/apt/sources.list.d/virtualbox.list
and change:
deb http://download.virtualbox.org/virtualbox/debian bionic contrib
for
deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic contrib
Or open terminal an execute the following command:
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
edited Jul 5 at 14:03
answered Apr 29 at 20:52
bdc
30919
30919
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
add a comment |Â
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
Hello Thomas, problem solved, I succesfully installed Virualbox now, Thanks
â Newbie
May 1 at 12:22
add a comment |Â
up vote
1
down vote
You should try with a https deb source:
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib
add a comment |Â
up vote
1
down vote
You should try with a https deb source:
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib
add a comment |Â
up vote
1
down vote
up vote
1
down vote
You should try with a https deb source:
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib
You should try with a https deb source:
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib
edited May 29 at 10:25
Avio
2,24251635
2,24251635
answered May 29 at 8:27
secretAgent
111
111
add a comment |Â
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%2f1029198%2fskipping-acquire-of-configured-file-contrib-binary-i386-packages-as-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