Sunday, February 20, 2011

easy way to crack wep (ubuntu)

The following is an easy way to install software crack WiFi WEP key.

go to command line:


install aircrack-ng

sudo apt-get install aircrack-ng


install macchanger

sudo apt-get install macchanger

install python

sudo apt-get install python-tk

download wifite

sudo wget -O wifite.py http://wifite.googlecode.com/svn/trunk/wifite.py


change mode to executeable

sudo chmod +x wifite.py
 
 
run:
 
sudo python wifite.py
 
  

Friday, January 21, 2011

need software to put a password for your pdf file?

for use in the operating system (Ubuntu), type: sudo apt-get install pdfchain

Thursday, December 9, 2010

change date and time (ubuntu)

Let’s say you want to set your computer’s new time to December 9, 2010, 14:30:50,

then you would use:

sudo date 120914302010.50

Monday, November 8, 2010

batch file rename in ubuntu

batch file rename in ubuntu:


example got 100 file like this:
backupfile1disember2009.mp4
backupfile2disember2009.mp4
backupfile3disember2009.mp4
need to change to:
01disember2009.mp4
02disember2009.mp4
03disember2009.mp4
solution:
for i in * ; do j=`echo $i | sed 's#backupfile#0#g' - ` ; mv "$i" "$j" ; done
thats all.
source:
for i in * ; do j=`echo $i | sed 's#searchstring#replacestring#g' - ` ; mv "$i" "$j" ; done
from:
http://www.thingy-ma-jig.co.uk/blog/19-04-2008/how-batch-rename-files

Wednesday, October 13, 2010

Windows 7activation error code : 0x80072F8F

The problem occurs because you have not made such calendar year and setting the time and the exact geographical location. change settings and try again.

Tuesday, August 31, 2010

convert video ? free

salam,

long time no update .. busy bro .. people looking for free software to edit video .. the name of the software is avidemux. Easy and free .. any version of linux and windows .. here is the screenshot ...

good luck

Wednesday, August 18, 2010

error Ubuntu update.

salam,

error update ubuntu:

W: GPG error: http://archive.canonical.com karmic Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key


solved:


gpg --keyserver keyserver.
ubuntu.com --recv 437D05B5; gpg --export --armor 437D05B5 | sudo apt-key add -; gpg --keyserver keyserver.ubuntu.com --recv 437D05B5; gpg --export --armor 437D05B5 | sudo apt-key add -; sudo apt-get upda