Skip to content

Commit

Permalink
Merge pull request #189 from sundowndev/patch/docs
Browse files Browse the repository at this point in the history
Fix a typo in docs about installing geckodriver
  • Loading branch information
sundowndev authored Jan 7, 2020
2 parents 26da409 + 8478f5c commit 5d93077
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ cd PhoneInfoga/
You can also download the source code archive :

```shell
curl $(curl -s https://api.github.com/repos/sundowndev/phoneinfoga/releases/latest | grep tarball_url | cut -d '"' -f 4) -o PhoneInfoga.tar.gz
# Download it
curl -L $(curl -s https://api.github.com/repos/sundowndev/phoneinfoga/releases/latest | grep tarball_url | cut -d '"' -f 4) -o PhoneInfoga.tar.gz
# Then extract it
tar -xvzf PhoneInfoga.tar.gz
cd sundowndev*
```
Expand Down Expand Up @@ -53,13 +55,13 @@ The Geckodriver is the Firefox webdriver for Selenium, which is used by PhoneInf
Go to the [geckodriver releases page](https://github.com/mozilla/geckodriver/releases). Find the latest version of the driver for your platform and download it. For example:

```shell
curl https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz -o geckodriver-v0.24.0-linux64.tar.gz
curl -L https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz -o geckodriver-v0.24.0-linux64.tar.gz
```

##### Extract the file

```shell
sudo sh -c 'tar -x geckodriver -zf geckodriver-*.tar.gz -O > /usr/bin/geckodriver'
tar -xzf geckodriver-*.tar.gz -O > /usr/bin/geckodriver
```

##### Make it executable
Expand Down

2 comments on commit 5d93077

@Biboali
Copy link

@Biboali Biboali commented on 5d93077 Jan 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi i just want to ask about osint .. is not working with me (phoneinfoga.py: error: unrecognized arguments: --osint)

@sundowndev
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Biboali This option is deprecated, please read documentation: https://sundowndev.github.io/PhoneInfoga/

Please sign in to comment.