aquatone icon indicating copy to clipboard operation
aquatone copied to clipboard

how to install aquatone on ubuntu

Open moodiabdoul opened this issue 6 years ago • 10 comments

i want know how i can install aquatone on ubuntu

moodiabdoul avatar Feb 23 '19 21:02 moodiabdoul

I had a few problems initially, but this is how I did it. There is probably an easier way but via command line this worked for me.

$ go get github.com/michenriksen/aquatone
$ cd go/src/github.com/michenriksen/aquatone
$ ./build.sh (wasn't sure if I could 'go build'/didn't try)

This builds all binaries (3 for windows, mac and linux) and places them inside root directory. Change to the new 'build' dir, remove the ones you don't need

$ cd build
$ rm aquatone_macos_amd64_1.4.3.zip && rm aquatone_windows_amd64_1.4.3.zip

Provided you have zip/unzip installed via 'sudo apt-get install unzip', unzip and place in /root

$ unzip aquatone_linux* -d /root

change directory to root

$ cd ~

Move the binary to a location in your $PATH where you can run it

$ mv aquatone /usr/local/bin

Verify that it is working

$ aquatone

Additionally, if aquatone has trouble finding the path to chromium:

$ which chromium

if none is installed

$ snap install chromium

then again

$ which chromium

Then specify the path to chromium based on the previous output

$ aquatone -chrome-path /snap/bin/chromium

I believe you can also

$ curl -O https://github.com/michenriksen/aquatone/releases/download/v1.4.3/aquatone_linux_amd64_1.4.3.zip 

(But I had problems with curl) then unzip and move binary as above

$ wget https://github.com/michenriksen/aquatone/releases/download/v1.4.3/aquatone_linux_amd64_1.4.3.zip 

then unzip and move binary as above

lpfptest avatar Mar 03 '19 11:03 lpfptest

thank you very much

moodiabdoul avatar Mar 07 '19 12:03 moodiabdoul

Thankyou so much, worked perfectly

rajesh457 avatar Apr 16 '20 12:04 rajesh457

as of 2020 this no longer works you will get a screenshot failed: exit status 1 on Ubuntu 20.04 LTS

nemessisc avatar Aug 12 '20 20:08 nemessisc

something wrong with Chromium 84.0.4147.105 which will not capture any screenshot

Sy3Omda avatar Aug 16 '20 13:08 Sy3Omda

any solution ??

Hayvi avatar Nov 06 '20 13:11 Hayvi

install chromium beta

sudo add-apt-repository ppa:saiarcot895/chromium-beta sudo apt-get update sudo apt-get install chromium-browser

and type

cat urls.txt | ./aquatone

will work fine in ubuntu vps to taking screenshot

RAVIPRAJ avatar Jan 18 '21 09:01 RAVIPRAJ

install chromium beta

sudo add-apt-repository ppa:saiarcot895/chromium-beta sudo apt-get update sudo apt-get install chromium-browser

and type

cat urls.txt | ./aquatone

will work fine in ubuntu vps to taking screenshot

Thanks, this worked.

gelosecurity avatar Feb 01 '21 18:02 gelosecurity

I think we have a simple way to make this work.

$ go get github.com/michenriksen/aquatone
$ cp ~/go/bin/aquatone /usr/local/bin

Run aquatone to see the result:

$ aquatone 
aquatone v1.7.0 started at 2021-03-16T23:10:56Z

In case you haven't permissions to the user, you need to use sudo. I hope this helps someone :)

iamnormaluser avatar Mar 16 '21 23:03 iamnormaluser

i think if you want to download "chromium" you will yous this one : sudo apt-get install chromium

devlprkhan avatar May 17 '21 11:05 devlprkhan

Failed to create required directory headers error when initiating aquatone

maheshbasnet089 avatar Aug 15 '22 12:08 maheshbasnet089