Download:
http://www.mongodb.org/downloads
http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2.2.3.zip
unzip to c:\mongo
C:\mongo\bin\mongod.exe –dbpath C:\mongo\data //server
C:\mongo\bin\mongo.exe //klient
db.test.save( { a: 1 } )
db.test.find()
md C:\mongo\log
md C:\mongo\data\db
echo logpath=C:\mongo\log\mongo.log > C:\mongo\mongod.cfg
echo dbpath=C:\mongo\data >> C:\mongo\mongod.cfg
C:\mongo\bin\mongod.exe –config C:\mongo\mongod.cfg –install
net start MongoDB https://pypi.python.org/pypi/RPi.GPIO
wget https://pypi.python.org/packages/source/R/RPi.GPIO/RPi.GPIO-0.5.1a.tar.gz cd python setup.py
http://code.google.com/p/webiopi/wiki/PASSWORD
webiopi-passwd /etc/init.d/webiopi start
http://pi:8000/
wget http://webiopi.googlecode.com/files/WebIOPi-0.5.3.tar.gz tar xvzf WebIOPi-0.5.3.tar.gz cd WebIOPi-0.5.3 sudo ./setup.sh
python -m webiopi 83 localhost:8000/webiopi
http://www.mongodb.org/downloads
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-red-hat-centos-or-fedora-linux/
If you are running a 32-bit system, which isn’t recommended for production deployments, place the following configuration in /etc/yum.repos.d/10gen.repo file:
[10gen]name=10gen Repositorybaseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686gpgcheck=0enabled=1
yum install mongo-10gen mongo-10gen-server
mkdir reaver cd reaver wget http://reaver-wps.google.code.com/files/reaver-1.4.tar.gz tar -xf reaver-1.4.tar.gz
https://code.google.com/p/reaver-wps/
http://www.reaversystems.com/ - wersja pro z urządzeniem
www.aircrack-ng.org/doku.php?id=downloads
http://ubuntu2.cica.es/ubuntu/ubuntu/pool/universe/a/aircrack-ng/
Zobacz całość
Mongo DB – From the scratch.
http://net.tutsplus.com/tutorials/databases/getting-started-with-mongodb/?search_index=2
find . -name '*.*' -type f -print0 | xargs -0 grep -l "phrase"
Można też dodać skróconą formę tego polecenia w .bashrc
vim ~/.bashrc
findtext() {
find . -name '*.*' -type f -print0 | xargs -0 grep -l "$*"
}