前言
很多厂商没有吧文件系统的构建方法开源出来,只是提供了一个rootfs.img的固件包,这不利于我们做二次开发,本文章实现一个本身构建的文件系统,并移植到RK的平台上使用
一、官网下载ubuntu-base
http://cdimage.ubuntu.com/ubuntu-base/releases/
本文章使用的是:buntu-base-20.04.5-base-arm64.tar.gz
解压:
- mkdir ubuntu_rootfs
- tar -zxvf ubuntu-base-20.04.5-base-arm64.tar.gz -C ubuntu_rootfs
复制代码 二、挂载并构建文件系统
2.1、配置构建文件系统环境
配置网络配置
- cp /etc/resolv.conf ubuntu_rootfs/etc/
复制代码 配置仿真开发环境
- sudo apt install qemu-user-static
复制代码- sudo cp /usr/bin/qemu-aarch64-static ubuntu_rootfs/usr/bin/
复制代码 更换软件源
- sudo vim ubuntu_rootfs/etc/apt/sources.list
复制代码- deb http://mirrors.aliyun.com/ubuntu-ports/ focal main restricted
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-updates main restricted
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal universe
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-updates universe
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal multiverse
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-updates multiverse
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-backports main restricted universe multiverse
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-security main restricted
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-security universe
- deb http://mirrors.aliyun.com/ubuntu-ports/ focal-security multiverse
复制代码 2.2、编写挂载脚本mount.sh并安装相关工具
挂载根文件系统运行需要的装备和目次
- #!/bin/bash
- function mnt() {
- echo "MOUNTING"
- sudo mount -t proc /proc ${2}proc
- sudo mount -t sysfs /sys ${2}sys
- sudo mount -o bind /dev ${2}dev
- #sudo mount -t devpts -o gid=5,mode=620 devpts ${2}dev/pts
- sudo mount -o bind /dev/pts ${2}dev/pts
- sudo chroot ${2}
- }
- function umnt() {
- echo "UNMOUNTING"
- sudo umount ${2}proc
- sudo umount ${2}sys
- sudo umount ${2}dev/pts
- sudo umount ${2}dev
- }
- if [ "$1" == "-m" ] && [ -n "$2" ];
- then
- mnt $1 $2
- elif [ "$1" == "-u" ] && [ -n "$2" ];
- then
- umnt $1 $2
- else
- echo ""
- echo "Either 1'st, 2'nd or both parameters were missing"
- echo ""
- echo "1'st parameter can be one of these: -m(mount) OR -u(umount)"
- echo "2'nd parameter is the full path of rootfs directory(with tralling '/')"
- echo ""
- echo "For example: ch-mount -m /media/sdcard"
- echo ""
- echo 1st parameter : ${1}
- echo 2nd parameter : $[2]
- fi
复制代码 添加执行权限并挂载文件系统
- sudo chmod +x mount.sh
- ./mount.sh -m ubuntu_rootfs/
复制代码 挂载之后,开始安装文件系统中须要的一些软件
- apt install sudo vim udev net-tools ethtool udhcpc netplan.io language-pack-en-base language-pack-zh-han* iputils-ping openssh-sftp-server ntp usbutils alsa-utils libmtp9
复制代码 安装的过程中会让你选择地区和时区
亚洲地区选择:6,Asia
中国时区选择:70,Shanghai
等待编译完成即可
2.3、轻量级的桌面环境 lubuntu-desktop
嵌入式平台选择轻量级的桌面环境lubuntu-desktop安装
- apt install lubuntu-desktop
复制代码 2.4、卸载一些不须要的软件
- apt-get remove --purge lubuntu-update-notifier
复制代码- apt-get remove --purge libreoffice*
复制代码 2.5、添加用户
舔加用户
增加管理员权限
2.6 、允许root用户登录桌面
设置允许root用户登录桌面
- vim /etc/gdm3/custom.conf
复制代码 添加
- AutomaticLoginEnable = true
- AutomaticLogin = ubuntu
- AllowRoot=true
复制代码 如图
- vim /etc/pam.d/gdm-password
复制代码 表明:#auth required pam_succeed_if.so user != root quiet_success
- #%PAM-1.0
- auth requisite pam_nologin.so
- #auth required pam_succeed_if.so user != root quiet_success
- @include common-auth
- auth optional
复制代码- vim /etc/lightdm/lightdm.conf.d/20-autologin.conf
复制代码 在autologin-user中修改成本身的用户名
- [Seat:*]
- #autologin-guest=false
- #autologin-user=magiclen
- #autologin-user-timeout=0
- user-session=Lubuntu
- autologin-user=ubuntu
- greeter-show-manual-login=true
复制代码 2.7、串口主动登录
- vim /lib/systemd/system/serial-getty\@.service
复制代码 表明:ExecStart=-/sbin/agetty -o ‘-p – \u’ --keep-baud 115200,38400,9600 %I $TERM
修改:ExecStart=-/sbin/agetty --autologin root --noclear %I $TERM
- [Service]
- # The '-o' option value tells agetty to replace 'login' arguments with an
- # option to preserve environment (-p), followed by '--' for safety, and then
- # the entered username.
- #ExecStart=-/sbin/agetty -o '-p -- \\u' --keep-baud 115200,38400,9600 %I $TERM
- ExecStart=-/sbin/agetty --autologin root --noclear %I $TERM
- Type=idle
- Restart=always
- UtmpIdentifier=%I
- TTYPath=/dev/%I
- TTYReset=yes
- TTYVHangup=yes
- KillMode=process
- IgnoreSIGPIPE=no
- SendSIGHUP=yes
复制代码 末了关闭主动休眠
- sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
复制代码 2.8、开机卡“A start job is running for wait for network to be Configured”的解决方法
打开:
- vim /etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service
复制代码 修改:
- - ExecStart=/usr/bin/nm-online -s -q --timeout=30
- + ExecStart=/usr/bin/nm-online -s -q --timeout=0
复制代码 2.9、添加分区开释的系统服务(重要)
通过实行,rootfs分区烧录后,只有固件本身巨细,需要做分区开释
- vim etc/init.d/resize2fs.sh
复制代码- #!/bin/bash -e
- # resize filesystem mmcblk0p6
- if [ ! -e "/usr/local/boot_flag" ] ;
- then
- echo "Resizing /dev/mmcblk0p6..."
- resize2fs /dev/mmcblk0p6
- touch /usr/local/boot_flag
- fi
复制代码 添加执行权限
- chmod +x etc/init.d/resize2fs.sh
复制代码 创建服务去运行脚本
- vim lib/systemd/system/resize2fs.service
复制代码- #start
- [Unit]
- Description=Setup rockchip platform environment
- Before=lightdm.service
- After=resize-helper.service
- [Service]
- Type=simple
- ExecStart=/etc/init.d/resize2fs.sh
- [Install]
- WantedBy=multi-user.target
- #end
复制代码 #退出根文件系统
#卸载挂载的根文件系统
- ./mount.sh -u ubuntu_rootfs/
复制代码 三、制作文件系统rootfs分区固件
3.1、创建一个空镜像文件
- dd if=/dev/zero of=ubuntu_rootfs.img bs=1M count=8192
复制代码 将该文件格式化为ext4文件系统
- mkfs.ext4 ubuntu_rootfs.img
复制代码 3.2、将镜像文件挂载到空文件
- chmod 777 ubuntu_base_rootfs
复制代码- mount ubuntu_rootfs.img ubuntu_base_rootfs
复制代码- cp -rfp ubuntu_rootfs/* ubuntu_base_rootfs/
复制代码- umount ubuntu_base_rootfs/
复制代码 3.3、修复及检测镜像文件系统
修复及检测镜像文件系统
- e2fsck -p -f ubuntu_rootfs.img
复制代码 resize2fs减小镜像文件的巨细,上述的2.8小节中的开释rootfs分区巨细与这里减少文件巨细相关。
- resize2fs -M ubuntu_rootfs.img
复制代码 检察巨细
- rootfs# du -sh ubuntu_rootfs.img
- 5.0G ubuntu_rootfs.img
复制代码 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |