How to reinstall a package
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am getting this while installing libebml3:
Errors were encountered while processing:
libebml3:i386
Error in function:
dpkg: error processing libebml3:i386 (--configure):
Package is in a very bad inconsistent state - you should
reinstall it before attempting configuration.
How can I fix this?
package-management dpkg
add a comment |
I am getting this while installing libebml3:
Errors were encountered while processing:
libebml3:i386
Error in function:
dpkg: error processing libebml3:i386 (--configure):
Package is in a very bad inconsistent state - you should
reinstall it before attempting configuration.
How can I fix this?
package-management dpkg
add a comment |
I am getting this while installing libebml3:
Errors were encountered while processing:
libebml3:i386
Error in function:
dpkg: error processing libebml3:i386 (--configure):
Package is in a very bad inconsistent state - you should
reinstall it before attempting configuration.
How can I fix this?
package-management dpkg
I am getting this while installing libebml3:
Errors were encountered while processing:
libebml3:i386
Error in function:
dpkg: error processing libebml3:i386 (--configure):
Package is in a very bad inconsistent state - you should
reinstall it before attempting configuration.
How can I fix this?
package-management dpkg
package-management dpkg
edited Oct 28 '12 at 5:08
Emerson Hsieh
5,46053257
5,46053257
asked Oct 28 '12 at 5:05
asdfasdf
71113
71113
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
Since I happened to have the same problem with another package, wanting a reinstall, and all the methods in the answers either did nothing or first uninstall the whole system before reinstalling, I ended up with a solution.
sudo aptitude reinstall libebml3:i386
Of course, there must be another solution to force a package to reinstall using apt-get instead of aptitude.
sudo apt-get install --reinstall libebml3:i386
1
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Usingman apt-get
the solution appears :--reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
add a comment |
dpkg -r libebml3:i386
sudo apt-get update
sudo apt-get install -f
sudo apt-get upgrade
do those steps in terminal .
add a comment |
Type following commands in a terminal (Press Ctrl+ALT+t):
sudo dpkg -p libebml3:i386
sudo apt-get update
sudo apt-get install -f
add a comment |
You could remove the program by entering the following commands in a terminal:
sudo apt-get remove --purge libebml3
sudo apt-get install libebm13
sudo apt-get update
sudo apt-get upgrade
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%2f207475%2fhow-to-reinstall-a-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since I happened to have the same problem with another package, wanting a reinstall, and all the methods in the answers either did nothing or first uninstall the whole system before reinstalling, I ended up with a solution.
sudo aptitude reinstall libebml3:i386
Of course, there must be another solution to force a package to reinstall using apt-get instead of aptitude.
sudo apt-get install --reinstall libebml3:i386
1
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Usingman apt-get
the solution appears :--reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
add a comment |
Since I happened to have the same problem with another package, wanting a reinstall, and all the methods in the answers either did nothing or first uninstall the whole system before reinstalling, I ended up with a solution.
sudo aptitude reinstall libebml3:i386
Of course, there must be another solution to force a package to reinstall using apt-get instead of aptitude.
sudo apt-get install --reinstall libebml3:i386
1
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Usingman apt-get
the solution appears :--reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
add a comment |
Since I happened to have the same problem with another package, wanting a reinstall, and all the methods in the answers either did nothing or first uninstall the whole system before reinstalling, I ended up with a solution.
sudo aptitude reinstall libebml3:i386
Of course, there must be another solution to force a package to reinstall using apt-get instead of aptitude.
sudo apt-get install --reinstall libebml3:i386
Since I happened to have the same problem with another package, wanting a reinstall, and all the methods in the answers either did nothing or first uninstall the whole system before reinstalling, I ended up with a solution.
sudo aptitude reinstall libebml3:i386
Of course, there must be another solution to force a package to reinstall using apt-get instead of aptitude.
sudo apt-get install --reinstall libebml3:i386
edited Nov 23 '16 at 13:47
mohitR0_0
1167
1167
answered Feb 10 '14 at 20:11
JB.JB.
486616
486616
1
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Usingman apt-get
the solution appears :--reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
add a comment |
1
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Usingman apt-get
the solution appears :--reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
1
1
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Good, unless you need to reinstall a package that aptitude depends on (like libboost_iostreams).
– Tomasz Gandor
Mar 2 '16 at 9:57
Using
man apt-get
the solution appears : --reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
Using
man apt-get
the solution appears : --reinstall Re-Install packages that are already installed and at the newest version.
– JB.
Nov 23 '16 at 13:14
add a comment |
dpkg -r libebml3:i386
sudo apt-get update
sudo apt-get install -f
sudo apt-get upgrade
do those steps in terminal .
add a comment |
dpkg -r libebml3:i386
sudo apt-get update
sudo apt-get install -f
sudo apt-get upgrade
do those steps in terminal .
add a comment |
dpkg -r libebml3:i386
sudo apt-get update
sudo apt-get install -f
sudo apt-get upgrade
do those steps in terminal .
dpkg -r libebml3:i386
sudo apt-get update
sudo apt-get install -f
sudo apt-get upgrade
do those steps in terminal .
answered Oct 28 '12 at 5:10
rɑːdʒɑrɑːdʒɑ
59k85218302
59k85218302
add a comment |
add a comment |
Type following commands in a terminal (Press Ctrl+ALT+t):
sudo dpkg -p libebml3:i386
sudo apt-get update
sudo apt-get install -f
add a comment |
Type following commands in a terminal (Press Ctrl+ALT+t):
sudo dpkg -p libebml3:i386
sudo apt-get update
sudo apt-get install -f
add a comment |
Type following commands in a terminal (Press Ctrl+ALT+t):
sudo dpkg -p libebml3:i386
sudo apt-get update
sudo apt-get install -f
Type following commands in a terminal (Press Ctrl+ALT+t):
sudo dpkg -p libebml3:i386
sudo apt-get update
sudo apt-get install -f
edited Mar 20 '13 at 4:55
Kevin Bowen
14.8k155970
14.8k155970
answered Oct 28 '12 at 5:11
Ketan PatelKetan Patel
10.5k94465
10.5k94465
add a comment |
add a comment |
You could remove the program by entering the following commands in a terminal:
sudo apt-get remove --purge libebml3
sudo apt-get install libebm13
sudo apt-get update
sudo apt-get upgrade
add a comment |
You could remove the program by entering the following commands in a terminal:
sudo apt-get remove --purge libebml3
sudo apt-get install libebm13
sudo apt-get update
sudo apt-get upgrade
add a comment |
You could remove the program by entering the following commands in a terminal:
sudo apt-get remove --purge libebml3
sudo apt-get install libebm13
sudo apt-get update
sudo apt-get upgrade
You could remove the program by entering the following commands in a terminal:
sudo apt-get remove --purge libebml3
sudo apt-get install libebm13
sudo apt-get update
sudo apt-get upgrade
edited Mar 21 at 1:04
user994165
155110
155110
answered Oct 28 '12 at 5:13
daslinkarddaslinkard
473311
473311
add a comment |
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%2f207475%2fhow-to-reinstall-a-package%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