htrace.sh
htrace.sh copied to clipboard
It's not working on macOS 10.14.3
Thank you for your work, but I cannot run it on macOS 10.14.3. I think the path to the symbolic link is incorrect.
~/D/G/htrace.sh>` sudo ./setup.sh install --with-dependencies
Create symbolic link to /usr/local/bin
Create man page to /usr/local/man/man8
~/D/G/htrace.sh> htrace.sh
fish: Unknown command 'htrace.sh'
~/D/G/htrace.sh> ll /usr/local/bin/ht*
lrwxr-xr-x 1 root admin 15B Mar 21 09:59 /usr/local/bin/htrace.sh -> ./bin/htrace.sh
~/D/G/htrace.sh> cd /usr/local/bin/
/u/l/bin> ll ./bin/htrace.sh
ls: ./bin/htrace.sh: No such file or directory
the symlink created should be ln -s /where/your/repo/is/bin/htrace.sh /usr/local/bin/htrace.sh
@press5 @damozhang I don't know how to contribute to the file, but:
In the setup.sh file: Change the _dir= line in the darwin section to
readonly _dir=$PWD
Change the ln line to
eval "ln -s ${_dir}/bin/htrace.sh /usr/local/bin/htrace.sh"
PWD is the current working directory and ln can't take a string argument, but eval a string works
does not work or install on 10.14.6
my errors start at:
ln: /usr/bin/subfinder: Operation not permitted Error: Running Homebrew as root is extremely dangerous and no longer supported. As Homebrew does not drop privileges on installation you would be giving all build scripts full access to your system. error retrieving updates: unexpected HTTP status code: 401 Unauthorized: An account ID and license key are required to use this service.
I am also getting the same in ubuntu-18.10
Error retrieving updates: error updating GeoLite2-Country: error updating: unexpected HTTP status code: 401 Unauthorized: An account ID and license key are required to use this service.
@jasmeet2dhiman not like the macOS problem, the issue you're facing is a different one, GeoIP Lite now needs a valid account to download its database, #86 did handle the part in Dockerfile, but the dependency install script needs to be updated.
cc @pvtmert @trimstray