On 2024-08-29 20:57, Christian Schmitz wrote:
Hello everyone: For work reason I need install a software package that only come on .deb package.
https://www.renesas.com/us/en/software-tool/go-configure-software-hub#downlo...
I try the install .deb file with Alien and dpkg with no sucess. dpkg and Alien install fail requiring elemental libraries like libc6 that is installed (i check it) In the apendix you have the details. Best regards Christian
#################################################### # Apendix 1 (commands try) Commands try:
#alien -r go-configure......deb
#alien -i go-configure......deb
#alien -i --scripts go-configure-sw-hub-v6.44.001-ubuntu-22.04-amd64.deb
#dpkg i go-configure....
For details:
#######################################################33 # Apendix 2 commands results # #######################################################33 # Try 1 # alien -r --scripts go-configure-sw-hub-v6.44.001-ubuntu-22.04-amd64.deb Package build failed. Here's the log of the command (cd go-configure-sw-hub-6.44; rpmbuild --buildroot='/home/wolf/Descargas/go-configure-sw-hub-6.44' -bb --target x86_64 'go-configure-sw-hub-6.44-2.spec'): Construyendo las plataformas de destino: x86_64 Construyendo para el destino x86_64 Procesando archivos: go-configure-sw-hub-6.44-2.x86_64 error: File not found: /home/wolf/Descargas/go-configure-sw-hub-6.44/usr/local/go-configure-sw-hub/share/application-notes/an-cm-265/an-cm-265-0-100.gp5
It seems the command is trying to build the application, so the sources seem to be available. You could then try to build it instead of using alien. Note for the next time: the messages are printing in Spanish; in order to post here is best to make programs print in English. I suggest you create this script: cer@Telcontar:~> cat /usr/local/bin/ingles #!/bin/sh LANG=en_US.UTF-8 \ LC_ALL=en_US.UTF-8 \ DICTIONARY=english \ KDE_LANG=en_US.UTF-8 \ LANGUAGE=en_US.UTF-8:en \ exec "$@" cer@Telcontar:~> and then, next time, you do: ingles alien ... whatever -- Cheers / Saludos, Carlos E. R. (from 15.5 x86_64 at Telcontar)