[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:45384] NICのインストール
私は、nlistこと原田と言います。
早速ですが、皆様方のお知恵を拝借したいと思います。
現在、私は、Debian/GNU Linux 2.4.17-2-686を
NECのラックサーバーExpress5800/110Rg-1に
インストールしようとしています。
現在、一通りのインストール作業が終わりましたが、
NICを認識してくれない為、ネットワークに接続する事が
出来ません。
NICのチップは、IntelのPC82573Vのデュアルポートです。
また、
/proc/pciでは、
Bus 4, device 0, function 0:
Ethernet controller: PCI device 8086:108b(Intel crop.) (rev3).
IRQ 16.
Non prefetchable 32 bit memory at 0x8000000 [0x801ffff].
I/O at 0x4000 [0x401f].
Bus 5, device 0, function 0:
Ethernet controller: PCI device 8086:108b(Intel crop.) (rev3).
IRQ 17.
Non prefetchable 32 bit memory at 0x8200000 [0x821ffff].
I/O at 0x5000 [0x501f].
となっています。
Intelのホームページより
http://downloadfinder.intel.com/scripts-df-external/File_Filter.aspx?FileName=e1000-
のファイルを取ってきて
e1000をメイクインストールしようとしましたが、以下のエラーが
出力されました。
Makefile 65: *** 65:Linux kernel source not found. Stop.
Makefileの中身をみると
43:# Kernel Search Path
44:# All the places we look for kernel source
45:KSP := /lib/modules/$(BUILD_KERNEL)/source \
46: /lib/modules/$(BUILD_KERNEL)/build \
47: /usr/src/linux-$(BUILD_KERNEL) \
48: /usr/src/linux-$($(BUILD_KERNEL) | sed 's/-.*//') \
49: /usr/src/kernel-headers-$(BUILD_KERNEL) \
50: /usr/src/kernel-source-$(BUILD_KERNEL) \
51: /usr/src/linux-$($(BUILD_KERNEL) | sed
's/\([0-9]*\.[0-9]*\)\..*/\1/') \
52: /usr/src/linux
53:
54:# prune the list down to only values that exist
55:# and have an include/linux sub-directory
56:test_dir = $(shell [ -e $(dir)/include/linux ] && echo $(dir))
57:KSP := $(foreach dir, $(KSP), $(test_dir))
58:
59:# we will use this first valid entry in the search path
60:ifeq (,$(KSRC))
61: KSRC := $(firstword $(KSP))
62:endif
63:
64:ifeq (,$(KSRC))
65: $(error Linux kernel source not found)
66:else
67:ifeq (/lib/modules/$(shell uname -r)/source, $(KSRC))
68: KOBJ := /lib/modules/$(shell uname -r)/build
69:else
70: KOBJ := $(KSRC)
71:endif
72:endif
となっております。
make installがうまくいきません。
自分としては、45〜52行のKernelソースが入っていない為だと思いますが、
どのパッケージをインストールしたらいいのかが判りません。
これで、何が原因かわかりましたら、ご教授いただければ幸いです。
よろしくお願い致します。