系统采用CentOS 7 ,下载的是MINI版,所以环境都需要安装一遍。

个人对安装过程中的一些问题,做了些解决和处理。

原文地址:鲲鹏BoostKit ARM原生使能套件_安卓模拟器方案_安卓模拟器 安装指南(CentOS 7.6)_配置运行环境_华为云emulator源码默认使用4KB的PAGE_SIZE,而CentOS 7.6默认内核使用的PAGE_SIZE为64KB,如果不修改,则当Android内存分配超过2GB时,会导致安卓模拟器崩溃。如果PAGE_SIZE大小为4096,则无需执行本小节其余步骤,否则请执行后续步骤重新编译内核。选择“Kernel Features”。选择“Phttps://support.huaweicloud.com/dpmg-kunpengcps/kunpengandroid_CentOS_03_0013.html

一、打开最大打开文件数限制文件。

vi /etc/security/limits.conf

加入以下:

root   soft    nofile          65535
root   hard    nofile          65535
*   soft    nofile          65535
*   hard    nofile          65535

二、配置SSH服务

修改配置文件“/etc/ssh/sshd_config”,将“#PermitRootLogin yes”前边的#号去掉

执行以下:

systemctl restart sshd

三、修改系统时间

查看系统本地时间

date

查看硬件时间

hwclock --show

设置硬件时间

hwclock --set --date '2021-12-26  16:35:20'

设置系统本地时间和硬件时间同步

hwclock  --hctosys

保存时钟

clock -w

重启系统让修改生效

reboot

四、更新yum缓存

yum clean all
yum makecache

五、预安装编译依赖包

yum -y install xorg-x11-util-macros xorg-x11-drv* llvm-devel lm_sensors-devel wayland-protocols-devel libva-devel mesa-libgbm-devel
yum -y install openssl-libs.aarch64 bzip2 numactl libffi-devel zlib-devel.aarch64 libdrm-devel.aarch64 m4.aarch64
yum -y install glx-utils freeglut-devel libva-devel.aarch64 expat-devel.aarch64 libxshmfence-devel.aarch64 libXrandr-devel elfutils-libelf-devel

六、安装和检查GCC版本

gcc --version

这里有坑:7的精简版安装后,是没有GCC的,所以要自己安装,模拟器的安装GCC后续编译版本要求在5.0以上,我这里提供几个可以参考安装

安装7.3

yum -y install centos-release-scl
yum -y install devtoolset-7-gcc devtoolset-7-gcc-c++ devtoolset-7-binutils
#立即生效
scl enable devtoolset-7 bash
#永久生效
echo "source /opt/rh/devtoolset-7/enable" >>/etc/profile

安装8.3

yum -y install centos-release-scl
yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-binutils
scl enable devtoolset-7 bash
#永久生效
echo "source /opt/rh/devtoolset-8/enable" >>/etc/profile

安装9.3

yum -y install centos-release-scl
yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils
scl enable devtoolset-9 bash
echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile

七、安装openssl

  1. 下载源码。
wget https://www.openssl.org/source/openssl-1.1.1a.tar.gztar -zxvf openssl-1.1.1a.tar.gzcd openssl-1.1.1a/
  1. 编译安装。
./config --prefix=/usr/local/openssl no-zlibmake -j32make install
  1. 删除原始文件。
rm -rf /usr/bin/opensslrm -rf /usr/include/openssl
  1. 创建软链接。
ln -s /usr/local/openssl/include/openssl /usr/include/opensslln -s /usr/local/openssl/lib/libssl.so.1.1 /usr/local/lib64/libssl.soln -s /usr/local/openssl/bin/openssl /usr/bin/opensslln -s /usr/local/openssl/lib/libcrypto.so.1.1 /usr/local/lib64/libcrypto.so
  1. 更新库链接。 echo "/usr/local/openssl/lib" >> /etc/ld.so.conf ldconfig -v
  2. 检查版本号。
[root@localhost ~]# openssl versionOpenSSL 1.1.1a  20 Nov 201

问题:openssl需要 Perl5,以下是P5安装

#第一种YUM安装
#查看可安装的perl包
yum list perl
#安装
yum install perl-xxx


#下载
wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz
#解压
tar -xzf perl-5.28.0.tar.gz
cd perl-5.28.0
#运行配置文件
./Configure -des -Dprefix=$HOME/localperl
#编译
make
#编译测试
make test
#编译按照
make install

八、修改PAGE_SIZE

emulator源码默认使用4KB的PAGE_SIZE,而CentOS 7.6默认内核使用的PAGE_SIZE为64KB,如果不修改,则当Android内存分配超过2GB时,会导致安卓模拟器崩溃。

  1. 检查系统默认PAGE_SIZE大小。
[root@localhost ~]# getconf PAGE_SIZE65536
  1. 注意:

如果PAGE_SIZE大小为4096,则无需执行本小节其余步骤,否则请执行后续步骤重新编译内核。

  1. 下载内核源码。
wget https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.3.tar.xz --no-check-certificatetar xf linux-5.3.tar.xzcd linux-5.3/
  1. 生成.config文件。
