Come posso cancellare VMWare dal mio MacBook Air?

3

Ho installato VMware sul mio MacBook Air (con OS X Lion) e ora voglio eliminarlo. Ho trascinato VMware nel cestino e ho provato a svuotarlo, ma un popup indica che The operation can’t be completed because the item “VMware Fusion” is in use.

Ho provato a premere comando + opzione + esc ma non ho potuto vedere VMware aperto. Sono confuso su come VMware è in uso.

    
posta David Faux 01.03.2012 - 01:49
fonte

3 risposte

4

Prova questo:

  1. Apri Activity Monitor da /Applications/Utilities e modifica l'elenco a discesa Mostra da I miei processi a Tutti i processi.

  2. Ordina per nome e trova tutti i processi che hanno il nome VMWare.

  3. Premere il pulsante Quit Process e fare clic su Uscita forzata.

Per rimuovere l'app, consiglio AppZapper .

    
risposta data 01.03.2012 - 01:57
fonte
5

Ecco come rimuovere VMWare Fusion come indicato qui da VMWare: Disinstallazione manuale di VMware Fusion

Fusion 4.x

In Fusion 4.x, there is no uninstaller. Most Fusion files are contained within the application bundle (that is, the Fusion application in /Applications). To uninstall Fusion 4.x, drag the application bundle from the Applications folder to the Trash.

Also, ensure to delete these additional files and folders if they are present.

Note: Depending on the environment, some of these files may not be present. Some files may exist only if Fusion 3 was originally installed on the machine that was later upgraded to Fusion 4.

/Library/Application Support/VMware Fusion /Users/Library/Preferences/VMware Fusion /Library/Preferences/VMware\ Fusion ~/Library/Caches/com.vmware.fusion ~/Library/Application\ Support/VMware\ Fusion ~/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist ~/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist.lockfile ~/Library/Preferences/com.vmware.fusion.plist ~/Library/Preferences/com.vmware.fusion.plist.lockfile ~/Library/Preferences/com.vmware.fusionDaemon.plist ~/Library/Preferences/com.vmware.fusionDaemon.plist.lockfile

Note: In Lion, the Library folder inside your user directory is hidden by default. To access your Library folder:

Click the Finder icon. While holding the Option key, click the Go menu. This reveals your Library folder.

    
risposta data 01.03.2012 - 02:20
fonte
-1

Puoi eseguire lo script della shell qui sotto. La versione bash dello script qui sotto servirà anche allo stesso scopo.

#!/usr/bin/env bash
# Usage: sudo sh ./uninstall_vmware.sh
remove() {
  entry="$1"

  echo -ne "Removing \e[1;34m$entry\e[0m... "
  sudo rm -rf "$entry" &> /tmp/uninstall-vmware.log

  if [[ ! -e "$entry" ]]; then
    echo -e "\e[1;32mOK\e[0m"
  else
    echo -e "\e[1;31mFAILED\e[0m"
  fi
}

remove "/Applications/VMware Fusion.app"
remove "/Library/Application Support/VMware"
remove "/Library/Application Support/VMware Fusion"
remove "/Library/Preferences/VMware Fusion"
remove "/private/var/root/Library/Logs/VMware"
remove "/private/var/db/vmware"
remove "/Library/Logs/VMware/"
remove "/private/var/run/vmware"
remove "/private/var/run/VMware Fusion Services.lock"
remove "/private/var/run/VMware Fusion Services.sock"
remove "/private/var/root/Library/Preferences/VMware Fusion"
remove "$HOME/Library/Application Support/VMware Fusion"
remove "$HOME/Library/Caches/com.vmware.fusion"
remove "$HOME/Library/Preferences/VMware Fusion"
remove "$HOME/Library/Logs/VMware"
remove "$HOME/Library/Preferences/VMware Fusion"
remove "$HOME/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist"
remove "$HOME/Library/Preferences/com.vmware.fusion.plist"
remove "$HOME/Library/Preferences/com.vmware.fusionStartMenu.plist"
remove "$HOME/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist"
remove "$HOME/Library/Preferences/com.vmware.fusion.LSSharedFileList.plist.lockfile"
remove "$HOME/Library/Preferences/com.vmware.fusion.plist"
remove "$HOME/Library/Preferences/com.vmware.fusion.plist.lockfile"
remove "$HOME/Library/Preferences/com.vmware.fusionDaemon.plist"
remove "$HOME/Library/Preferences/com.vmware.fusionDaemon.plist.lockfile"
remove "$HOME/Library/Preferences/com.vmware.fusionStartMenu.plist"
remove "$HOME/Library/Preferences/com.vmware.fusionStartMenu.plist.lockfile"
    
risposta data 25.06.2016 - 12:33
fonte

Leggi altre domande sui tag