Ricardo Rosales

Results 28 comments of Ricardo Rosales

@Lordcorvin1 I believe `termux`' `ping` does not use `/data/data/com.termux/files/usr/etc/resolv.conf` I tested on my own phone without root, using `strace` ### Install `strace` `pkg install strace` ### `nslookup` seems to use...

@Lordcorvin1, maybe the libraries and other file names do not contain the word '`resolv`'

I guess this is the same as https://github.com/celzero/rethink-app/issues/626

@timuralp is this the way you can reproduce? ``` aws --no-verify-ssl --endpoint-url http://s3proxy s3 --debug cp test.txt s3:/// --metadata '{"cms-id":"34533452"}' ``` Seems like the problem is `-` ![image](https://user-images.githubusercontent.com/728243/211403001-154ce861-ca17-4c7c-a6be-bb636a745194.png)

@TArtiushenko seems like azure blob storage does not let you use `-` in metadata, the solution is to not use `-` in metadat

@TArtiushenko The limitation is not on `s3proxy`; in the screenshot I shared the notification `The name: 'something-id' should be a valid C# identifier` comes from Azure itself, maybe there should...

@ksingh-scogo Yes, I manually build `agent` and `agentctl` with `GOOS=linux GOARCH=mipsle GOMIPS=softfloat`

@ksingh-scogo I did it in an older version, but I believe the following should work Requirements: - `docker` should be installed - Propagate `GOMIPS` environment variable ```diff diff --git a/Makefile...

welp, newer versions don't even support `mipsle`, I get these errors when building: ### with `CGO_ENABLED=1` ```shell $ export GOOS=linux GOARCH=mipsle GOMIPS=softfloat CGO_ENABLED=1 USE_CONTAINER=1 $ make binaries ... fatal: unsupported...