make menuconfig
  1. 配置PAGE_SIZE为4KB。
  1. 选择“Kernel Features”。
  2. 选择“Page size”。
  3. 选择“4KB”。
  1. 修改.config文件。 注释掉certs/centos.pem所在行。
  2. 编译安装。
    注意: 编译内核的时候,不要做其他操作,否则有可能引发未知的编译失败,需要从头开始。
make -j64make modules -j64make modules_install -j64make install
  1. 替换默认启动内核。
  1. 获取已存在内核版本。
cat /boot/efi/EFI/centos/grub.cfg | grep menuentry
  1. 选择对应内核版本,设置成默认启动内核。
grub2-set-default "CentOS Linux (5.3.0) 7 (AltArch)"
  1. 查询默认启动内核版本是否已被替换。
grub2-editenv list
  1. 重启系统让修改生效。

reboot

九、安装x11vnc

  1. 下载x11vnc源码。
wget http://sourceforge.net/projects/libvncserver/files/x11vnc/0.9.13/x11vnc-0.9.13.tar.gztar xvf x11vnc-0.9.13.tar.gzcd x11vnc-0.9.13/


  1. 编译安装。
./configure --build=armmake -j32make install

我的系统在执行 ./configure --build=arm的时候 会出一个错误,也没什么具体提示。我就执行了下面的命令,算是通过了,好不好用还不知道,主要是对LINUX一知半解,惭愧至极。

.、configure --without-x

十、安装cmake

  1. 下载源码。
wget https://cmake.org/files/v3.9/cmake-3.9.2.tar.gztar zxvf cmake-3.9.2.tar.gzcd cmake-3.9.2
  1. 编译安装。
./bootstrapmake -j32make install

十一、升级llvm

centos挂安卓 安卓手机装centos7_python

 精简版果然什么都没有。

  1. 检查llvm版本。
llvm-config --version
  1. 注意:

请确保llvm的版本在10.0.0和11.0.0之间。

  1. 获取源码。
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.1/llvm-10.0.1.src.tar.xzwget https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.1/clang-10.0.1.src.tar.xzwget https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.1/compiler-rt-10.0.1.src.tar.xz
  1. 搭建构建目录。
tar xf llvm-10.0.1.src.tar.xzcd llvm-10.0.1.src/toolscp -rf ../../clang-10.0.1.src.tar.xz ./tar xf clang-10.0.1.src.tar.xzmv clang-10.0.1.src clangcd ../projectscp -rf ../../compiler-rt-10.0.1.src.tar.xz ./tar xf compiler-rt-10.0.1.src.tar.xzmv compiler-rt-10.0.1.src compiler-rtcd ..
  1. 编译安装。
mkdir buildcd buildcmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=yes -DLLVM_ENABLE_RTTI=yes --enable-optimized --enable-targets=host-only ../cmake --build . -- -j64make install
  1. 更新库链接。
echo "/usr/local/lib" >> /etc/ld.so.confldconfig -v

十二、安装或升级

  1. 检查当前环境Python版本,要求使用python3版本。
python --version
  1. 下载源码。
wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgztar zxvf Python-3.7.0.tgzcd Python-3.7.0/


  1. 编译安装。
./configure --prefix=/usr/local/python3.7.0 --with-openssl=/usr/local/opensslmake -j64make install
  1. 更新软链接。 cd /usr/bin rm -rf python ln -s /usr/local/python3.7.0/bin/python3 /usr/bin/python
  2. 修改系统默认依赖Python版本的脚本。
    注意: mesa升级依赖的Python版本为3.0及以上,但python升级到3.0以后,系统原始的一些依赖python解析器的文件需要显式指定python解析器为python2版本。
    文件包括/usr/sbin/firewalld、/usr/bin/firewall-cmd和yum的一些解析命令(例如/usr/bin/yum,/usr/libexec/urlgrabber-ext-down等)。

问题:

缺少了zlib的解压缩类库

centos挂安卓 安卓手机装centos7_android_02

yum -y install zlib*

缺少模块

centos挂安卓 安卓手机装centos7_centos挂安卓_03

yum install libffi-devel

以上安装完再 从./configure 执行一遍,这些错误一定要解决,否则以后问题会更多。

注意:安装P3后,YUM命令将无法使用,YUM是工作在P2下的,所以要做以下两个文件的修改

yum需要用python2编译,而不能用python3编译,所以只需要在yum脚本中指定编译器python的版本就行了

vim /usr/bin/yum

修改前

#!/usr/bin/python
import sys
try:
    import yum
except ImportError:
    print >> sys.stderr, """\

修改后

#!/usr/bin/python2
import sys
try:
    import yum
except ImportError:
    print >> sys.stderr, """\

只修改usr/bin/yum是不够的,还需要修改 /usr/libexec/urlgrabber-ext-down脚本,因为这个脚本也需要python2作为编译器

vim /usr/libexec/urlgrabber-ext-down

修改前

#! /usr/bin/python
#  A very simple external downloader
#  Copyright 2011-2012 Zdenek Pavlas

