Advertisement
techwitheddie

oldmacdonalduninstall

Jul 20th, 2022
1,693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.71 KB | None | 0 0
  1. # Uninstall Zigbee2MQTT
  2.  
  3. # Stop the application
  4. sudo launchctl stop /Library/LaunchDaemons/zigbe2mqtt.application.plist
  5.  
  6. # Delete plist
  7. cd /Library/LaunchDaemons/
  8. sudo rm -rf zigbe2mqtt.application.plist
  9.  
  10. # Delete Zigbee2MQTT Folder in Applications
  11.  
  12. # Uninstall MQTT
  13. brew uninstall mosquitto
  14.  
  15. # For uninstalling Homebrew in MacOS Catalina, macOS Big Sur, and MacOS Mojave:
  16. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
  17.  
  18. # For uninstalling Homebrew from MacOS High Sierra, Sierra, El Capitan, and earlier:
  19. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
  20.  
  21. # Remove Homebrew Folder
  22. sudo rm -rf /opt/homebrew/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement