Gentoo安裝筆記(part3

2021-05-02 22:13:28 字數 1466 閱讀 1470

此安裝筆記是按照gentoo中文手冊上實際操作記下來的,使用的是宿主機ubuntu9.04+virtualbox3.04,在virtualbox3.04中按預設屬性建立了乙個gentoo虛擬機器。使用gentoo-minimal映像檔案安裝。

6.開始安裝gentoo

1)選擇乙個合適的映象站點

#mirrorselect -i -o >>/mnt/gentoo/etc/make.conf

-i    interactive    互動模式

-o    output    輸出到

或者自己新增乙個想要的站點,使用變數gentoo_mirrors定義

#mirrorselect -i -r -o >>/mnt/gentoo/etc/make.conf

選擇乙個同步伺服器

2)拷貝dns資訊

#cp -l /etc/resolv.conf /mnt/gentoo/etc/

-l    引數確保我們拷貝的不是乙個符號鏈結。

注意,前者/etc/resolv.con代表當前執行的livecd中的目錄,而後者是我們即將要切換chroot過去的gentoo目錄。

3)掛載/proc和/dev檔案系統

#mout -t proc none /mnt/gentoo/proc

將系統中的/proc檔案系統掛載到gentoo中,以便切換過後仍然可以使用

#mount -o bind /dev /mnt/gentoo/dev

繫結/dev系統到/mnt/gentoo/dev

4)切換到新的系統環境/mnt/gentoo

#chroot /mnt/gentoo /bin/bash

#env-update

>>regenerating /etc/ld.so.cache...

重新生成ld.so.cache,這個是管理動態鏈結庫的

#source /etc/profile

#export ps1="(chroot) $ps1"    這步是可選的,只是修改以下ps1變數。

5)配置portage

#emerge --sync [--quiet]或

#emerge-webrsync或如果有乙個新的portage的話

#emerge --oneshot portage

更新portage到最新版本,這個就像sudo apt-get update一樣

第一步:驗證profile

#ls -fgg /etc/make.profile

#cd !$/desktop

#cat make.defaults    在這個檔案中有個極其重要的變數use。這個檔案預設的use="esd qt3"說明編譯的軟體將支援esd和qt3,如果想要支援gnome等可以

use="gnome gtk -kde -qt3 -qt4「這樣將不支援kde,qt3,qt4

絕對不要改變/etc/make.profile中的任何東西,它會在更新時被覆蓋掉。

Python學習筆記 part 3

ide vscode python版本 python3.6 學習教材 python程式設計從入門到實踐 人民郵電出版社 操作列表 for a in b 構建了python的for迴圈,迴圈方式為每次從列表b中取出乙個元素存入a。例如 idiols chen ju liu for idiol in i...

JS筆記 part3(物件導向)

物件導向的本質是對面向過程的封裝 物件導向三大特徵 封裝 繼承 多型將某個具體功能封裝在物件中,對外部暴露指定的介面,外界使用時無需考慮內部是如何實現的 function person name,age,country var person1 newperson lin 30 china conso...

關於除錯 part 3

歡迎喜歡交流和熱心的iphone開發朋友加入qq群參與討論 186739796,驗證碼 csdn。常見錯誤收集貼 方法名錯誤 product edit scheme,在environment varibles中 新增 nszombieenabled yes 最後結果 關於出現殭屍訊號sigbat或者...