Results 98 comments of josch

Hello and happy new year! :slightly_smiling_face: I just rebased this branch on top of master. If there is anything I can do to move this forward, @tytso, please do tell....

The github workflow seems to fail for macos and android but the failures do not seem to be due to the changes of this merge request. In fact on android,...

I can talk for the situation in Debian as well as the author of img2pdf which (used to) use pdfrw. - since pdfrw is unmaintained right now, we removed it...

I observed the same non-linear behavior. Since this is breaking my use-case for genext2fs I instead worked on a patch for e2fsprogs that would allow it to use a tarball...

@pamolloy did the local issue look something like this: archive_read_next_header(): Pathname can't be converted from UTF-8 to current locale. If yes, maybe try out https://github.com/bestouff/genext2fs/pull/30 and tell me if that...

This worked for me to only inhibit idle on keyboard actions and ignore mouse movements: seat * idle_wake keyboard seat * idle_inhibit keyboard This issue can thus be closed, no?

You can fix this by building fakechroot with `_TIME_BITS` and `_FILE_OFFSET_BITS` unset in `CPPFLAGS` which are both set by default in gcc from Debian.

Hi, I'm the author of a tool called `mmdebstrap` which is a tool like `debootstrap` but uses apt doesn't require superuser privileges: https://packages.debian.org/sid/mmdebstrap I am also running into the problem...

@abliss sure! In Debian unstable, create a Debian buster (stable) chroot and then try running anything in it. Like this: $ sudo debootstrap --variant=minbase buster debian-buster $ fakechroot fakeroot chroot...

Lets find out! for b in debian-buster/bin/* debian-buster/sbin/* debian-buster/usr/bin/* debian-buster/usr/sbin/*; do bn=$(basename $b) fakechroot fakeroot chroot debian-buster $bn if [ $? -ne 139 ]; then echo "no segfault">&2 break fi...