After some research..... I look for this quick solution....
Add a random argument to your url..:
var forwardUrl = 'http://yourcachedpage.html?' + (new Date()).getTime();
Bye...
var forwardUrl = 'http://yourcachedpage.html?' + (new Date()).getTime();
sed -i 's/stringA/stringB/g' *
replace stringA with stringB in all files under current directory....
Recursively way.....
find ./ -type f -exec sed -i 's/stringA/stringB/g' '{}' \;
Bye...
apt-get install imagemagick
apt-get install build-essential devscripts dpkg-dev debhelper
wget http://ftp.debian.org/debian/pool/main/a/aircrack-ng/aircrack-ng_1.0~rc1-2.dsc
wget http://ftp.debian.org/debian/pool/main/a/aircrack-ng/aircrack-ng_1.0~rc1-2.diff.gz
wget http://ftp.debian.org/debian/pool/main/a/aircrack-ng/aircrack-ng_1.0~rc1.orig.tar.gz
for building dependencias we have to download the following packets for packets version dependencies
wget http://ftp.de.debian.org/debian/pool/main/s/sqlite3/libsqlite3-dev_3.7.3-1_i386.deb
dpkg -i libsqlite3-dev_3.7.3-1_i386.deb
wget http://ftp.de.debian.org/debian/pool/main/libn/libnl/libnl-dev_1.1-6_i386.deb
dpkg -i libnl-dev_1.1-6_i386.deb
wget http://ftp.de.debian.org/debian/pool/main/libp/libpcap/libpcap0.8-dev_1.1.1-2_i386.deb
dpkg -i libpcap0.8-dev_1.1.1-2_i386.deb
dpkg-source -x aircrack-ng_1.0~rc1-2.dsc
cd aircrack-ng-1.0~rc1
dpkg-buildpackage
cd ..
dpkg -i aircrack-ng_1.0~rc1-2_i386.deb
(In my case before the last dpkg -i commanmd I need to remove iw package..(with apt-get remove iw))
Bye and good luck......
killall mysqld
and/orkillall mysql
UPDATE mysql.user SET Password=PASSWORD('YourNewRootPassword') WHERE User='root'; FLUSH PRIVILEGES;
mysqld_safe --init-file=/home/usr_home/reset_root_pwd &
After stop the server and restart it.