Road Pirate Films
Road Pirate Films
bettercap and pwngrid are still running. I've collected three handshakes so far. It's just pwnagotchi that is dying with an illegal instruction.
Looks like it might be something with tensor flow: ``` Core was generated by `/usr/bin/python /usr/bin/pwnagotchi -U /etc/pwnagotchi/myconfig.yml --debug'. Program terminated with signal SIGILL, Illegal instruction. #0 0x00007f51586e6820 in nsync::nsync_mu_init(nsync::nsync_mu_s_*)...
Yeah, I don't understand it. I reinstalled everything with "sudo pip3 install -r requirements.txt" so I've got the exact versions that the requirements file on this GitHub asks for. Still...
This is the instruction that crashed the program: ``` vmovsd -0x38(%rdp),%xmm0 ``` vmovsd is part of the Advanced Vector Extensions(AVX) which my CPU doesn't support. I just googled tensorflow and...
@cyrus104 ``` AMD Phenom II N970 Introduction date: Jan 4, 2011 [Source: cpu-world.com] ``` It doesn't even support SSE3/SSE4.1/SSE4.2 instructions. I tried running Anbox a while back and it requires...
I'm still compiling version 1.13.1 of tensorflow. I kept getting errors because it's such an old version that it's not able to compile against modern versions of glibc. I finally...
@evilsocket thanks. The compile failed. I couldn't get it to apply the patch so I keep getting errors regarding gettid() being ambiguous. The patch was supposed to change gettid to...
I got 1.13.1 to compile by setting up a local_repository for grpc in the WORKSPACE file for tensorflow and changing all the gettid function names to sys_gettid in the local_repository....