當(dāng)前位置: 首頁IT技術(shù)操作系統(tǒng) → 如何安裝gentoo linux

如何安裝gentoo linux

更多

如何安裝gentoo linux?今天小編就跟大家分享下安裝安裝gentoo linux的詳細(xì)過程,一起來學(xué)習(xí)下吧!

安裝gentoo linux步驟

1..刻盤。

2.啟動(dòng),直接按回車。

進(jìn)入系統(tǒng)dos界面,開始輸入命令...

3.改變現(xiàn)有root用戶的密碼 passwd

4.開啟sshd服務(wù)方便遠(yuǎn)程安裝/etc/init.d/sshd start

5.配置網(wǎng)絡(luò)以便進(jìn)行網(wǎng)絡(luò)訪問 ifconfig eth0 192.168.1.20 broadcast 192.168.1.255 netmask 255.255.255.0

6.添加網(wǎng)關(guān) route add default gw 192.168.1.1

7.進(jìn)行域名服務(wù)器的配置 nano /etc/resolv.conf

注:假如在虛擬機(jī)里安裝,設(shè)置虛擬機(jī)聯(lián)網(wǎng)方式為net,然后這里設(shè)置聯(lián)網(wǎng)自動(dòng)獲取就行,輸入dhcpcd

8.開始進(jìn)行分區(qū) fdisk /dev/hda,輸入p查看信息,輸入d刪除信息

9.開始建立啟動(dòng)分區(qū) 輸入的命令為n,p,1,+128M

10.開始建立linux的交換區(qū),輸入的命令為n,p,2,+1024M,t,2,82

11.創(chuàng)建根分區(qū),輸入的命令為n,p,3

12.開始將分區(qū)信息寫入,輸入的命令為w

13.格式化文件系統(tǒng) mkfs.ext4 /dev/hda1;

mkfs.ext4 /dev/hda3;

14.開始格式化分區(qū) mkswap /dev/hda2

15.開始激活分區(qū) swapon /dev/hda2

16.開始掛載文件系統(tǒng)   mount /dev/hda3    /mnt/gentoo

mkdir /mnt/gentoo/boot

mount /dev/hda1     /mnt/gentoo/boot

17.開始設(shè)置時(shí)間,以確保安裝正確 date MMDDhhmmYYYY;(Month, Day, hour, minute and Year); date 020316212013

18.使用uname -m 來查看需要下載哪種類型的stage

19.進(jìn)入gentoo的掛載點(diǎn) cd mnt/gentoo

20.使用links

http://mirrors.163.com/gentoo/releases/x86/current-stage3/(其他鏡像網(wǎng)址也行)

,從中選擇一個(gè)鏡像,來找到stage信息,在實(shí)際安裝過程中使用了

http://ftp.ncnu.edu.tw/Linux/Gentoo/releases/x86/2007.0/stages/

這個(gè)地址來獲取stage包,將光標(biāo)移到上面后按D選擇下載

21.選擇了stage3-i686-2007.0.tar.bz2 包下載

22.開始解壓stage包tar xvjpf stage3-*.tar.bz2

23.開始下載最新的 Portage 快照,操作的方法同上,實(shí)際下載地址為

http://ftp.ncnu.edu.tw/Linux/Gentoo/releases/snapshots/2007.0/

24.開始解壓portage快照,tar xvjf /mnt/gentoo/portage-2007.0.tar.bz2 -C /mnt/gentoo/usr

25.編譯參數(shù)不需要進(jìn)行修改 make.conf

26.使用工具來進(jìn)行鏡像站點(diǎn)的選擇,以便快速下載源代碼 mirrorselect -i -o >> /mnt/gentoo/etc/make.conf,使用空格進(jìn)行選擇

27.開始選擇更新的鏡像站點(diǎn) mirrorselect -i -r -o >> /mnt/gentoo/etc/make.conf

28.開始拷貝域名解析信息,以備新的系統(tǒng)能夠正常訪問外部 cp -L /etc/resolv.conf /mnt/gentoo/etc/resolv.conf

29.開始掛載虛擬的分區(qū) mount -t proc none /mnt/gentoo/proc;mount -o bind /dev /mnt/gentoo/dev

30.開始進(jìn)入新的安裝環(huán)境chroot /mnt/gentoo /bin/bash;env-update;source /etc/profile;export PS1="(chroot) $PS1"

31.開始更新portage樹,emerge --sync 需要的時(shí)間比較的長

32.開始選擇正確的屬性配置文件,ls -FGg /etc/make.profile,一般不需要做特殊修改

33.開始設(shè)置正確的USE變量,less /usr/portage/profiles/use.desc;nano -w /etc/make.conf;USE="-gtk -gnome qt3 qt4 kde dvd alsa     cdr"

34.開始設(shè)置本地的語言環(huán)境,nano -w /etc/locale.gen;locale-gen

35.開始設(shè)置時(shí)區(qū)ls /usr/share/zoneinfo;cp /usr/share/zoneinfo/UTC /etc/localtime 一定要設(shè)置成UTC時(shí)區(qū)

36.開始安裝核心emerge gentoo-sources

37.開始生成配置菜單,先進(jìn)入核心源代碼路徑cd /usr/src/linux;make menuconfig

38.開始編譯核心源代碼,make && make modules_install

39.開始安裝內(nèi)核cp arch/i386/boot/bzImage /boot/kernel-2.6.19-gentoo-r5

40.開始配置自啟動(dòng)模塊nano -w /etc/modules.autoload.d/kernel-2.6

41.開始創(chuàng)建文件分區(qū)表nano -w /etc/fstab

42.開始設(shè)置本機(jī)的主機(jī)名nano -w /etc/conf.d/hostname

43.開始配置網(wǎng)絡(luò)環(huán)境nano -w /etc/conf.d/net

44.開始設(shè)置網(wǎng)卡開機(jī)自啟動(dòng)rc-update add net.eth0 default

45.開始配置主機(jī)信息nano -w /etc/hosts

46.改變r(jià)oot用戶的密碼passwd

47.開始安裝相應(yīng)的工具軟件grub,emerge grub

48.開始編寫相應(yīng)的啟動(dòng)引導(dǎo)文件 nano -w /boot/grub/grub.conf

49.執(zhí)行命令grep -v rootfs /proc/mounts > /etc/mtab

50.執(zhí)行命令grub-install --no-floppy /dev/hda

51.系統(tǒng)編譯完成進(jìn)行收尾工作exit;cd;umount /mnt/gentoo/boot /mnt/gentoo/dev /mnt/gentoo/proc /mnt/gentoo;

52.reboot

至此就完成了gentoo linux的安裝了!
 

熱門評(píng)論
最新評(píng)論
發(fā)表評(píng)論 查看所有評(píng)論(0)
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字?jǐn)?shù): 0/500 (您的評(píng)論需要經(jīng)過審核才能顯示)