CentOSでASUS マザーボード P5Q SEでAtheros L1E LANアダプタを認識させる
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
* CentOSでASUSマザーボード P5Q SEでAtheros L1E LANアダプ...
CentOS 5.4(x86_64)をデスクトップのみの標準インストールで...
** 1. gccのインストール [#i63f2634]
> # rpm -ivh gcc-4.1.2-46.el5.x86_64.rpm glibc-devel-2.5-...
** 2. カーネルソースパッケージのコピー、インストール [#td...
カーネルソースパッケージは別マシンでwgetでダウンロードす...
> $ wget ftp://ftp.riken.jp/Linux/centos/5.4/os/SRPMS/ker...
CentOSマシンにUSBメモリ等でコピーして、
> # mkdir /usr/src/redhat
> # rpm -ivh kernel-2.6.18-164.el5.src.rpm
** 3. rpm-buildのインストール [#da27855d]
> # rpm -ivh rpm-build-4.4.2.3-18.el5.x86_64.rpm elfutils...
** 4. redhat-rpm-configのインストール [#ncd724b5]
> # rpm -ivh redhat-rpm-config-8.0.45-32.el5.centos.noarc...
** 5. unifdefのインストール [#mf627b17]
> # rpm -ivh unifdef-1.171-5.fc6.x86_64.rpm
** %%6. ncurses-develのインストール%% [#ha15842c]
> %%# rpm -ivh ncurses-devel-5.5-24.20060715.x86_64.rpm%%
** 7. カーネルソースパッケージのrpmbuild -bpの実行 [#udb3...
> # cd /usr/src/redhat/SPECS
> # rpmbuild -bp --target=x86_64 kernel-2.6.spec
** 8. シンボリックリンクの作成 [#n52e0b66]
> # cd /usr/src
> # ln -s /usr/src/redhat/BUILD/kernel-2.6.18i/linux-2.6....
** 9. カーネルのコンパイルとインストール [#b1a5ad5d]
> # cd /usr/src/redhat/BUILD/kernel-2.6.18/linux-2.6.18.x...
カーネルにバージョン番号を付ける。
> # cp Makefile Makefile.org
> # vi Makefile
> EXTRAVERSION = -prep
を
> EXTRAVERSION = -091115
に修正。091115は年月日でオリジナルカーネルと区別できるよ...
> # make mrproper
> # cp /boot/config-2.6.18-164.el5 .config
> %%# make menuconfig%%
%%何も変更せず、configurationをsaveしてexit%%
> # make bzImage && make modules
> # make modules_install
> # /sbin/installkernel 2.6.18-091115 arch/x86_64/boot/bz...
追記(Nov 28, 2009)。書き忘れで、必要。
初期RAMディスクの作成
> # mkinitrd -f /boot/initrd-2.6.18-091115.img 2.6.18-091...
システムを再起動して、grubメニューでインストールしたカー...
** 10. Atheros L1E LANドライバの展開、コンパイル、インス...
[[ASUSのサポートページ:http://www.asus.co.jp/products.asp...
> $ unzip LinuxDrivers.zip
> $ cd LinuxDrivers/Lan
> $ tar jxfv l1e-l2e-linux-v1.0.0.4.tar.bz2
> $ cd atl1e/src
> $ make
> $ su
> # make install
** 11. /etc/modprobe.confの編集 [#a5bca85e]
> # vi /etc/modprobe.conf
> alias eth0 atl1e
を追加
終了行:
* CentOSでASUSマザーボード P5Q SEでAtheros L1E LANアダプ...
CentOS 5.4(x86_64)をデスクトップのみの標準インストールで...
** 1. gccのインストール [#i63f2634]
> # rpm -ivh gcc-4.1.2-46.el5.x86_64.rpm glibc-devel-2.5-...
** 2. カーネルソースパッケージのコピー、インストール [#td...
カーネルソースパッケージは別マシンでwgetでダウンロードす...
> $ wget ftp://ftp.riken.jp/Linux/centos/5.4/os/SRPMS/ker...
CentOSマシンにUSBメモリ等でコピーして、
> # mkdir /usr/src/redhat
> # rpm -ivh kernel-2.6.18-164.el5.src.rpm
** 3. rpm-buildのインストール [#da27855d]
> # rpm -ivh rpm-build-4.4.2.3-18.el5.x86_64.rpm elfutils...
** 4. redhat-rpm-configのインストール [#ncd724b5]
> # rpm -ivh redhat-rpm-config-8.0.45-32.el5.centos.noarc...
** 5. unifdefのインストール [#mf627b17]
> # rpm -ivh unifdef-1.171-5.fc6.x86_64.rpm
** %%6. ncurses-develのインストール%% [#ha15842c]
> %%# rpm -ivh ncurses-devel-5.5-24.20060715.x86_64.rpm%%
** 7. カーネルソースパッケージのrpmbuild -bpの実行 [#udb3...
> # cd /usr/src/redhat/SPECS
> # rpmbuild -bp --target=x86_64 kernel-2.6.spec
** 8. シンボリックリンクの作成 [#n52e0b66]
> # cd /usr/src
> # ln -s /usr/src/redhat/BUILD/kernel-2.6.18i/linux-2.6....
** 9. カーネルのコンパイルとインストール [#b1a5ad5d]
> # cd /usr/src/redhat/BUILD/kernel-2.6.18/linux-2.6.18.x...
カーネルにバージョン番号を付ける。
> # cp Makefile Makefile.org
> # vi Makefile
> EXTRAVERSION = -prep
を
> EXTRAVERSION = -091115
に修正。091115は年月日でオリジナルカーネルと区別できるよ...
> # make mrproper
> # cp /boot/config-2.6.18-164.el5 .config
> %%# make menuconfig%%
%%何も変更せず、configurationをsaveしてexit%%
> # make bzImage && make modules
> # make modules_install
> # /sbin/installkernel 2.6.18-091115 arch/x86_64/boot/bz...
追記(Nov 28, 2009)。書き忘れで、必要。
初期RAMディスクの作成
> # mkinitrd -f /boot/initrd-2.6.18-091115.img 2.6.18-091...
システムを再起動して、grubメニューでインストールしたカー...
** 10. Atheros L1E LANドライバの展開、コンパイル、インス...
[[ASUSのサポートページ:http://www.asus.co.jp/products.asp...
> $ unzip LinuxDrivers.zip
> $ cd LinuxDrivers/Lan
> $ tar jxfv l1e-l2e-linux-v1.0.0.4.tar.bz2
> $ cd atl1e/src
> $ make
> $ su
> # make install
** 11. /etc/modprobe.confの編集 [#a5bca85e]
> # vi /etc/modprobe.conf
> alias eth0 atl1e
を追加
ページ名: