티스토리 뷰
C++ 200제/코딩 IT 정보
Linux(리눅스), is not a valid path to the ..... kernel headers 해결
vicddory 2018. 4. 8. 06:27목차
반응형
Linux(리눅스), is not a valid path to the ..... kernel headers 해결
참조 사이트 - LinuxQuesition.org [링크]
에러 메시지
what is the location of the gcc program on your machin the path "" is not a valid path to the ..... kernel headers
위와 같은 에러들은 커널이 완전히 설치되지 않을 경우에 생성이 됩니다.
[리눅스 kernel headers 해결]
그리고 커널만 별도로 설치하려고 시도하면, 종종 "난 설치 못한다"며 거부하는 경우도 있으니, 깔끔하게 시스템 전체를 업그레이드합니다.
1 2 3 4 5 6 7 8 | su - yum -y update yum -y install gcc make kernel-headers kernel-devel shutdown -r now # wait some secs... # login as root /usr/bin/vmware-config-tools.pl | cs |
update를 입력하면 시간이 조금 걸리니 담배하나 피고 오셔도 됩니다.
Linux(리눅스), is not a valid path to the ..... kernel headers 해결
반응형