Repository failure with google chrome
Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
is what i get when performing
sudo apt-get update.
I found a solution on this website (Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'xxx' doesn't support architecture 'i386')
and performed
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
but got back
No command 'deb' found, did you mean:
Command 'dex' from package 'dex' (universe)
Command 'debc' from package 'devscripts' (main)
Command 'deb3' from package 'quilt' (main)
Command 'dab' from package 'bsdgames' (universe)
Command 'derb' from package 'icu-devtools' (main)
Command 'debi' from package 'devscripts' (main)
Command 'xdeb' from package 'xdeb' (universe)
Command 'dwb' from package 'dwb' (universe)
deb: command not found
I am unable to comment on the old post because i don't have 50 reputation so i apologize for a repeat question.
apt google-chrome repository google
add a comment |
Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
is what i get when performing
sudo apt-get update.
I found a solution on this website (Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'xxx' doesn't support architecture 'i386')
and performed
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
but got back
No command 'deb' found, did you mean:
Command 'dex' from package 'dex' (universe)
Command 'debc' from package 'devscripts' (main)
Command 'deb3' from package 'quilt' (main)
Command 'dab' from package 'bsdgames' (universe)
Command 'derb' from package 'icu-devtools' (main)
Command 'debi' from package 'devscripts' (main)
Command 'xdeb' from package 'xdeb' (universe)
Command 'dwb' from package 'dwb' (universe)
deb: command not found
I am unable to comment on the old post because i don't have 50 reputation so i apologize for a repeat question.
apt google-chrome repository google
1
Are you using a 32bit or 64bit OS?
– xangua
Mar 4 '16 at 2:50
2
Possible duplicate of No more updates for Google Chrome | apt-get update error
– Reinier Post
Jun 15 '16 at 14:43
add a comment |
Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
is what i get when performing
sudo apt-get update.
I found a solution on this website (Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'xxx' doesn't support architecture 'i386')
and performed
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
but got back
No command 'deb' found, did you mean:
Command 'dex' from package 'dex' (universe)
Command 'debc' from package 'devscripts' (main)
Command 'deb3' from package 'quilt' (main)
Command 'dab' from package 'bsdgames' (universe)
Command 'derb' from package 'icu-devtools' (main)
Command 'debi' from package 'devscripts' (main)
Command 'xdeb' from package 'xdeb' (universe)
Command 'dwb' from package 'dwb' (universe)
deb: command not found
I am unable to comment on the old post because i don't have 50 reputation so i apologize for a repeat question.
apt google-chrome repository google
Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
is what i get when performing
sudo apt-get update.
I found a solution on this website (Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'xxx' doesn't support architecture 'i386')
and performed
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
but got back
No command 'deb' found, did you mean:
Command 'dex' from package 'dex' (universe)
Command 'debc' from package 'devscripts' (main)
Command 'deb3' from package 'quilt' (main)
Command 'dab' from package 'bsdgames' (universe)
Command 'derb' from package 'icu-devtools' (main)
Command 'debi' from package 'devscripts' (main)
Command 'xdeb' from package 'xdeb' (universe)
Command 'dwb' from package 'dwb' (universe)
deb: command not found
I am unable to comment on the old post because i don't have 50 reputation so i apologize for a repeat question.
apt google-chrome repository google
apt google-chrome repository google
edited Apr 13 '17 at 12:23
Community♦
1
1
asked Mar 4 '16 at 2:17
Matthew LonisMatthew Lonis
66113
66113
1
Are you using a 32bit or 64bit OS?
– xangua
Mar 4 '16 at 2:50
2
Possible duplicate of No more updates for Google Chrome | apt-get update error
– Reinier Post
Jun 15 '16 at 14:43
add a comment |
1
Are you using a 32bit or 64bit OS?
– xangua
Mar 4 '16 at 2:50
2
Possible duplicate of No more updates for Google Chrome | apt-get update error
– Reinier Post
Jun 15 '16 at 14:43
1
1
Are you using a 32bit or 64bit OS?
– xangua
Mar 4 '16 at 2:50
Are you using a 32bit or 64bit OS?
– xangua
Mar 4 '16 at 2:50
2
2
Possible duplicate of No more updates for Google Chrome | apt-get update error
– Reinier Post
Jun 15 '16 at 14:43
Possible duplicate of No more updates for Google Chrome | apt-get update error
– Reinier Post
Jun 15 '16 at 14:43
add a comment |
3 Answers
3
active
oldest
votes
It's not a terminal command; it's about the contents of this file:
/etc/apt/sources.list.d/google-chrome.list
If you have a 64 bit installation, you should edit the file and change the last line to:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
If you have a 32 bit installation, you'd better just delete the file. There won't be any further updates of Google Chrome for 32 bit.
1
If you have 32-bit installation it is better to remove the repository bysudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).
– jarno
Mar 17 '16 at 22:06
add a comment |
This command will do!
sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"
Or check on the files /etc/apt/sources.list.d/google-chrome.list
and /etc/apt/sources.list
, and change the line below:
deb http://dl.google.com/linux/chrome/deb/ stable
main
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
Finally..
sudo apt-get update
add a comment |
There is a simpler solution than that one you found.
Go to "Software & Updates" => "Other Programs" and unmark dl.google.com/linux/chrome/deb/stable
.
This will fix your problem
This will disable the update of Google Chrome too, but is the better way while I other solution doesn't appear.
2
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
add a comment |
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',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f741850%2frepository-failure-with-google-chrome%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
It's not a terminal command; it's about the contents of this file:
/etc/apt/sources.list.d/google-chrome.list
If you have a 64 bit installation, you should edit the file and change the last line to:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
If you have a 32 bit installation, you'd better just delete the file. There won't be any further updates of Google Chrome for 32 bit.
1
If you have 32-bit installation it is better to remove the repository bysudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).
– jarno
Mar 17 '16 at 22:06
add a comment |
It's not a terminal command; it's about the contents of this file:
/etc/apt/sources.list.d/google-chrome.list
If you have a 64 bit installation, you should edit the file and change the last line to:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
If you have a 32 bit installation, you'd better just delete the file. There won't be any further updates of Google Chrome for 32 bit.
1
If you have 32-bit installation it is better to remove the repository bysudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).
– jarno
Mar 17 '16 at 22:06
add a comment |
It's not a terminal command; it's about the contents of this file:
/etc/apt/sources.list.d/google-chrome.list
If you have a 64 bit installation, you should edit the file and change the last line to:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
If you have a 32 bit installation, you'd better just delete the file. There won't be any further updates of Google Chrome for 32 bit.
It's not a terminal command; it's about the contents of this file:
/etc/apt/sources.list.d/google-chrome.list
If you have a 64 bit installation, you should edit the file and change the last line to:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
If you have a 32 bit installation, you'd better just delete the file. There won't be any further updates of Google Chrome for 32 bit.
answered Mar 4 '16 at 4:32
Gunnar HjalmarssonGunnar Hjalmarsson
19.2k23461
19.2k23461
1
If you have 32-bit installation it is better to remove the repository bysudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).
– jarno
Mar 17 '16 at 22:06
add a comment |
1
If you have 32-bit installation it is better to remove the repository bysudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).
– jarno
Mar 17 '16 at 22:06
1
1
If you have 32-bit installation it is better to remove the repository by
sudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).– jarno
Mar 17 '16 at 22:06
If you have 32-bit installation it is better to remove the repository by
sudo ppa-purge -s dl.google.com ppa:linux/chrome
. That way packages installed from the repository will be removed (or downgraded).– jarno
Mar 17 '16 at 22:06
add a comment |
This command will do!
sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"
Or check on the files /etc/apt/sources.list.d/google-chrome.list
and /etc/apt/sources.list
, and change the line below:
deb http://dl.google.com/linux/chrome/deb/ stable
main
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
Finally..
sudo apt-get update
add a comment |
This command will do!
sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"
Or check on the files /etc/apt/sources.list.d/google-chrome.list
and /etc/apt/sources.list
, and change the line below:
deb http://dl.google.com/linux/chrome/deb/ stable
main
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
Finally..
sudo apt-get update
add a comment |
This command will do!
sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"
Or check on the files /etc/apt/sources.list.d/google-chrome.list
and /etc/apt/sources.list
, and change the line below:
deb http://dl.google.com/linux/chrome/deb/ stable
main
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
Finally..
sudo apt-get update
This command will do!
sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"
Or check on the files /etc/apt/sources.list.d/google-chrome.list
and /etc/apt/sources.list
, and change the line below:
deb http://dl.google.com/linux/chrome/deb/ stable
main
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
Finally..
sudo apt-get update
edited Mar 4 '16 at 8:25
answered Mar 4 '16 at 7:52
Gayan WeerakuttiGayan Weerakutti
1,8211328
1,8211328
add a comment |
add a comment |
There is a simpler solution than that one you found.
Go to "Software & Updates" => "Other Programs" and unmark dl.google.com/linux/chrome/deb/stable
.
This will fix your problem
This will disable the update of Google Chrome too, but is the better way while I other solution doesn't appear.
2
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
add a comment |
There is a simpler solution than that one you found.
Go to "Software & Updates" => "Other Programs" and unmark dl.google.com/linux/chrome/deb/stable
.
This will fix your problem
This will disable the update of Google Chrome too, but is the better way while I other solution doesn't appear.
2
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
add a comment |
There is a simpler solution than that one you found.
Go to "Software & Updates" => "Other Programs" and unmark dl.google.com/linux/chrome/deb/stable
.
This will fix your problem
This will disable the update of Google Chrome too, but is the better way while I other solution doesn't appear.
There is a simpler solution than that one you found.
Go to "Software & Updates" => "Other Programs" and unmark dl.google.com/linux/chrome/deb/stable
.
This will fix your problem
This will disable the update of Google Chrome too, but is the better way while I other solution doesn't appear.
edited Mar 4 '16 at 9:14
muru
1
1
answered Mar 4 '16 at 2:32
mcangussumcangussu
93
93
2
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
add a comment |
2
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
2
2
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
I find it hard to understand how that can be "the better way" if you have a 64 bit installation, for which future Google Chrome updates will be issued.
– Gunnar Hjalmarsson
Mar 4 '16 at 4:35
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f741850%2frepository-failure-with-google-chrome%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Are you using a 32bit or 64bit OS?
– xangua
Mar 4 '16 at 2:50
2
Possible duplicate of No more updates for Google Chrome | apt-get update error
– Reinier Post
Jun 15 '16 at 14:43