Luke McCarthy

Results 9 comments of Luke McCarthy

I have the same issue on Alpine Linux.

I am getting a similar error: json: cannot unmarshal number -18 into Go value of type uint32

I also tried lldb and it crashes when trying to initialize a Python interpreter (I had no idea it had Python embedded in to it) ``` lldb PLEASE submit a...

I found a static build of an old version of GDB (7.10.1) to find where it was crashing in Python. ``` Program received signal SIGILL, Illegal instruction. 0x00005555550c27ab in get_allocator_unlocked...

Adding that /etc/dbus-1/system-local.conf to my machine seems to break dbus (systemctl command stops working!)

(gdb) bt #0 0x00007ffff7e6a26a in clock_nanosleep () from /usr/lib64/libc.so.6 #1 0x00007ffff7e6f1d7 in nanosleep () from /usr/lib64/libc.so.6 #2 0x00007ffff7e6f0fe in sleep () from /usr/lib64/libc.so.6 #3 0x0000555555558b2d in do_zero_pages () at src/mm.c:46...

This seems to be intentional that do_zero_pages never returns, so the systemd unit file needs to be changed from 'oneshot' to something else.

It probably needs to call sd_notify() before entering the do_zero_pages() loop, then use Type=notify in the service file.

Here's a trivial example which can be used as a test case: ``` ljmcc@pythagoras~ $ docker run -t -i --rm ubuntu bash Unable to find image 'ubuntu:latest' locally latest: Pulling...