How to use elfutils? bash: eu-strip: command not found

2021-01-17 Thread znavko--- via
Hello! I have an error with some binary and I wish to check its interpreter, but elfutils package is not so easy for me. $ ./projectbinary-qt bash: ./projectbinary-qt: No such file or directory $ readelf --all ./projectbinary-qt | grep interpreter bash: readelf: command not found $ guix search r

Re: How to use elfutils? bash: eu-strip: command not found

2021-01-17 Thread Vincent Legoll
Hello, On Sun, Jan 17, 2021 at 12:00 PM Pierre Neidhardt wrote: > You need to install the "bin" output: > > guix install elfutils:bin Maybe some hint like that should be added to description. WDYT ? > If you want to fix your executable interpreter (and probably the RPATH > too), you can use

Re: Cann't launch Transmission

2021-01-17 Thread Christophe Pisteur
Great, I just did `$ guix package -i transmission:gui`and it worked. And I understand now why there is a separate output called "gui" for `guix show transmission` Thank you very much! Christophe Le samedi 16 janvier 2021 à 19:07 -0500, Leo Famulari a écrit : > The graphical part of Transmission

[PATCH] * doc/guix-cookbook.texi (Guix System Image API): new section

2021-01-17 Thread Joshua Branson
--- doc/guix-cookbook.texi | 187 + 1 file changed, 187 insertions(+) diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi index 54ab99558e..2bc8fe8a99 100644 --- a/doc/guix-cookbook.texi +++ b/doc/guix-cookbook.texi @@ -1353,6 +1353,7 @@ reference.

Re: How to use elfutils? bash: eu-strip: command not found

2021-01-17 Thread znavko
Thank you very much! Can you give me another lesson where to find ld-linux in Guix? $ eu-readelf --all ./projectbinary-qt | grep interpreter [Requesting program interpreter: /lib64/ld-linux-x86-64.so.2] I've found with duckduckgo on 10-th page of this document: https://guix.gnu.org/guix-

Re: packaging a golang package

2021-01-17 Thread Helio Machado
Hi! Looks like it ran into the replace syntax and didn't parse it correctly? > https://golang.org/ref/mod#go-mod-file So it seems. I'll debug it as soon as I can; the import process is unbearably long. I sort of wonder if the `git-fetch` portion of go packages should be > something like `git-fe

converting a distro to guixsd

2021-01-17 Thread kevinbanjo
So there's a script to install the guix package manager onto another distro. Is there a script, or at least a doc, on how to then convert that distro in place into GuixSD? TIA, -Kevin

Re: converting a distro to guixsd

2021-01-17 Thread jbranso
Hello Kevin! Why yes there is! https://guix.gnu.org/manual/en/html_node/Binary-Installation.html Note: We recommend the use of this shell installer script. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As ro

Re: How to use elfutils? bash: eu-strip: command not found

2021-01-17 Thread Pierre Neidhardt
Frankly, it's easier to get your program to run if you can compile it from source. It's going to be quite tricky to patch the ELF. The linker is in the "lib" folder of the glibc package. > "/gnu/store/m9vxvh...-glibc-2.23/lib/ld-linux-x86-64.so.2" This is correct. > So, I installed as I can und

Re: converting a distro to guixsd

2021-01-17 Thread Joshua Branson
kevinbanjo writes: > On Sun, Jan 17, 2021, 11:47 AM wrote: > > Actually I was looking at trying to convert an Alpine Linux in WSL into GuixSd You may be confusing terms. GuixSD is the deprecated term. The new term is Guix System, which is running guix paired with the GNU shepherd as a GNU/Lin