How to uninstall MonoTouch framework? - xamarin.ios

I would like to be able to uninstall monotouch framework from my Mac OS X, but I don't see a way to do so...
Any help would be appreciated...

Easy to go just 2 steps:
sudo rm -rf /Developer/MonoTouch
sudo pkgutil --forget com.xamarin.monotouch.pkg
Source

Delete /Developer/MonoTouch

Additionally to the other answers if you may want to delete other xamarin packages installed, enter:
pkgutil --packages
and look for all com.xamarin packages and remove them via:
sudo pkgutil --forget com.xamarin.[name of the package]

Related

How do I install libleveldb-dev on windows for Python?

How to install libleveldb-dev (leveldb development libraries) on windows? I need this to be downloaded so I can install plyvel. Thank you in advance I hope someone is familiar with this process.
The way to install this on Linux is :
sudo apt-get install libleveldb-dev
But I need to install this on windows. Is there a similar easy way to do this in the windows command prompt? Related Link: https://plyvel.readthedocs.io/en/latest/installation.html#build-and-install-plyvel
Just answering for the next ones, there is a version of plyver just for windows that doesnt require all this suffering. just try: "pip install plyvel-win32" if you have the visual libraries should work.

Reset Realm Object Server on Linux

Can I ask that are there any scripts in Linux that similar to reset-server-realms.command on Mac that can delete all realms on server. Actually I need to reset the server and clean it before use the application officially. I try to uninstall regarding to the guides on Realm website but somehow the old data still comes up.
Thanks
Uninstalling the package doesn't remove any data. This is done on purpose, so that the upgrade process of RPMs and debs works properly.
We don't provide a script, but the easiest way to wipe everything is simply to run:
sudo rm -rf /var/lib/realm
# CentOS
sudo yum remove realm-object-server-de
sudo yum install realm-object-server-de
# Ubuntu
sudo apt-get install --reinstall realm-object-server-de
Please note that this will preserve your configuration, still. The configuration is stored in /etc/realm.

How to Remove sshpass from linux

Ok this might sound ridiculous but How do you remove sshpass package ???
The way I installed it was this:
$ tar -zxvf sshpass-1.05.tar.gz
$ cd ./sshpass-1.05
$ ./configure
$ make
$ make install
So this installed sshpass on the machine. However, When I want to remove it, it doesn't get fully removed.
Also, Please note that I cannot use the following remove command since the servers don't support them. sudo-apt remove
I've also tried rpm but doesn't work....any help?
make uninstall will sometimes work. I don't know whether it will work for sshpass.
In future, you can use xstow to provide make uninstall functionality for any package. But this won't help you to uninstall packages you've already installed.

How to uninstall libraries (installed through compile) in Ubuntu?

I tried installing libtiff 4.0.3 through using the commands:
./configure
make
make install
It installed fine. However, I recently found out that I got the versions wrong and so I need to install a new one with a different version. I'd like to how know to remove libtiff from my Ubuntu setup. Would it be the same as sudo apt-get remove [x]? And how do I know what to put on x if I didn't install it through sudo apt-get install [x] command? Would appreciate some help. Thanks. :)
You can't use apt-get to remove something that wasn't installed as a package. Try running make uninstall. – Blender

Where can I get xmkmf for RedHat Linux?

I'm trying to build GLUT, but I fail on:
xmkmf: Command not found
Where can I find this?
It's part of the imake package, which you can install with yum via yum install imake or just download, e.g. from http://rpmfind.net/linux/rpm2html/search.php?query=imake.
if imake is not installed, install it from pkgs.org
http://pkgs.org/search/?keyword=imake

Resources