How to reinstall a packageRestoring the script commandBroken package ubuntuone-control-panel-qtPackage...
What should be the ideal length of sentences in a blog post for ease of reading?
Why didn’t Eve recognize the little cockroach as a living organism?
Is there anyway, I can have two passwords for my wi-fi
Is there a distance limit for minecart tracks?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
Review your own paper in Mathematics
Should I warn a new PhD Student?
What is this high flying aircraft over Pennsylvania?
Alignment of six matrices
Language involving irrational number is not a CFL
How do I prevent inappropriate ads from appearing in my game?
Sound waves in different octaves
Why does the Persian emissary display a string of crowned skulls?
Can you identify this lizard-like creature I observed in the UK?
Sigmoid with a slope but no asymptotes?
Deciphering cause of death?
Quoting Keynes in a lecture
Giving feedback to someone without sounding prejudiced
What the heck is gets(stdin) on site coderbyte?
How do you justify more code being written by following clean code practices?
When and why was runway 07/25 at Kai Tak removed?
Why the "ls" command is showing the permissions of files in a FAT32 partition?
Would this string work as string?
The Digit Triangles
How to reinstall a package
Restoring the script commandBroken package ubuntuone-control-panel-qtPackage Manager Error: setting up language-selector-commonInstalltion failed a .deb PackageNew software can't be installed, because there is a problem with the software currently installed. Do you want to repair this problem now?Package Operation Failed - Help neededHow to Remove varicad2013-en (A Virus or PIA)mysql-server-5.5 ErrorHow can I reinstall oracle-java-installer?dpkg: error processing package sendmail-basedpkg error processing package
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,45153257
5,45153257
asked Oct 28 '12 at 5:05
asdfasdf
66113
66113
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.
476616
476616
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ʒɑ
58.6k85218302
58.6k85218302
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.7k155970
14.7k155970
answered Oct 28 '12 at 5:11
Ketan PatelKetan Patel
10.4k94465
10.4k94465
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 11 mins ago
user994165
153110
153110
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