On Mon, Mar 22, 2021 at 3:39 PM Ulf <ub22@gmx.net> wrote:
Hi Together,
due to compatibility reasons I use a script which collect some information on my used Linux PCs (OK at SuSE I use "hwinfo" too): $ grep inxi $(which SicherPC.sh) which inxi &> /dev/null && inxi -Fxd &>> ${MyDest}/inxi-Fxd_$(date +%F).txt But this hangs (only) at my PCs using openSUSE Tumbleweed.
I find an issue, which seems to be solved since longer time: "inxi hangs when run from shell script" https://github.com/smxi/inxi/issues/181
SInce this "inxi" is a perl script, you do not need an updated package inmediately but just get newer version for your user pushd ~/bin; curl -L -O https://raw.githubusercontent.com/smxi/inxi/master/inxi; chmod 755 inxi; popd Then you could either fix the package or file a drop request since Im not sure having a package with a single perl script whose functionality is provided by other packages is worth the effort. Cheers.