Help installing Reaver?
I am now trying to install reaver but when I entered:
wget http://reaver-wps.googlecode.com/files/reaver-1.4.tar.gz
I got a 404 error so I tried downloading it manually and putting it on the desktop but when I enter:
tar -xzvf reaver-1.4.tar.gz
I get an error saying that there is no such file / destination.
wireless software-installation
add a comment |
I am now trying to install reaver but when I entered:
wget http://reaver-wps.googlecode.com/files/reaver-1.4.tar.gz
I got a 404 error so I tried downloading it manually and putting it on the desktop but when I enter:
tar -xzvf reaver-1.4.tar.gz
I get an error saying that there is no such file / destination.
wireless software-installation
add a comment |
I am now trying to install reaver but when I entered:
wget http://reaver-wps.googlecode.com/files/reaver-1.4.tar.gz
I got a 404 error so I tried downloading it manually and putting it on the desktop but when I enter:
tar -xzvf reaver-1.4.tar.gz
I get an error saying that there is no such file / destination.
wireless software-installation
I am now trying to install reaver but when I entered:
wget http://reaver-wps.googlecode.com/files/reaver-1.4.tar.gz
I got a 404 error so I tried downloading it manually and putting it on the desktop but when I enter:
tar -xzvf reaver-1.4.tar.gz
I get an error saying that there is no such file / destination.
wireless software-installation
wireless software-installation
edited Sep 30 '16 at 2:42
andrew.46
21.5k1469148
21.5k1469148
asked Sep 30 '16 at 0:09
Dovah KiddoDovah Kiddo
13113
13113
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There are two methods to install Reaver:
1. From the Ubuntu Repositories:
Simply run the following in a Terminal window:
sudo apt-get install reaver
and this should be enough to get you going. You could also use the Software Center or even my old friend Synaptic.
2. Compile from source:
If you wish to build your own copy of Reaver here is a single code block that should successfully download, compile, package and install Reaver under Xenial Xerus. You only really need to do this if you wish to patch the source or add some extra options to the package...
Just copy the whole code box below and paste it into a Terminal window:
sudo apt-get install build-essential checkinstall &&
sudo apt-get install libpcap-dev sqlite3 libsqlite3-dev libpcap0.8-dev &&
mkdir $HOME/Desktop/reaver_build && cd $HOME/Desktop/reaver_build &&
wget https://storage.googleapis.com/google-code-archive-downloads/v2/
code.google.com/reaver-wps/reaver-1.4.tar.gz &&
tar xvf reaver-1.4.tar.gz && cd reaver-1.4/src &&
./configure && make &&
sudo checkinstall --pakdir "$HOME/Desktop/reaver_build" --backup=no --deldoc=yes
--pkgname reaver --pkgversion "1.4" --fstrans=no
--deldesc=yes --delspec=yes --default
Depends which way you want to go....
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
add a comment |
You are not in the same directory, where you have downloaded the reaver.tar file.
you should try
cd Desktop
Or you can start from begining
Download Reaver from here
cd Downloads
tar xvfz reaver-1.4.tar.gz
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f831394%2fhelp-installing-reaver%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are two methods to install Reaver:
1. From the Ubuntu Repositories:
Simply run the following in a Terminal window:
sudo apt-get install reaver
and this should be enough to get you going. You could also use the Software Center or even my old friend Synaptic.
2. Compile from source:
If you wish to build your own copy of Reaver here is a single code block that should successfully download, compile, package and install Reaver under Xenial Xerus. You only really need to do this if you wish to patch the source or add some extra options to the package...
Just copy the whole code box below and paste it into a Terminal window:
sudo apt-get install build-essential checkinstall &&
sudo apt-get install libpcap-dev sqlite3 libsqlite3-dev libpcap0.8-dev &&
mkdir $HOME/Desktop/reaver_build && cd $HOME/Desktop/reaver_build &&
wget https://storage.googleapis.com/google-code-archive-downloads/v2/
code.google.com/reaver-wps/reaver-1.4.tar.gz &&
tar xvf reaver-1.4.tar.gz && cd reaver-1.4/src &&
./configure && make &&
sudo checkinstall --pakdir "$HOME/Desktop/reaver_build" --backup=no --deldoc=yes
--pkgname reaver --pkgversion "1.4" --fstrans=no
--deldesc=yes --delspec=yes --default
Depends which way you want to go....
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
add a comment |
There are two methods to install Reaver:
1. From the Ubuntu Repositories:
Simply run the following in a Terminal window:
sudo apt-get install reaver
and this should be enough to get you going. You could also use the Software Center or even my old friend Synaptic.
2. Compile from source:
If you wish to build your own copy of Reaver here is a single code block that should successfully download, compile, package and install Reaver under Xenial Xerus. You only really need to do this if you wish to patch the source or add some extra options to the package...
Just copy the whole code box below and paste it into a Terminal window:
sudo apt-get install build-essential checkinstall &&
sudo apt-get install libpcap-dev sqlite3 libsqlite3-dev libpcap0.8-dev &&
mkdir $HOME/Desktop/reaver_build && cd $HOME/Desktop/reaver_build &&
wget https://storage.googleapis.com/google-code-archive-downloads/v2/
code.google.com/reaver-wps/reaver-1.4.tar.gz &&
tar xvf reaver-1.4.tar.gz && cd reaver-1.4/src &&
./configure && make &&
sudo checkinstall --pakdir "$HOME/Desktop/reaver_build" --backup=no --deldoc=yes
--pkgname reaver --pkgversion "1.4" --fstrans=no
--deldesc=yes --delspec=yes --default
Depends which way you want to go....
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
add a comment |
There are two methods to install Reaver:
1. From the Ubuntu Repositories:
Simply run the following in a Terminal window:
sudo apt-get install reaver
and this should be enough to get you going. You could also use the Software Center or even my old friend Synaptic.
2. Compile from source:
If you wish to build your own copy of Reaver here is a single code block that should successfully download, compile, package and install Reaver under Xenial Xerus. You only really need to do this if you wish to patch the source or add some extra options to the package...
Just copy the whole code box below and paste it into a Terminal window:
sudo apt-get install build-essential checkinstall &&
sudo apt-get install libpcap-dev sqlite3 libsqlite3-dev libpcap0.8-dev &&
mkdir $HOME/Desktop/reaver_build && cd $HOME/Desktop/reaver_build &&
wget https://storage.googleapis.com/google-code-archive-downloads/v2/
code.google.com/reaver-wps/reaver-1.4.tar.gz &&
tar xvf reaver-1.4.tar.gz && cd reaver-1.4/src &&
./configure && make &&
sudo checkinstall --pakdir "$HOME/Desktop/reaver_build" --backup=no --deldoc=yes
--pkgname reaver --pkgversion "1.4" --fstrans=no
--deldesc=yes --delspec=yes --default
Depends which way you want to go....
There are two methods to install Reaver:
1. From the Ubuntu Repositories:
Simply run the following in a Terminal window:
sudo apt-get install reaver
and this should be enough to get you going. You could also use the Software Center or even my old friend Synaptic.
2. Compile from source:
If you wish to build your own copy of Reaver here is a single code block that should successfully download, compile, package and install Reaver under Xenial Xerus. You only really need to do this if you wish to patch the source or add some extra options to the package...
Just copy the whole code box below and paste it into a Terminal window:
sudo apt-get install build-essential checkinstall &&
sudo apt-get install libpcap-dev sqlite3 libsqlite3-dev libpcap0.8-dev &&
mkdir $HOME/Desktop/reaver_build && cd $HOME/Desktop/reaver_build &&
wget https://storage.googleapis.com/google-code-archive-downloads/v2/
code.google.com/reaver-wps/reaver-1.4.tar.gz &&
tar xvf reaver-1.4.tar.gz && cd reaver-1.4/src &&
./configure && make &&
sudo checkinstall --pakdir "$HOME/Desktop/reaver_build" --backup=no --deldoc=yes
--pkgname reaver --pkgversion "1.4" --fstrans=no
--deldesc=yes --delspec=yes --default
Depends which way you want to go....
edited Sep 30 '16 at 8:52
answered Sep 30 '16 at 2:40
andrew.46andrew.46
21.5k1469148
21.5k1469148
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
add a comment |
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
okay so i got it running but now i have issues with the "wash" commande its not showing anything
– Dovah Kiddo
Sep 30 '16 at 11:52
add a comment |
You are not in the same directory, where you have downloaded the reaver.tar file.
you should try
cd Desktop
Or you can start from begining
Download Reaver from here
cd Downloads
tar xvfz reaver-1.4.tar.gz
add a comment |
You are not in the same directory, where you have downloaded the reaver.tar file.
you should try
cd Desktop
Or you can start from begining
Download Reaver from here
cd Downloads
tar xvfz reaver-1.4.tar.gz
add a comment |
You are not in the same directory, where you have downloaded the reaver.tar file.
you should try
cd Desktop
Or you can start from begining
Download Reaver from here
cd Downloads
tar xvfz reaver-1.4.tar.gz
You are not in the same directory, where you have downloaded the reaver.tar file.
you should try
cd Desktop
Or you can start from begining
Download Reaver from here
cd Downloads
tar xvfz reaver-1.4.tar.gz
answered May 7 '17 at 5:18
Imran KhanImran Khan
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f831394%2fhelp-installing-reaver%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown