How to remove QEMU completely

149

Using the Terminal

Uninstall just qemu with

sudo apt-get remove qemu

Uninstall qemu and it's dependencies with this

sudo apt-get remove --auto-remove qemu

If you want to purge all the config and data off the system you can also use

sudo apt-get purge --auto-remove qemu

Source::Installion.co.uk

Share:
149

Related videos on Youtube

Bod
Author by

Bod

Updated on September 18, 2022

Comments

  • Bod
    Bod almost 2 years

    I am trying to create an add-in for the outlook windows application. The following code should copy the email body to the clipboard, but it doesn't do that. I need to press the run button two times in order to get the content copied, but I need to copy the content from the first time! What is wrong with my code?

    var messageBody = "";
    export async function run() {
        Office.context.mailbox.item.body.getAsync(
            Office.CoercionType.Text,
            function (asyncResult) {
                if (asyncResult.status !== Office.AsyncResultStatus.Succeeded) {
                    messageBody = asyncResult.error;
                } else {
                    messageBody = asyncResult.value;
                }
            });
    
        copyToClipboard(messageBody)
    }
    
    function copyToClipboard(text) {
        var copyhelper = document.createElement("input");
        copyhelper.className = 'copyhelper'
        document.body.appendChild(copyhelper);
        copyhelper.value = text;
        copyhelper.select();
        document.execCommand("copy");
        document.body.removeChild(copyhelper);
    }
    
  • DUKE
    DUKE almost 9 years
    This just worked for me. Where did you find this documentation?
  • chj1axr0
    chj1axr0 almost 9 years
    @DUKE I added the source in the answer. I did a simple google search to find it
  • Rodrigo Graça
    Rodrigo Graça over 4 years
    I still see a bunch of qemu packages installed on my machine (using synaptic) like: qemu-kvm, qemu-system-*, etc