Unix Linux

우분투 6.10 네트워크 설정 (xnote m1)

_침묵_ 2007. 4. 4. 08:14

오늘 xnote M1 에 우분투 6.10 을 설치했습니다.

 

다들 겪으셨겠지만 네트워크 설정이 안되서 나름 애먹었습니다.

이곳에서 여러 가지 정보를 얻어서 성공을 했습니다.

보니까 페도라는 많은데, 우분투 설명이 없어서 한 번 써봅니다.

 

일단 참고한 사이트는,

http://dadams1969.googlepages.com/et131xkernelmodule (소스 :http://sourceforge.net/projects/et131x/)

http://www.thefuckingshit.org/?p=425

입니다.

 

첫 번째 사이트에서는 et131x 모듈을 개발하는 것 같고,

두번째 사이트에서는 실제로 도움이 되는 설명이 있었습니다.

 

첨부 파일을 받으면 6개의 파일이 있는데, 그것중의 하나가 tar.bz2 확장자를 가지는 파일입니다.

tar.bz2 안에는 42개의 파일이 있는데, 이걸 다른 파일들과 같은 곳에 압축을 풀어줍니다.

동일한 디렉토리에 48개의 파일이 있게되겠죠.

 

그 상태에서 다음 명령을 날려줍니다.

patch < new_ver_x86_3-10-06.patch
patch < fix-patch_et131x_x86_3-10-06.diff
patch < fix-get_mac_address_from_EEPROM.diff
patch < MODULE_PARM.diff
make
make modules_install
insmod et131x.ko
depmod
modprobe et131x

 

그 뒤로는 네트워크 설정에서 wired connection 을 볼 수 있을 겁니다.

 

원문은 아래와 같습니다.

ENABLE ETHERNET CARD

After installing the new kernel, its time to work on the ethernet card support. First of all you need to install the proper kernel header to be able to compile modules, then download the module, apply some patches, compile and install it. Follow these steps:

- Execute apt-get build-essential linux-headers-686
- Download the et131x module fromhttp://dadams1969.googlepages.com/et131x-1.2.2-3.src.tar.gz
- Extract the contents in a folder. There must be 6 files. One of them is a tar.bz2 file that should be extracted IN THE SAME FOLDER so there are 42 files in total.
- Apply the patches in the following order:
patch < new_ver_x86_3-10-06.patch
patch < fix-patch_et131x_x86_3-10-06.diff
patch < fix-get_mac_address_from_EEPROM.diff
patch < MODULE_PARM.diff
- Execute make
- Execute make modules_install
- Execute insmod et131x.ko
- Execute depmod
- Execute modprobe et131x

That’s it!