Sander Maijers

Results 291 comments of Sander Maijers

Yes. A tricky thing is that this copy operation will not match the target `--platform` of a container build if it's `aarch64`: ```Dockerfile COPY --from=quay.io/iovisor/bpftrace /usr/bin/bpftrace /usr/bin/ ``` This product's...

@danobi You can test easily under an emulator with: ```sh docker run --arch=arm64 --rm -it alpine:3.18 ```

> I wouldn't say it's easy :p. One of the deps we override triggers a systemd rebuild so it would probably take like 12 hours to do that under emulation....

> Thanks for your suggestions: > > > > In a Debian ARM64 I installed asciidoctor and nix, > > I also changed the ./scripts/create-assets.sh in order to enable nix-command...

If you qualify as OSS you can get a free M1 Runner on GitLab.com. https://docs.gitlab.com/ee/ci/runners/saas/macos_saas_runner.html

@fbs: You're right. I couldn't image the probes taking (so many) file descriptors. I count 2119 of these file descriptors, given 210 uprobes plus 210 uretprobes. ```text wx------ 1 root...

> also, a benefit of cat being so simple is that you avoid potentially weird behaviour around moved files. If we open at program loading we have to check whether...

> yeah as soon as you insert something unique into the probe, something depending on the probe itself, it will generate a unique bpf program that needs to be loaded...

> Mind sharing the full fd list? From that truncated list it looks both reasonable and difficult to avoid: we need a FD for each prog as well as a...