博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Gentoo安装详解(一) -- 安装基本系统
阅读量:6573 次
发布时间:2019-06-24

本文共 2492 字,大约阅读时间需要 8 分钟。

前期准备

远程登录:

  • 开启ssh服务:

/etc/init.d/sshd start
  • 设置密码:

passwd

以便使用putty、ssh client远程登录上传stage等(有时在线下载很慢,而局域网上传很快)

准备磁盘:

  • 分区:

fdisk /dev/sda

/dev/sda1 : /boot 100M(32-100M) 设启动笔记-a

/dev/sda2 : / 20G

/dev/sda3 : /home 20G
/dev/sda5 : /swap 1G (内存< 512 MB,分区分配2倍内存大小的空间;> 1024 MB,可以分配较少的空间甚至不需要swap 分区。)-t 82

  • 创建文件系统:

mkfs.ext4 /dev/sda1mkfs.ext4 /dev/sda2mkfs.ext4 /dev/sda3mkswap /dev/sda5
  • 挂载分区:

mount /dev/sda2 /mnt/gentoomkdir /mnt/gentoo/bootmount /dev/sda1 /mnt/gentoo/bootmkdir /mnt/gentoo/homemount /dev/sda3 /mnt/gentoo/homeswapon /dev/sda5

安装系统

安装stage及portage:

  • 正确设置日期/时间:

date

如果显示的日期/时间不正确,可以使用date MMDDhhmmYYYY命令

  • 下载Stage3 Tarbll:

cd /mnt/gentoolinks 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.confmirrorselect -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/procmount --rbind /dev /mnt/gentoo/devmount --rbind /sys /mnt/gentoo/sys
  • 进入新的系统环境:

chroot /mnt/gentoo /bin/bashsource /etc/profileexport PS1="(chroot) $PS1"

新环境配置:

  • 更新portage树:

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

eselect profile listeselect profile set ×
  • 设置时区:

ls /usr/share/zoneinfoecho "Europe/Brussels" > /etc/timezoneemerge --config sys-libs/timezone-data
  • 设置locale:

nano -w /etc/locale.genlocale-geneselect locale listeselect locale set x
  • 更新环境变量:

env-update && source /etc/profile

转载地址:http://pfmjo.baihongyu.com/

你可能感兴趣的文章
互联网架构师必备技术 Docker仓库与Java应用服务动态发布那些事
查看>>
Intellij IDEA 2018.2 搭建Spring Boot 应用
查看>>
SNMP AGENT函数介绍
查看>>
Git提交到多个远程仓库(多看两个文档)
查看>>
期末大作业
查看>>
[Usaco2005 Open]Disease Manangement 疾病管理 BZOJ1688
查看>>
【Android视图效果】分组列表实现吸顶效果
查看>>
title: postGreSQL 插件 timescaleDB 安装使用 date: 2019-02-14 18:02:23
查看>>
并发容器与框架——并发容器(一)
查看>>
网络编程socket
查看>>
学界 | 伯克利最新研究:用算法解决算法偏差?公平机器学习的延迟影响
查看>>
多文件上传示例源码(默认支持各种类型,包括图片)
查看>>
JS 中如何判断 undefined 和 null
查看>>
9.2. CentOS 区域设置
查看>>
命令行基本操作学习笔记(一)
查看>>
「试着读读 Vue 源代码」工程目录及本地运行(断点调试)
查看>>
Oracle——16用户、角色和权限
查看>>
获得系统属性
查看>>
从0实现NavigationController
查看>>
A Visual Git Reference
查看>>