How can I remove YUMI (multiboot usb creator) software?

6,774

Solution 1

You typed it incorrectly, open the terminal and type this command instead:

sudo apt-get purge yumi

Enter your password (as you have to do so each and every time you use sudo) and follow the prompts. This will completely remove and uninstall the application and all of the files associated with it as well (purge).

Done.

Solution 2

Did you install the yumi .deb file from the webpage? It should show up in synaptic (or even apt), search for it and remove it. I'm not exactly sure what name it will be under, I think it'd be just "yumi". If not in Synaptic try apt-cache search yumi?

Purge is not an option of apt-get, just using remove or purge alone should work... but probably not with the ".deb" part of the filename, use the name you get from searching above, or just remove in Synaptic.

Or you might be able to check your log files & see what it's called (if it was installed recently), in /var/log/dpkg.log or maybe /var/log/apt/...

PS. yumi probably can't access your devices to create a bootable USB without running as root, so requires your sudo password, probably not unusual. Browse through the source code if you'd like to be sure (link was on the page you provided).

But you're already running linux, so just follow these directions yourself:

Share:
6,774

Related videos on Youtube

Filbuntu
Author by

Filbuntu

The space would not be enough :-) ...

Updated on September 18, 2022

Comments

  • Filbuntu
    Filbuntu almost 2 years

    I downloaded the .deb version of YUMI (multiboot usb creator) from the pendrive homepage and I wanted to make a bootable usb for Windows 98 to run on Virtualbox, but anyway the software asked for my sudo password inside the software itself and I felt it was a fishing scam, so I wanted to remove it.

    But when I go to the Ubuntu Software Center it says "reinstall", there is no remove option. And I wasn't able to remove it from the terminal using apt-get --purge remove yumi_0.0.1-1_all.deb

    I am running Xubuntu 14.04.

    Any idea?

    • mchid
      mchid over 9 years
      You need to use sudo and enter your password to install or uninstall applications or make changes to the system.
    • Sonickyle27
      Sonickyle27 over 9 years
      fyi, YUMI is perfectly safe. It needs sudo permissions to create the bootloader.
  • mchid
    mchid over 9 years
    another one that only lists installed apps is dpkg -l | grep yumi ; nice cliff notes