bug#65614: cgroups increase to 65555 preventing docker to start

2023-09-02 Thread Sergiu Ivanov
Hello,

I have a similar issue, related to cgroups as well: after a recent
update, I cannot start my LXC containers anymore.

This is how I generally start one of my LXC containers, called arch:

# lxc-start -n arch

I add the -F switch to get the following more detailed error log:


lxc-start: arch: cgroups/cgfsng.c: cg_legacy_set_data: 2678 No such file or 
directory - Failed to setup limits for the "devices" controller. The controller 
seems to be unused by "cgfsng" cgroup driver or not enabled on the cgroup 
hierarchy
lxc-start: arch: cgroups/cgfsng.c: cgfsng_setup_limits_legacy: 2745 No such 
file or directory - Failed to set "devices.deny" to "a"
lxc-start: arch: start.c: lxc_spawn: 1896 Failed to setup legacy device cgroup 
controller limits
lxc-start: arch: start.c: __lxc_start: 2074 Failed to spawn container "arch"
lxc-start: arch: tools/lxc_start.c: main: 306 The container failed to start
lxc-start: arch: tools/lxc_start.c: main: 311 Additional information can be 
obtained by setting the --logfile and --logpriority options


I tried tinkering a little with the cgroups-related options in my
container configuration, but that had zero impact on the error message.

-
Sergiu





bug#52585: lualatex: Unexpected non-option argument(s): lualatex.fmt

2022-01-24 Thread Sergiu Ivanov
Hello,

The issue went away for me after a guix pull I did yesterday.

Thank you very much!

-
Sergiu, happy





bug#52585: lualatex: Unexpected non-option argument(s): lualatex.fmt

2022-01-04 Thread Sergiu Ivanov
Hi,

Pāladhammika  [2022-01-04T00:50:20+0100]:
> Let me try to recall... I got the texlive 2021 to work after deleting
> ~/.texlive2019 however, the build times were them immensely slower.

Removing –/.texlive2019 (actually, renaming it to ~/.texlive2019-bak)
has no impact on the issue on my side: I'm getting exactly the same
error with or without that directory.

-
All the best,
Sergiu





bug#52585: lualatex: Unexpected non-option argument(s): lualatex.fmt

2022-01-01 Thread Sergiu Ivanov
Hello Thiago,

Thiago Jung Bauermann  [2021-12-31T05:06:52+0100]:
> Hello Sergiu, Hello Pāladhammika,
>
> Em terça-feira, 28 de dezembro de 2021, às 09:16:32 -03, Sergiu Ivanov 
> escreveu:
>> Hello,
>> 
>> I am chiming in to say that I have the same issue.  In my case this
>> doesn't seem related to https://issues.guix.gnu.org/51252 , because
>> I install the entire texlive package.
>
> I was able to reproduce the problem with the texlive package installed.
> Installing the package texlive-latex-luatex doesn’t help.

Great!

> I can work on this issue some days after the holidays.

Thank you, take your time!  Also, do tell me how I can help.

-
Sergiu





bug#52585: lualatex: Unexpected non-option argument(s): lualatex.fmt

2021-12-28 Thread Sergiu Ivanov
Hello,

I am chiming in to say that I have the same issue.  In my case this
doesn't seem related to https://issues.guix.gnu.org/51252 , because
I install the entire texlive package.

How to reproduce: put these lines into test.tex (also attached for
convenience):

\documentclass{article}
\begin{document}
text
\end{document}

Run lualatex test.tex:

This is LuaTeX, Version 1.13.0 (TeX Live 2021/GNU Guix) 
 restricted system commands enabled.

kpathsea: Running mktexfmt lualatex.fmt
/gnu/store/irzhgvy2zb6dd9g7a6b343pn4lvsn9n0-texlive-bin-20210325/share/texmf-dist/scripts/texlive/fmtutil.pl:
 Unexpected non-option argument(s): lualatex.fmt
Try "fmtutil --help" for more information.
I can't find the format file `lualatex.fmt'!

Running pdflatex test.tex and xelatex test.tex works as expected.

-
Sergiu


test.tex
Description: TeX document


bug#47448: lualatex doesn't find libzzip-0.so.13 (easy bug?)

2021-03-30 Thread Sergiu Ivanov
Perfect, works like a charm!

Thanks a lot!

-
Sergiu


Thus quoth  Efraim Flashner  on Tue Mar 30 2021 at 10:06 (+0200):
> Bug fixed with commit 9098745b181b3022587a35afd255f7ff1d41ac86.






bug#47448: lualatex doesn't find libzzip-0.so.13 (easy bug?)

2021-03-28 Thread Sergiu Ivanov
Hello Andreas,

Thus quoth  Andreas Enge  on Sun Mar 28 2021 at 12:29 (+0200):
> Hello Sergiu,
>
> Am Sat, Mar 27, 2021 at 08:22:30PM +0100 schrieb Sergiu Ivanov:
>> I have trouble running lualatex from the TeX Live distribution (package
>> texlive) :
>> $ lualatex
>> /home/scolobb/.guix-profile/bin/lualatex: error while loading shared 
>> libraries: libzzip-0.so.13: cannot open shared object file: No such file or 
>> directory
>
> I confirm the bug, and am forwarding it to the bugtracker.

Thank you!

> lualatex is a wrapped binary, and the following shows the problem:
> $ ldd $(guix build texlive-bin)/bin/luatex
> ...
>   libzzip-0.so.13 => not found
>
>> I installed the zziplib package which brings in libzzip.so.13, but not
>> libzzip-0.so.13.
>
> Indeed this seems to be the problem, and I suspect it is happening in the
> zziplib package. Its version is 0.13.72, but the soname versions are
> 13.0.72, which already suggests that there is some
> confusion happening.

Ah, I didn't even think to check the zziplib package.

> Regardless, part of the version number should not appear before the "so"
> in libzzip-0.so.13.

Yeah, that looks weird indeed.

> Hm, the following looks correct, issued from a profile containing zziplib:
> $ pkg-config --libs zziplib
> -L/gnu/store/fx0cdzzppd8jc09sianbq6gl1h7mxx3x-zziplib-0.13.72/lib 
> -L/gnu/store/rykm237xkmq7rl1p0nwass01p090p88x-zlib-1.2.11/lib -lzzip -lz
>
> So it might be a problem with texlive-bin instead.

Oh, thank you for these ideas!

TeX Live packages kind of scare me a little, because they tend to be
complex (at least from my modest Nix experience).  I do plan to do some
small contributions to Guix packages soon, which should get me started
with the workflow, and help me fix such issues directly in the future.

-
Sergiu