|
|||||||
| Wireless Specific topics related to the attack & defense of wireless systems |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
|
I HAVE NOW SOLVED THIS AND THE THREE SOLUTIONS ARE IN POSTS 5 AND 14 This was posted in response to the news that as of r540 Aircrack-ng 1 Devel needs libsqlite >= 3.3.17 to compile. [FRESH NEWZ] Aircrack-ng 1.0 Devel Quote:
I have been trying to get this working for two days without any luck. Research on the SQLite website has not helped at all. Research on the Aircrack-ng website has only shown up that there is at least one other person getting the same results as me. So this is what I have tried so far Code:
curl -O http://www.sqlite.org/sqlite-3.4.0.tar.gz tar xvzf sqlite-3.4.0.tar.gz cd sqlite-3.4.0 ./configure --prefix=/usr/local make && make install Code:
curl -O http://www.sqlite.org/sqlite-3.4.0.tar.gz tar xvzf sqlite-3.4.0.tar.gz cd sqlite-3.4.0 ./configure make && make install Code:
curl -O http://www.sqlite.org/sqlite-3.4.0.tar.gz tar xvzf sqlite-3.4.0.tar.gz cd sqlite-3.4.0 ./configure --prefix=/usr/local make make install Code:
curl -O http://www.sqlite.org/sqlite-3.4.0.tar.gz tar xvzf sqlite-3.4.0.tar.gz cd sqlite-3.4.0 ./configure make make install Code:
cvs -d :pserver:anonymous@www.sqlite.org:/sqlite login anonymous cvs -d :pserver:anonymous@www.sqlite.org:/sqlite checkout sqlite ./configure --prefix=/usr/local make && make install Code:
cvs -d :pserver:anonymous@www.sqlite.org:/sqlite login anonymous cvs -d :pserver:anonymous@www.sqlite.org:/sqlite checkout sqlite ./configure make && make install Code:
cvs -d :pserver:anonymous@www.sqlite.org:/sqlite login anonymous cvs -d :pserver:anonymous@www.sqlite.org:/sqlite checkout sqlite ./configure --prefix=/usr/local make make install Code:
cvs -d :pserver:anonymous@www.sqlite.org:/sqlite login
anonymous
cvs -d :pserver:anonymous@www.sqlite.org:/sqlite checkout sqlite
./configure
make
make install
Code:
make clean And EVERY time I am getting the same problem at the Code:
make install Code:
make: Nothing to be done for `all'. tclsh ./tclinstaller.tcl 3.4 make: tclsh: Command not found make: *** [tcl_install] Error 127 I have also used checkinstall too so as I can create a module for everyone who like me needs to be able to use aircrack-ng dev 1 r540 or above. Ok so HELP !!! Please ![]() I am not totally happy about where I have put this thread, but as it applies to development releases of programs covering specialist topics I finally decided after much debate, to put it here. If an Admin or Mod think it should be elsewhere then please move it and accept my apologies.
__________________
Any questions you have will get a good answer as long as you have followed the forum rules and show you have tried to help yourself. Your questions are clear and contain as much relevant info as possible, especially error messages, commands you have tried and the output from those commands.
remember: garbage in = garbage out BackTrack needs your donations, no matter how small. Please contribute HERE Last edited by balding_parrot; 08-17-2007 at 04:53 AM. |
|
||||
|
Thank you for confirming its not just me and for your help.
I was beginning to think it was something I was doing wrong ![]() I THINK I have got it fixed ![]() just got to test and if it works I will write up a small TUT and with a bit of luck post a module for everyone. Here goes nothing Fingers Crossed
__________________
Any questions you have will get a good answer as long as you have followed the forum rules and show you have tried to help yourself. Your questions are clear and contain as much relevant info as possible, especially error messages, commands you have tried and the output from those commands.
remember: garbage in = garbage out BackTrack needs your donations, no matter how small. Please contribute HERE |
|
||||
|
IT WORKS !!
2 1/2 days of banging my head and pulling out even more feathers and IT WORKS !! ![]() just created a sqlite-3.4.0.lzm module rebooted and updated to aircrack-ng 1.0 r547 ![]() Just got to do a little testing to make sure, sort out writing a TUT and upload the file somewhere for everyone. So just a little more patience... please
__________________
Any questions you have will get a good answer as long as you have followed the forum rules and show you have tried to help yourself. Your questions are clear and contain as much relevant info as possible, especially error messages, commands you have tried and the output from those commands.
remember: garbage in = garbage out BackTrack needs your donations, no matter how small. Please contribute HERE |
|
||||
|
Ok so here it is........
I have no intention of writing a long explanation to what turns out to be a simple problem. The problem is that the makefile for sqlite references a needed file, but it gets the reference wrong. So the procedure to fix this is thus: Code:
curl -O http://www.sqlite.org/sqlite-3.4.0.tar.gz tar xvzf sqlite-3.4.0.tar.gz cd sqlite-3.4.0 ./configure --prefix=/usr/local make At the bottom of the original makefile you will find this: Code:
$(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(libdir)/pkgconfig;
tcl_install: libtclsqlite3.la
tclsh $(TOP)/tclinstaller.tcl $(VERSION)
clean:
rm -f *.lo *.la *.o sqlite3$(TEXE) libsqlite3.la
Code:
$(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(libdir)/pkgconfig;
tcl_install: libtclsqlite3.la
tclsh8.4 $(TOP)/tclinstaller.tcl $(VERSION)
clean:
rm -f *.lo *.la *.o sqlite3$(TEXE) libsqlite3.la
Code:
make install Here is a partial screenshot of an update I did a couple of hours ago. ![]() And there you are, thats it, the sum total of 2 1/2 days of banging my head and pulling out most of the feathers I have left. So now to the ones who want to be lazy and would like a module of this... sqlite-3.4.0.lzm There you go now you can update to aircrack-ng 1.0 r540 or greater. That is until they decide to add some new requirement. Hope this helps someone. Good Luck Have phun.
__________________
Any questions you have will get a good answer as long as you have followed the forum rules and show you have tried to help yourself. Your questions are clear and contain as much relevant info as possible, especially error messages, commands you have tried and the output from those commands.
remember: garbage in = garbage out BackTrack needs your donations, no matter how small. Please contribute HERE |
|
|||
|
your update application looks really slick
![]() ..... lol....yes thx again i may automated the install process and patched for the makefile into the update application itself....... well done..........
__________________
|
|
||||
|
Quote:
![]() Hope you didn't mind, I thought it was the best way to show it worked. Thank you ....... It was quite a slog to work it out, but a fantastic feeling once it finally worked, that made it worth all the time and effort.
__________________
Any questions you have will get a good answer as long as you have followed the forum rules and show you have tried to help yourself. Your questions are clear and contain as much relevant info as possible, especially error messages, commands you have tried and the output from those commands.
remember: garbage in = garbage out BackTrack needs your donations, no matter how small. Please contribute HERE |
|
|||
|
now im revision 550 nice job again..........
i will add an option to update libsql with your lzm in AIR if you give me rights to do it......
__________________
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|