I've installed Popcorn Time using the following command:
cd
wget
chmod +x popcorn-build
./popcorn-buildthat I found here.
How can I uninstall it?
11 Answer
Since this is my script (rewritten a bit by Webupd8's Andrew), this should work :
uninstalling Popcorn Time :
sudo rm -r /opt/Popcorn-Time sudo rm /usr/share/pixmaps/popcorntime.png sudo rm /usr/share/applications/popcorn-time.desktop sudo rm /usr/bin/popcorn-timeremove the NodeJS
sudo add-apt-repository -r ppa:chris-lea/node.js sudo apt-get remove nodejs sudo rm /usr/bin/noderemove Ruby :
if 12.04 :
sudo apt-get remove rubygemif 13.04 or higher :
sudo apt-get remove ruby-compass
remove Git, NPM :
sudo apt-get remove git npmremove 'libudev' symlink :
if 32 bits :
sudo rm /lib/i386-linux-gnu/libudev.so.0if 64 bits :
sudo rm /lib/x86_64-linux-gnu/libudev.so.0
Once it's done, you can clean up :
sudo apt-get autoremove -y
sudo apt-get autoclean
sudo apt-get update 3