Gentoo安裝詳解(一) -- 安裝基本系統

前期準備

遠程登陸:

  • 開啓ssh服務:web

/etc/init.d/sshd start
  • 設置密碼:瀏覽器

passwd

以便使用putty、ssh client遠程登陸上傳stage等(有時在線下載很慢,而局域網上傳很快)bash

準備磁盤:

  • 分區:app

fdisk /dev/sda

/dev/sda1 : /boot 100M(32-100M) 設啓動筆記-assh

/dev/sda2 : / 20G
/dev/sda3 : /home 20G
/dev/sda5 : /swap 1G (內存< 512 MB,分區分配2倍內存大小的空間;> 1024 MB,能夠分配較少的空間甚至不須要swap 分區。)-t 82fetch

  • 建立文件系統:ui

mkfs.ext4 /dev/sda1
mkfs.ext4 /dev/sda2
mkfs.ext4 /dev/sda3
mkswap /dev/sda5
  • 掛載分區:code

mount /dev/sda2 /mnt/gentoo
mkdir /mnt/gentoo/boot
mount /dev/sda1 /mnt/gentoo/boot
mkdir /mnt/gentoo/home
mount /dev/sda3 /mnt/gentoo/home
swapon /dev/sda5

安裝系統

安裝stage及portage:

  • 正確設置日期/時間:xml

date

若是顯示的日期/時間不正確,能夠使用date MMDDhhmmYYYY命令ip

  • 下載Stage3 Tarbll:

cd /mnt/gentoo
links http://www.gentoo.org/main/en/mirrors.xml

選擇國內速度較快的鏡像,進入releases/x86/autobuilds/目錄裏。你將會看到全部適合你的計算機體系結構的stage文件(它們也可能放在各個獨立的子體系名稱的子目錄裏)。選擇一個,而後按D來下載。下載完之後,再按Q退出瀏覽器。

或使用SSH Secure Shell登陸上傳stage3文件

  • 解開Stage3 Tarball:

tar xvjpf stage3-*.tar.bz2
  • 下載Portage:
    打開links(或者lynx)而後到咱們的Gentoo鏡像列表。選擇一個離你最近的鏡像,打開snapshots/目錄。而後選擇最新的Portage快照(portage-latest.tar.bz2)並按D來下載它。

links http://www.gentoo.org/main/en/mirrors.xml

或使用SSH Secure Shell登陸上傳portage文件

  • 解壓Portage:

tar -xvjf /mnt/gentoo/portage-latest.tar.bz2 -C /mnt/gentoo/usr (install a Portage snapshot)

編譯前準備:

  • 配置編譯選項:

nano -w /mnt/gentoo/etc/portage/make.conf

CFLAGS="-march=native -O2 -pipe"

CXXFLAGS="${CFLAGS}" # 兩個變量使用相同的設置
MAKEOPTS="-j3" #MAKEOPTS定義在安裝軟件的時候同時能夠產生並行編譯的數目,CPU數目加一是個不錯的選擇

  • 查看cpu信息:

cat proc/cpuinfo
  • 選擇鏡像站點:

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

Warning:[app-portage/mirrorselect]() has not been updated to handle modifying the target chrootsrepos.conf/gentoo.conf file yet. Also, the SYNC variable in make.conf is deprecated and no longer used by portage. This section needs to be updated, please skip for the time being...

  • 拷貝DNS信息:

cp -L /etc/resolv.conf /mnt/gentoo/etc/

Chroot進入新系統環境:

Chroot:

  • 掛載 /proc, /dev, /sys文件系統:

mount -t proc none /mnt/gentoo/proc
mount --rbind /dev /mnt/gentoo/dev
mount --rbind /sys /mnt/gentoo/sys
  • 進入新的系統環境:

chroot /mnt/gentoo /bin/bash
source /etc/profile
export PS1="(chroot) $PS1"

新環境配置:

  • 更新portage樹:

emerge --sync (Updating the Portage tree)
或
emerge-webrsync(fetch the latest portage snapshot)
  • 選擇Profile:

eselect profile list
eselect profile set ×
  • 設置時區:

ls /usr/share/zoneinfo
echo "Europe/Brussels" > /etc/timezone
emerge --config sys-libs/timezone-data
  • 設置locale:

nano -w /etc/locale.gen
locale-gen
eselect locale list
eselect locale set x
  • 更新環境變量:

env-update && source /etc/profile
相關文章
相關標籤/搜索