You are not logged in.
Hi,
I've installed a bioinformatics suite UGENE (which I routinely use on different platforms) from one of the contrib repositories, but it fails to start with a segfault:
~$ ugene -ui
Translation not found: transl_en
/usr/lib/ugene/ugene: line 69: 7558 Segmentation fault "$dirname/$appname" "${params[@]}"
Line 69 is the last "fi":
#!/bin/bash
appname=ugenecl
# Check if '-ui' parameter is present.
# If it does exclude it from the list of parameters
# and use ugeneui instead of ugenecl
params=()
while [[ $# -gt 0 ]];
do
if [ "$1" = "-ui" ]; then
appname=ugeneui
if `echo $DESKTOP_SESSION|grep -i kde >/dev/null 2>&1`; then
IS_KDE=1
fi
else
params+=("$1")
fi
shift
done
dirname=$(dirname "`readlink -f "$0"`")
tmp="${dirname#?}"
if [ "${dirname%$tmp}" != "/" ]; then
dirname=$PWD/$dirname
fi
LD_LIBRARY_PATH=$dirname
export LD_LIBRARY_PATH
# check compatibility OS and UGENE (32-bit or 64-bit)
system_i686=false
system_x86_64=false
case "`uname -m|grep 64|wc -l|tr -d ' '`" in
0*) system_i686=true;;
1*) system_x86_64=true;;
esac
ugene_i686=false
ugene_x86_64=false
case "`file -b $dirname/$appname |cut -d "," -f1 |grep 64|wc -l|tr -d ' '`" in
0*) ugene_i686=true;;
1*) ugene_x86_64=true;;
esac
if $system_i686; then
if $ugene_x86_64; then
echo "Warning: You have a 32-bit operating system but you are trying to launch a 64-bit version of the UGENE package. You have to download the appropriate UGENE version instead."
fi
else
if $ugene_i686; then
echo "Warning: You have a 64-bit operating system but you are trying to launch a 32-bit version of the UGENE package. You have to download the appropriate UGENE version instead."
fi
fi
# Workaround for UGENE-4619
export QT_QPA_PLATFORMTHEME=
if [ -z $IS_KDE ]; then
"$dirname/$appname" "${params[@]}"
else
"$dirname/$appname" "${params[@]}" -style cleanlooks
fi
I looked at the same file in another installation and it looks the same, at least the very last lines.
Do you have any idea what the problem might be?
ASCII 64bit.
Thank you.
Thank you guys, the repos are added, drivers are installed, wifi is working.
dxrobertson I used these instructions to acquire and install the driver:
https://wiki.debian.org/bcm43xx
Looks like everything was done automatically in the background. At least everything that was required from me was just this package.
Thank you.
Hi,
Sorry for a probably stupid question, but which repo should I add to install a firmware-b43-installer package? Package browser from the Devuan website indicates
firmware-b43-installer 019-3 [contrib/kernel - optional]
[Origin: Debian - ascii - contrib]
but I somehow failed to figure out which repo it is. This package is absent in pre-configured repos in the newly-installed x64 ASCII.
Thank you.