修改后

#! /usr/bin/python2
#  A very simple external downloader
#  Copyright 2011-2012 Zdenek Pavlas

十三、安装pip

  1. 删除系统自带pip。
cd /usr/bin/
rm -rf pip
rm -rf pip2*
  1. 卸载python3自带pip。
python -m pip uninstall pip
  1. 获取特定版本pip。
wget --no-check-certific ate https://pypi.python.org/packages/source/p/pip/pip-20.0.1.tar.gz
  1. 解压并编译。
tar -zxvf pip-20.0.1.tar.gz
cd pip-20.0.1/
python setup.py build
python setup.py install
  1. 更新软链接
ln -s /usr/local/python3.7.0/bin/pip3 /usr/bin/pip
  1. 注意:

利用pip安装的软件,默认路径都在/usr/local/python3.7.0,需要创建软链接到系统环境变量。

十四、安装meson和mako

  1. 安装meson。
pip install --trusted-host pypi.org  --trusted-host files.pythonhosted.org  mesonln -s /usr/local/python3.7.0/bin/meson /usr/bin/meson
  1. 安装mako。
pip install --trusted-host pypi.org  --trusted-host files.pythonhosted.org  mako

十五、安装re2c

  1. 下载源码。
wget https://github.com/skvadrik/re2c/releases/download/2.0.3/re2c-2.0.3.tar.xztar xf re2c-2.0.3.tar.xzcd re2c-2.0.3
  1. 编译安装。
autoreconf -i -W all./configuremake -j32make install

问题:

centos挂安卓 安卓手机装centos7_linux_04

先安装M4

centos挂安卓 安卓手机装centos7_linux_05

 Index of /gnu/m4/http://mirrors.kernel.org/gnu/m4/

tar -xzvf m4-1.4.13.tar.gz
cd m4-1.4.13
./configure --prefix=/usr/local
make && make install

 

插件下载地址

Index of /gnu/autoconfhttp://ftp.gnu.org/gnu/autoconf/ 

tar -xzvf autoconf-2.65.tar.gz
cd autoconf-2.65 
./configure --prefix=/usr/local
make && make install

十六、安装ninja

  1. 获取源码。
git clone git://github.com/ninja-build/ninja.gitcd ninja
  1. 编译安装。
./configure.py --bootstrapcp ninja /usr/bin/
  1. 注意:

如果编译报错“ninja: error: manifest 'build.ninja' still dirty after 100 tries”,请检查系统时间,需要严格和真实时间一致。

问题:未安装GIT

yum install -y git

十七、安装libdrm

  1. 获取源码
wget https://dri.freedesktop.org/libdrm/libdrm-2.4.103.tar.xz
tar -xf libdrm-2.4.103.tar.xz
cd libdrm-2.4.103
  1. 编译安装
mkdir build
cd build
meson --prefix=/usr --libdir=/usr/lib64
ninja install

问题:无法下载的地址

#这是目录,自己选
https://dri.freedesktop.org/libdrm/

 难题又出现:缺少picaccess,这个好难搞啊。查了不少资料应该是 安装 libpciaccess-dev

好像是 libpci 的一个包,在ubantu的系统下 用的是 apt-get install libpic.

目前这一步我没解决好!不知道下面有什么影响呢。

十八、 升级mesa

  1. 检查OpenGL版本。
glxinfo | grep OpenGL
  1. 注意:

如果OpenGL版本小于3.0,则需要参考本节内容进行升级。

  1. 获取指定mesa版本的源码。
wget https://archive.mesa3d.org//mesa-19.3.5.tar.xztar -xf mesa-19.3.5.tar.xzcd mesa-19.3.5
  1. 适配源码。
  1. 在meson_options.txt第42行增加radeon驱动编译选项。
  2. 注释掉meson.build第246~248行。
  3. 将src/amd/llvm/ac_llvm_helper.cpp第195行“llvm::TargetMachine::CGFT_ObjectFile”修改成“llvm::CGFT_ObjectFile”。
  1. 编译安装。
mkdir buildcd buildmeson --prefix=/usr -Dtexture-float=true -Dgallium-drivers=radeonsi,swrast -Ddri-drivers=radeon,swrast -Dplatforms=drm,x11 -Dglx-tls=true -Dshared-glapi=true -Ddri3=true -Dlmsensors=true -Dgbm=true -Dxa=true -Dosmesa=gallium -Dvdgpu=true -Dnine=true -Dva=true -Dlibglvnd=true -Dllvm=true -DCFLAGS="-fsigned-char -O2" -DCPPFLAGS="-fsigned-char -O2" -DCXXFLAGS="-fsigned-char -O2" -Dautotools=trueninja install
  1. 重新检查OpenGL版本。
glxinfo | grep OpenGL

 

十九、

安装失败了!!!!进行不下去了,百度了好久,基本都没有在CENTOS安装glxifo工具包的,还有就是C上的显卡驱动问题多多,C也不维护,真是抑郁了。基本要放弃CENTOS了,转到 ubuntu18去试试了,再见!!C