64비트 커널, Linux Mint 17에서 AMD 레거시 드라이버를 컴파일하는 방법 [닫기]

64비트 커널, Linux Mint 17에서 AMD 레거시 드라이버를 컴파일하는 방법 [닫기]

HD 2400 GPU용 레거시 드라이버를 구하려고 하는데 빌드할 때 오류가 발생합니다.

나는 이 답변을 보고 드라이버 관리자에서 비어 있는 동일한 결과를 얻었습니다.

https://unix.stackexchange.com/a/106918/72663

누락된 파일을 수정하기 위해 version.h먼저 다음을 수행했습니다.

$ sudo ln -s /usr/src/linux-headers-3.13.0-24-generic/include/generated/uapi/linux/version.h /lib/modules/3.13.0-24-generic/build/include/linux/version.h

촉매 도구를 실행하여 드라이버를 설치하면 다음과 같은 결과가 나타납니다.

Creating symlink /var/lib/dkms/fglrx/8.97.100.7/source ->
                 /usr/src/fglrx-8.97.100.7

DKMS: add completed.

Kernel preparation unnecessary for this kernel.  Skipping...

Building module:
cleaning build area....
cd /var/lib/dkms/fglrx/8.97.100.7/build; sh make.sh --nohints --uname_r=3.13.0-24-generic --norootcheck....(bad exit status: 1)
[Error] Kernel Module : Failed to build fglrx-8.97.100.7 with DKMS
[Error] Kernel Module : Removing fglrx-8.97.100.7 from DKMS

하지만 문제는 장소가 version.h옮겨졌다는 것입니다. 따라서 제가 있는 모든 위치는 다음과 같습니다.

$ sudo find / -name version.h/var/lib/dkms/virtualbox-guest/4.3.10/build/include/VBox/version.h
/lib/firmware/carl9170fw/include/shared/version.h
/usr/include/linux/version.h
/usr/include/linux/dvb/version.h
/usr/src/linux-headers-3.13.0-24-generic/include/generated/uapi/linux/version.h
/usr/src/linux-headers-3.13.0-24-generic/include/config/arch/want/ipc/parse/version.h
/usr/src/linux-headers-3.13.0-24-generic/include/config/evm/hmac/version.h
/usr/src/virtualbox-guest-4.3.10/include/VBox/version.h
/usr/src/linux-headers-3.13.0-24/include/uapi/linux/dvb/version.h
/usr/src/linux-headers-3.13.0-24/include/xen/interface/version.h

다음과 같이 32비트 버전의 커널 헤더를 설치했습니다.

$ sudo apt-get install linux-headers-3.13.0-24-generic:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
linux-headers-3.13.0-24-generic:i386 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 208 not upgraded.

경로를 수정 하려면 뭔가를 변경해야 할 것 같지만 make.sh무엇을 변경해야 할지, 아니면 쉽게 작동하도록 해야 할지 잘 모르겠습니다 ln -s ....

64비트 3.13.0 커널용 fglrx-8.97.100.7을 설치하는 방법은 무엇입니까? Mint Linux에서 사용할 수 없다면 Ubuntu를 사용하는 것이 더 쉬울까요?

WebGL을 사용하여 일부 프로그래밍을 하고 있는데 범용 드라이버를 사용하여 JavaScript 코드를 테스트하는 데 필요한 속도 향상을 얻을 수 없습니다.

관련 정보