How do I remove all i386 architecture packages from my Debian installation?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I added foreign architecture i386
to my Debian amd64
installtion. How do I remove it? When I try this command: dpkg --remove-architecture i386
, I am told to first remove all i386
packages.
debian 32-vs-64-bit
add a comment |
I added foreign architecture i386
to my Debian amd64
installtion. How do I remove it? When I try this command: dpkg --remove-architecture i386
, I am told to first remove all i386
packages.
debian 32-vs-64-bit
add a comment |
I added foreign architecture i386
to my Debian amd64
installtion. How do I remove it? When I try this command: dpkg --remove-architecture i386
, I am told to first remove all i386
packages.
debian 32-vs-64-bit
I added foreign architecture i386
to my Debian amd64
installtion. How do I remove it? When I try this command: dpkg --remove-architecture i386
, I am told to first remove all i386
packages.
debian 32-vs-64-bit
debian 32-vs-64-bit
asked Feb 9 '14 at 12:01
kevinarpekevinarpe
1,32331726
1,32331726
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
I am answering my own question after gathering important information from other blog posts.
- Show what foreign architectures are installed:
dpkg --print-foreign-architectures
- Might show:
i386
- Might show:
- Remove all
i386
packages:apt-get purge ".*:i386"
- Note: The
purge
keyword (instead ofremove
) removes all configuration files associated with the packages you're uninstalling. (Thanks PCGuyIV!)
- Note: The
- Now you can remove the
i386
architecture:dpkg --remove-architecture i386
2
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
add a comment |
I would use "purge" instead of "remove".
~# apt-get purge ".*:i386"
~# dpkg --remove-architecture i386
The "purge" keyword removes all configuration files associated with the packages you're uninstalling.
2
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
add a comment |
Try
dpkg -r $(dpkg -l | grep armhf | awk '{ print $2 }')
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f714391%2fhow-do-i-remove-all-i386-architecture-packages-from-my-debian-installation%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
I am answering my own question after gathering important information from other blog posts.
- Show what foreign architectures are installed:
dpkg --print-foreign-architectures
- Might show:
i386
- Might show:
- Remove all
i386
packages:apt-get purge ".*:i386"
- Note: The
purge
keyword (instead ofremove
) removes all configuration files associated with the packages you're uninstalling. (Thanks PCGuyIV!)
- Note: The
- Now you can remove the
i386
architecture:dpkg --remove-architecture i386
2
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
add a comment |
I am answering my own question after gathering important information from other blog posts.
- Show what foreign architectures are installed:
dpkg --print-foreign-architectures
- Might show:
i386
- Might show:
- Remove all
i386
packages:apt-get purge ".*:i386"
- Note: The
purge
keyword (instead ofremove
) removes all configuration files associated with the packages you're uninstalling. (Thanks PCGuyIV!)
- Note: The
- Now you can remove the
i386
architecture:dpkg --remove-architecture i386
2
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
add a comment |
I am answering my own question after gathering important information from other blog posts.
- Show what foreign architectures are installed:
dpkg --print-foreign-architectures
- Might show:
i386
- Might show:
- Remove all
i386
packages:apt-get purge ".*:i386"
- Note: The
purge
keyword (instead ofremove
) removes all configuration files associated with the packages you're uninstalling. (Thanks PCGuyIV!)
- Note: The
- Now you can remove the
i386
architecture:dpkg --remove-architecture i386
I am answering my own question after gathering important information from other blog posts.
- Show what foreign architectures are installed:
dpkg --print-foreign-architectures
- Might show:
i386
- Might show:
- Remove all
i386
packages:apt-get purge ".*:i386"
- Note: The
purge
keyword (instead ofremove
) removes all configuration files associated with the packages you're uninstalling. (Thanks PCGuyIV!)
- Note: The
- Now you can remove the
i386
architecture:dpkg --remove-architecture i386
edited Sep 24 '18 at 2:43
answered Feb 9 '14 at 12:03
kevinarpekevinarpe
1,32331726
1,32331726
2
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
add a comment |
2
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
2
2
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
Cheers. This was perfect.
– Glenn
Oct 1 '14 at 22:44
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
@kevinarpe You might accept this answer as the best answer.
– 71GA
Sep 12 '18 at 7:39
add a comment |
I would use "purge" instead of "remove".
~# apt-get purge ".*:i386"
~# dpkg --remove-architecture i386
The "purge" keyword removes all configuration files associated with the packages you're uninstalling.
2
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
add a comment |
I would use "purge" instead of "remove".
~# apt-get purge ".*:i386"
~# dpkg --remove-architecture i386
The "purge" keyword removes all configuration files associated with the packages you're uninstalling.
2
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
add a comment |
I would use "purge" instead of "remove".
~# apt-get purge ".*:i386"
~# dpkg --remove-architecture i386
The "purge" keyword removes all configuration files associated with the packages you're uninstalling.
I would use "purge" instead of "remove".
~# apt-get purge ".*:i386"
~# dpkg --remove-architecture i386
The "purge" keyword removes all configuration files associated with the packages you're uninstalling.
edited Jul 13 '15 at 0:25
nc4pk
7,292115268
7,292115268
answered Jul 12 '15 at 22:05
PCGuyIVPCGuyIV
17113
17113
2
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
add a comment |
2
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
2
2
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
Can you expand your answer to explain the difference and ramifications?
– fixer1234
Jul 12 '15 at 23:07
add a comment |
Try
dpkg -r $(dpkg -l | grep armhf | awk '{ print $2 }')
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
add a comment |
Try
dpkg -r $(dpkg -l | grep armhf | awk '{ print $2 }')
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
add a comment |
Try
dpkg -r $(dpkg -l | grep armhf | awk '{ print $2 }')
Try
dpkg -r $(dpkg -l | grep armhf | awk '{ print $2 }')
edited Feb 9 at 7:24
Mureinik
2,91271825
2,91271825
answered Feb 9 at 1:17
AndrewAndrew
1
1
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
add a comment |
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
That's obviously for the armhf architecture - use i386 in your case.
– Andrew
Feb 9 at 1:18
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
So what is the actual solution?
– fixer1234
Feb 9 at 4:03
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f714391%2fhow-do-i-remove-all-i386-architecture-packages-from-my-debian-installation%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