Results 1 to 3 of 3
Hello,
I started by reading http://www.linuxforums.org/forum/lin...are-linux.html and ran in to some issues.
I am trying to "compile aircrack-ng-1.0-rc1.tar" and "ipwraw-ng-2.3.4-04022008.tar" the driver for my usb adaptor I unpacked both files ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-03-2008 #1Just Joined!
- Join Date
- Aug 2008
- Posts
- 13
compiling help with Fedora
Hello,
I started by reading http://www.linuxforums.org/forum/lin...are-linux.html and ran in to some issues.
I am trying to "compile aircrack-ng-1.0-rc1.tar" and "ipwraw-ng-2.3.4-04022008.tar" the driver for my usb adaptor I unpacked both files in /usr/local/src/ and have 2 new folders the aircrack one ends in .tar.gz so i ran "tar -zxvf aircrack-ng.tar.gz" from the /src folder it printed a large ammount of information with no errors. after that I have a hard time understanding what i need to do next.
With the ipwraw-ng file after unpacked it the file I have ends in .tar.tar and the tutorial above did not say how to work with this file will "tar -zxvf (filename)" work with this? I am doing all this as the root user so I don't want to run a command without knowing.
- 08-04-2008 #2
for the .tar.tar file try first to determine the encryption type as follows
if this returns as type bzip2 then you run what followsCode:file file_name.tar.tar
if it returns as type gunzip you doCode:cp -p file_name.tar.tar file_name.tar.bz2 tar jxvf file_name.tar.bz2
if this does not work post the commands you ran and the results you got( do not forget the result of the file command)Code:cp -p file_name.tar.tar file_name.tar.gz tar zxvf file_name.tar.gz
Linux and me it's a love story
- 08-04-2008 #3Linux Guru
- Join Date
- Nov 2007
- Location
- Córdoba (Spain)
- Posts
- 1,513
Tar, originally, was just a tool to concatenate files (mainly so you could put them into a tape), bzip2 and gzip support was added later. So, the tar file doesn't foncingly have to be compressed with either. If that's the case, you can just untar it with xvf, without j or z.
Once untarred, there should be some kind of README or INSTALL file inside the new directory.


Reply With Quote

