![Как преодолеть bash: синтаксическая ошибка около неожиданного токена `)'](https://rvso.com/image/169439/%D0%9A%D0%B0%D0%BA%20%D0%BF%D1%80%D0%B5%D0%BE%D0%B4%D0%BE%D0%BB%D0%B5%D1%82%D1%8C%20bash%3A%20%D1%81%D0%B8%D0%BD%D1%82%D0%B0%D0%BA%D1%81%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B0%D1%8F%20%D0%BE%D1%88%D0%B8%D0%B1%D0%BA%D0%B0%20%D0%BE%D0%BA%D0%BE%D0%BB%D0%BE%20%D0%BD%D0%B5%D0%BE%D0%B6%D0%B8%D0%B4%D0%B0%D0%BD%D0%BD%D0%BE%D0%B3%D0%BE%20%D1%82%D0%BE%D0%BA%D0%B5%D0%BD%D0%B0%20%60)'.png)
Я пытаюсь установить драйвер realtek alk665 с помощью пакетаrealtek-linux-audiopack-4.06aдля Linux на моем ноутбуке с Debian 10. (Вы также можете просмотреть его напрямую черезэта ссылка)
Чтобы установить его, я следовал инструкциям, включенным в realtek-linux-audiopack-4.06a/Readme.txt
файл, который говорит, что нужно запустить ./config
в каталоге, куда alsa-driver-1.0.14-4.06a
он извлечен. Когда я запускаю, ./configure
вывод из bash такой: (Проверьте последние две строки)
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for ranlib... ranlib
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking whether time.h and sys/time.h may both be included... yes
checking whether gcc needs -traditional... no
checking for current directory... /home/dsaki/Downloads/realtek-linux-audiopack-4.06a/alsa- driver-1.0.14-4.06a
checking cross compile...
checking for directory with kernel source... /lib/modules/4.19.0-8-amd64/source
checking for directory with kernel build... /lib/modules/4.19.0-8-amd64/build
checking for kernel linux/version.h... yes
checking for kernel linux/autoconf.h... yes
checking for kernel version... 0.0.0
checking for GCC version... ./configure: eval: line 4836: syntax error near unexpected token `)'
./configure: eval: line 4836: `my_compiler_version=8.3.0-6)'
Вот файл configure
, в котором произошла ошибка. Я выписал всю часть, которая, как я предполагаю, ответственна за ошибку: (строка 4836 показана комментарием)
typevar=my_compiler_type
versionvar=my_compiler_version
ac_compiler_type=""
ac_compiler_version=""
for i in $my_compiler; do
case $i in
gcc-[0-9]*|*-gcc-[0-9]*)
if test -z "$ac_compiler_type"; then
ac_compiler_type=gcc
fi
if test -z "$ac_compiler_version"; then
ac_compiler_version=`echo $i | sed -e 's/^.*gcc-\([0-9.]\+\).*$/\1/'`
fi
;;
*gcc*|*GCC*)
if test -z "$ac_compiler_type"; then
ac_compiler_type=gcc
fi
;;
egcs-*) # LINE 4836 STARTS HERE
ac_compiler_type=egcs
if test -z "$ac_compiler_version"; then
ac_compiler_version=`echo $i | sed -e 's/egcs-\(.\+\)$/\1/'`
fi
;;
*cc*)
if test -z "$ac_compiler_type"; then
ac_compiler_type=cc
fi
;;
[0-9].[0-9]*)
if test -z "$ac_compiler_version"; then
ac_compiler_version="$i"
fi
;;
esac
done
eval $typevar="$ac_compiler_type"
eval $versionvar="$ac_compiler_version"
Мне нужно это исправить, чтобы продолжить установку.