Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
How can i locate my project in terminal which i created in xcode?
How can i add or install Submodules of Sharekit to my project?
I am trying to locate my project created in Xcode.
When i type in locate abc.xcodeproj
it gives this warning
WARNING: The locate database (/var/db/locate.database) does not exist.
To create the database, run the following command:
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
Please be aware that the database can take some time to generate; once
the database has been created, this message will no longer appear.
Thanks for help.
locate is somewhat obsolete. Use Spotlight instead:
$ mdfind abc.xcodeproj
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I have downloaded Net-SSH2-0.43 to be able to use Net::SSH2 Perl module. But I don't know what I need to do after that, just include paths or something else. Please help.
you could use perlbrew to install Perl in your home or in any directories wo. root rights: http://perlbrew.pl/
wget -O - http://install.perlbrew.pl | bash
perlbrew install perl-5.16.0
perlbrew switch perl-5.16.0
you could call your perl from shell (scripts) like this: http://perlbrew.pl/Perlbrew-In-Shell-Scripts.html
If your servers are identical enough then you could rsync/rdist this directory to every host and you are done.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I've installed MongoDB version i686-2.2.3 from source, in a Ubuntu 12.10 box. Now I want to remove it.
How can I do it properly?
Best wishes,
If you installed from source you would not have compiled it but instead just extracted the tar it came in and ran it.
The very first thing you need to do is figure out what additional stuff you put on, i.e.: a init.d script.
Once you remove all the additional threads you have created you can remove the directory that houses the mongo binary, normally a folder called mongo on most systems and then you need to delete your data directory, normally /data/db/ under the source version.
Of course, this assumes you installed from source and not a package, if you installed from a package you can do:
apt-get remove --purge mongodb
Edit
Alternatively if you are using autoremove:
apt-get autoremove --purge mongodb
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I need to build & install GTK library so i need source code for it. So i searched & come to this link which contains its GIT hub path.
http://www.gtk.org/download/
Is this procedure correct ?
git clone git://git.gnome.org/gtk+
cd gtk+
./configure
make
make install
1> As per link it states it requires some libraries. Do i need to perform the same step for ---> glib, pango, gdk-pixbuf and atk.
2> Does cairo comes with pango or have to be downloaded, build & install seprately ?
3> Does i need xlib ?
Please suggest what all dependency packages are required by GTK ? which i have to compile & install seprately.
This post should give you a full idea of what you need to build GTK+
http://developer.gnome.org/gtk3/stable/gtk-building.html
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Problem is pretty self-explanatory - can't get MongoDB to start, and nothing is logging anything anywhere so I can figure out what's going on:
[10:10:23][root#my-server:~]$ start mongodb
mongodb stop/waiting
[10:10:28][root#my-server:~]$ ls /var/log/mongodb
[10:10:34][root#my-server:~]$ ls /var/lib/mongodb
[10:10:39][root#my-server:~]$
As you can see, mongodb immediately goes to stop/waiting, and doesn't log anything to /var/log/mongodb. There's nothing in /var/lib/mongodb either. There's nothing useful in /var/log/upstart either. Where can I look for information on what the heck upstart is doing, and why it can't seem to start MongoDB?
Answering my own question with another question: Mongo does not run when installed via mongodb-10gen package on Ubuntu 12.04. In this case, the mongodb-10gen package doesn't seem to be installing the right executables for upstart to use, and upstart helpfully doesn't log anything when the executable it expects to be present isn't there. So I've asked a followup question about what the deal with the 10gen package is.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm using Cygwin 2.769. I used setup.exe to upgrade Perl to version 5.14.1-2, which works fine. But now whenever I open setup.exe to upgrade/install some other package, it by default wants to downgrade Perl back to 5.10.1-5. If I don't remember to manually cycle that box over to my current version each time, Perl gets downgraded without my noticing.
Is this expected behavior, or have I hosed something up? It seems like using the "Curr" setting should not by default downgrade things.
I've had this problem, and it's made package managers almost unbearable. When disparate packages want to rely on different versions of a package that can only install in one version at a time, bad things happen.
Don't use the system perl for anything. Install a perl that other packages don't care about.