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













13















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?










share|improve this question





























    13















    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?










    share|improve this question



























      13












      13








      13


      3






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 28 '12 at 5:08









      Emerson Hsieh

      5,45153257




      5,45153257










      asked Oct 28 '12 at 5:05









      asdfasdf

      66113




      66113






















          4 Answers
          4






          active

          oldest

          votes


















          13














          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





          share|improve this answer





















          • 1





            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





















          3














          dpkg -r libebml3:i386
          sudo apt-get update
          sudo apt-get install -f
          sudo apt-get upgrade


          do those steps in terminal .






          share|improve this answer































            2














            Type following commands in a terminal (Press Ctrl+ALT+t):



            sudo dpkg -p libebml3:i386
            sudo apt-get update
            sudo apt-get install -f





            share|improve this answer

































              2














              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





              share|improve this answer

























                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
                });


                }
                });














                draft saved

                draft discarded


















                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









                13














                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





                share|improve this answer





















                • 1





                  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


















                13














                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





                share|improve this answer





















                • 1





                  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
















                13












                13








                13







                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





                share|improve this answer















                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






                share|improve this answer














                share|improve this answer



                share|improve this answer








                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











                • 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
















                • 1





                  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










                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















                3














                dpkg -r libebml3:i386
                sudo apt-get update
                sudo apt-get install -f
                sudo apt-get upgrade


                do those steps in terminal .






                share|improve this answer




























                  3














                  dpkg -r libebml3:i386
                  sudo apt-get update
                  sudo apt-get install -f
                  sudo apt-get upgrade


                  do those steps in terminal .






                  share|improve this answer


























                    3












                    3








                    3







                    dpkg -r libebml3:i386
                    sudo apt-get update
                    sudo apt-get install -f
                    sudo apt-get upgrade


                    do those steps in terminal .






                    share|improve this answer













                    dpkg -r libebml3:i386
                    sudo apt-get update
                    sudo apt-get install -f
                    sudo apt-get upgrade


                    do those steps in terminal .







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Oct 28 '12 at 5:10









                    rɑːdʒɑrɑːdʒɑ

                    58.6k85218302




                    58.6k85218302























                        2














                        Type following commands in a terminal (Press Ctrl+ALT+t):



                        sudo dpkg -p libebml3:i386
                        sudo apt-get update
                        sudo apt-get install -f





                        share|improve this answer






























                          2














                          Type following commands in a terminal (Press Ctrl+ALT+t):



                          sudo dpkg -p libebml3:i386
                          sudo apt-get update
                          sudo apt-get install -f





                          share|improve this answer




























                            2












                            2








                            2







                            Type following commands in a terminal (Press Ctrl+ALT+t):



                            sudo dpkg -p libebml3:i386
                            sudo apt-get update
                            sudo apt-get install -f





                            share|improve this answer















                            Type following commands in a terminal (Press Ctrl+ALT+t):



                            sudo dpkg -p libebml3:i386
                            sudo apt-get update
                            sudo apt-get install -f






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            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























                                2














                                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





                                share|improve this answer






























                                  2














                                  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





                                  share|improve this answer




























                                    2












                                    2








                                    2







                                    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





                                    share|improve this answer















                                    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






                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited 11 mins ago









                                    user994165

                                    153110




                                    153110










                                    answered Oct 28 '12 at 5:13









                                    daslinkarddaslinkard

                                    473311




                                    473311






























                                        draft saved

                                        draft discarded




















































                                        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.




                                        draft saved


                                        draft discarded














                                        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





















































                                        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







                                        Popular posts from this blog

                                        Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

                                        Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

                                        Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...