树莓派4刷openfans-debian

树莓派4B+安装debian

1.准备

软件:

硬件:

  • 树莓派4B+
  • TF卡8G以上
  • TF读卡器

2.安装

2.1 写入镜像到TF卡中

  1. 先把下载的压缩包解压为2021-11-11-OPENFANS-Debian-Buster-Aarch64-ext4-v2021-2.0-U6-Release-plus++.img

  2. 打开Win32DiskImager2.0.1.8.exe

    image-20230426161207532

  3. 依次选择TF卡,选择镜像文件,点击写入

  4. 写入完成后关闭时软件,先修改一下网络配置(接屏幕和键盘的可以跳过)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    按照自己的需求选择其中一个配置即可

    无线配置说明
    修改 /boot/wpa_supplicant.conf 文件

    ## To use this file, you should run command "systemctl disable network-manager" and reboot system. (Do not uncomment this line!) ##

    #country=CN
    #ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
    #update_config=1


    ## WIFI 1 (Do not uncomment this line!) --这行不能删除

    #network={
    # ssid="your-wifi1-ssid" --无线WiFi的名称
    # psk="wifi1-password" -- 密码
    # priority=1 ---优先级,如果有多个
    # id_str="wifi-1"
    #}


    ## WIFI 2 (Do not uncomment this line!)

    #network={
    # ssid="your-wifi2-ssid"
    # psk="wifi2-password"
    # priority=2
    # id_str="wifi-2"
    #}



    有线网络配置
    修改 /boot/interfaces 文件

    # interfaces(5) file used by ifup(8) and ifdown(8)
    # Include files from /etc/network/interfaces.d:
    source-directory /etc/network/interfaces.d
    ## Used dhcp ip address set eth0 inet to dhcp,
    ## or used static ip address set eth0 to static
    ## and change other ip settings.
    ## If you wanna let settings to take effect,
    ## uncomment symbol in front.

    auto eth0 --这个要打开,表示自动启动网卡
    #allow-hotplug eth0

    #iface eth0 inet dhcp --静态动态任选一个,不能都设

    iface eth0 inet static
    address 10.1.100.5
    netmask 255.255.255.0
    gateway 10.1.100.1
    dns-nameservers 8.8.8.8

  5. 插入树莓派并通电

2.2 ssh连接树莓派

image-20230426172713073

1
2
3
4
5
6
7
系统默认账户:pi ,默认密码:raspberry

默认账户pi账户支持ssh登录,root账户密码请登陆后使用命令 “sudo passwd root” 执行设置,

或使用命令 “sudo -i” 来切换到root用户。


web登录的密码

1
2
3
4
5
6
7
8
9
10
11
12
1.Web可视化管理界面
登录地址 https://你树莓派的IP地址:9090
说明:请使用系统默认账户pi登录

2.WEB SSH 客户端 入口界面
登录地址 https://你树莓派的IP地址:4200
说明:使用具有控制台登录权限的帐户登录,例如:pi

3.CecOS CaaS 容器云管理平台 登录界面
登录地址 https://你树莓派的IP地址:8443
说明:默认管理账户 admin , 默认密码:password 。请登录后立即修改默认密码!!

2.3 默认启动设置

  1. 启用和运行Docker服务

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    开机自动启动Docker服务
    systemctl enable docker.service

    启动Docker服务
    systemctl start docker.service

    ######

    停止Docker服务
    systemctl stop docker.service

    禁止Docker服务开机启动
    systemctl disable docker.service
  2. 启用CecOS-CaaS容器云

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    开机自动启动 CecOS CaaS容器云 服务
    systemctl enable cecos-caas.service

    启动 CecOS CaaS容器云 服务
    systemctl start cecos-caas.service

    ######

    停止 CecOS CaaS容器云 服务
    systemctl stop cecos-caas.service

    禁止 CecOS CaaS容器云 服务开机启动
    systemctl disable cecos-caas.service
  3. 启用和退出Docker集群

    1
    2
    3
    4
    5
    6
    7
    8
    #初始化并加入一个 Docker Swarm集群
    docker swarm init

    #查看集群节点状态
    docker node ls

    #退出Docker Swarm集群
    docker swarm leave --force

3.其他

见OPENFANS的readme https://gitee.com/openfans-community/Debian-Pi-Aarch64