OrangePiPC替代法完成Gentoo映象製作
-
Gentoo 是屬於’極為簡潔優秀超可定製性的類Unix’的Linux..
Gentoo包管理系統的設計是模組化、可移植、易維護、靈活以及針對使用者機器優化的。Gentoo維基百科 -
很多人遇到Gentoo,都會選擇放棄,折騰的話,很費力氣的,從頭到尾都是去編譯。但是用Gentoo的玩家,都會蔑視用 Ubuntu的使用者,覺得他們太低端了。
-
今天我們不從編譯的角度去構建 Gentoo For OrangePi PC,如果你想在你的樹莓派上跑Gentoo,Gentoo官方還是提供了供樹莓派使用的映象。
-
先決條件:
- 儲存卡(至少4G,更好8G以上)
- OrangePi PC的Linux SD卡映象(官方或者Armbian的都行)
- Gentoo armv7a_hardfp stage3映象 或者本地映象的portage樹的當前快照
-
準備SD卡
- 我們需要將引導載入程式和核心從映像傳輸到SD卡。引導載入程式駐留在第一個分割槽之前的未分割槽空間中,核心駐留在第一個分割槽中。
-
複製引導載入程式和核心
- 如果壓縮影像,請解壓縮。我們假設該影像稱為Debian_jessie_mini.img,SD卡是/ dev / sdb。根據需要調整以配合您的配置。看影像分割槽結構:
root #fdisk -l Debian_jessie_mini.img
Disk Debian_jessie_mini.img: 809 MiB, 848297984 bytes, 1656832 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x9c2e57c2
Device Boot Start End Sectors Size Id Type
Debian_jessie_mini.img1 40960 172031 131072 64M b W95 FAT32
Debian_jessie_mini.img2 172032 1656832 1484801 725M 83 Linux
在這種情況下,我們將直接複製影像,直到引導分割槽結束到microSD卡。
root #dd if=Debian_jessie_mini.img of=/dev/sdb count=172032
接下來,我們將刪除上一個根分割槽的分割槽表條目,然後建立新的根和可選的交換分割槽。
root #fdisk /dev/sdb
Welcome to fdisk (util-linux 2.26.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): d
Partition number (1,2, default 2): 2
Partition 2 has been deleted.
Command (m for help): n
Partition type
p primary (1 primary, 0 extended, 3 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (2-4, default 2): 2
First sector (2048-32372735, default 2048): 172032
Last sector, +sectors or +size{K,M,G,T,P} (2048-32372735, default 32372735):
(choose here the size for your root partition, repeat with the swap partition if you want one, then set the appropriate partition types)
Command (m for help): w
- 設定根分割槽
我們假設根分割槽是/ dev / sdb2,交換分割槽是/ dev / sdb3。
使用標籤“linux”和交換空間建立根檔案系統。
root #mkfs.ext4 -L linux /dev/sdb2
root #mkswap /dev/sdb3
- 將Gentoo安裝到SD卡
安裝根分割槽並提取stage3 tarball和portage快照。
root #mkdir /mnt/opipc
root #mount /dev/sdb2 /mnt/opipc
root #tar xfa stage3-armv7a_hardfp-????????.tar.bz2 -C /mnt/opipc
root #tar xfa portage-latest.tar.xz -C /mnt/opipc/usr
如果原始的Linux映像支援多個電路板,請安裝引導分割槽,併為Orange Pi PC選擇正確的uImage和script.bin。
root #mount /dev/sdb1 /mnt/opipc/boot
root #cp /mnt/opipc/boot/script.bin.OPI-PC_1080p60 /mnt/opipc/boot/script.bin
root #cp /mnt/opipc/boot/uImage_OPI-2 /mnt/opipc/boot/uImage
現在從影像中提取核心模組並將其複製到Gentoo系統中:
root #mkdir /mnt/opipc_image
root #mount -o loop,offset=$((172032*512)) Debian_jessie_mini.img /mnt/opipc_image
root #cp -a /mnt/opipc_image/lib/modules /mnt/opipc/lib
- 最後完成配置
- 編輯 fstab
/ dev / mmcblk0p1 / boot vfat umask = 033 1 2
/ dev / mmcblk0p2 / ext4 defaults 0 1
/ dev / mmcblk0p3 none swap sw 0 0
- 設定root密碼
root #sed -i "s|root:*|root:$(openssl passwd -1)|" /mnt/opipc/etc/shadow
Password:
Verifying - Password:
- 在make.conf中設定編譯器並生成標誌
CFLAGS="-O2 -pipe -march=armv7ve -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -mtune=cortex-a7"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j4"
- 要通過除錯ttl uart工作,請更改
s0:12345:respawn:/ sbin / agetty -L 9600 ttyS0 vt100
至
s0:12345:respawn:/ sbin / agetty -L -f /etc/issue.logo 115200 ttyS0 vt100
- 現在解除安裝所有內容,將SD卡插入Orange Pi PC,然後開啟電源。
相關文章
- 製作KubeVirt映象
- 製作Docker映象Docker
- proxmox映象製作
- Dockerfile映象的製作Docker
- Docker製作jdk映象DockerJDK
- Docker 映象製作方法Docker
- oracle製作docker映象OracleDocker
- YashanDB Docker映象製作Docker
- Docker二所映象製作Docker
- alpine 製作 PHP 環境映象PHP
- 自己製作redis 和mongo 映象RedisGo
- Linux 製作系統映象Linux
- docker 製作與使用 arcgisserver 映象DockerServer
- Dokcer製作nginx映象,提交映象至倉庫Nginx
- 樹莓派製作映象並縮小映象尺寸樹莓派
- Docker如何製作映象-Dockerfile的使用Docker
- 伺服器:如何製作docker映象伺服器Docker
- 製作容器映象的最佳實踐
- OpenStack 映象製作之cloud-initCloud
- 使用 Caddy 製作前端 Docker 映象前端Docker
- [zz]為 OpenStack Nova 製作 Ubuntu 映象Ubuntu
- Logo如何設計製作?線上製作logo一分鐘完成!Go
- Docker 入門系列四:Dockerfile-映象製作Docker
- 製作 Python Docker 映象的最佳實踐PythonDocker
- docker製作自己的映象並上傳dockerhubDocker
- 無需依賴Docker環境製作映象Docker
- cnetos7 ISO 映象自定義製作
- 映象的製作CMD與ENTRYPOINT區別
- 如何製作ISO映象檔案?專業級ISO映象檔案製作工具AnyToISO Pro
- 怎樣製作win10的iOS映象安裝U盤_製作win10 iso映象安裝U盤教程Win10iOS
- 製作Windows 11與M365的整合映象Windows
- MovieMator Video Editor教會你製作映象效果影片IDE
- 使用Docker搭建WordPress部落格(三)nginx映象製作DockerNginx
- openstack 之 windows server 2008映象製作WindowsServer
- Ubuntu Core:製作包含私有 snap 的工廠映象Ubuntu
- 自編譯製作docker版本的onlyoffice映象編譯Docker
- QNX 如何製作目標系統,製作系統映象,燒寫系統檔案
- win10原版ISO映象如何製作安裝光碟_製作win10原版ISO映象安裝光碟圖文詳解Win10