美文网首页Armbian
Armbian刷成CentOS

Armbian刷成CentOS

作者: Armlinux | 来源:发表于2022-11-05 12:47 被阅读0次

    在Armbian系统中

    cd /root
    wget    https://mirrors.tuna.tsinghua.edu.cn/centos-vault/altarch/7.4.1708/isos/aarch64/CentOS-7-aarch64-rootfs-7.4.1708.tar.xz 
    mkdir /root/x
    e2fsck -y /dev/mmcblk0p2
    mount /dev/mmcblk0p2 /root/x
    cd x
    rm -rf bin usr … (这里除了 /lib之外,其他统统删除)
    cd lib
    rm -rf ….. (这里除了 firmware 和 modules 之外,其他统统删除)
    cd ..
    mv lib /root
    cd /root
    tar –numeric-owner -xpJf    CentOS-7-aarch64-rootfs-7.4.1708.tar.xz -C /root/x
    cd x/lib
    rm -rf modules firmware
    mv /root/lib/modules .
    mv /root/lib/firmware .
    cd /root
    umount x
    

    重启后更新源

    yum -y install wget
    cd /etc/yum.repos.d/
    wget http://mirrors.aliyun.com/repo/Centos-7.repo
    # 备份
    mv CentOS-Base.repo CentOS-Base.repo.bak
    # 还原
    mv CentOS-Base.repo.bak CentOS-Base.repo
    # 替换系统的repo文件
    mv Centos-7.repo CentOS-Base.repo
    
    # 替换baseurl 中的centos 为 centos-altarch
    vi CentOS-Base.repo
    
    # 执行yum源更新命令
    yum clean all
    yum makecache
    yum -y update
    
    yum -y install net-tools.x86_64 bind-utils vim
    
    yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
    
    

    6.安装宝塔面板
    6.1.安装与卸载
    5.9

    需要输入2次 y

    Debian版本

    wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && bash install.sh
    7.6

    需要输入2次 y

    Debian版本

    wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh

    centos7版本

    yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

    卸载

    wget http://download.bt.cn/install/bt-uninstall.sh
    sh bt-uninstall.sh

    6.2.基础命令

    查看默认参数

    bt default

    6.3.问题

    出现 curl: (28) Failed to connect to www.bt.cn port 443: Connection timed out

    代表dns被污染 需要指定host

    vi /etc/hosts
    42.157.129.124 www.bt.cn
    echo "60.186.214.94 www.bt.cn" >> /etc/hosts

    
    参考
    

    https://blog.csdn.net/qq_16036197/article/details/119529660
    https://blog.csdn.net/Vincent_Lee1/article/details/121985310

    相关文章

      网友评论

        本文标题:Armbian刷成CentOS

        本文链接:https://www.haomeiwen.com/subject/gqyptdtx.html