페도라에서 Intel PRO/1000 Family 시리즈 랜카드 설치하기

2007. 9. 27. 17:07
Intel® PRO/1000 Family 시리즈의 랜카드 드라이버를 설치하여 보겠습니다.


0. kernel-devel 설치

- 설치되어 있지 않는경우만 설치합니다.

# yum -y install kernel-devel


1. e1000 드라이버 다운로드 및 설치 (
e1000-7.6.5.tar.gz)

- 다운받은 파일을 압축 해제합니다.
- src 디렉토리에서 make install을 실행합니다.

# tar xzvf e1000-7.6.5.tar.gz
# cd e1000-7.6.5
# make install

2. 모듈 추가

- 이전 설치된 모듈을 제거하고 새로 올립니다.

# modprobe -r e1000    (to unload an old module, if it's loaded)
# modprobe e1000       (try the new one)
# dmesg|grep e1000     (Check the kernel log to see what happened)

밥짓는아이 테크노트/Linux, Unix