返回列表 發帖

phicomm N1 install Armbian 20.10

本帖最後由 yiucsw 於 2020-12-1 21:41 編輯

Phicomm N1 要有 Remote control, USB 手指 8G+
https://www.right.com.cn/forum/f ... ypeid%26typeid%3D21

1. 下载Armbian:
  1. https://users.armbian.com/balbes150/arm-64/[/url]
複製代碼
选择:Armbian 20.09

2. Click file .img.xz  unzip to .img
  1. sudo dd if=./Armbian_20.09_Arm-64_focal_current_5.8.10.img of=/dev/rdisk2 bs=1m
複製代碼
3. 修改 default -> boot Phicomm N1 file.  
3.1 XX  Remount USB -> R/W
  1. diskutil unmountDisk /dev/disk2
  2. [code]sudo mkdir /Volumes/BOOT
  3. sudo mount -w -t msdos /dev/disk2s1 /Volumes/BOOT
  4. cd /Volumes/BOOT  
複製代碼

本帖最後由 yiucsw 於 2020-2-25 18:06 編輯

deleted, refer to T1

TOP

本帖最後由 yiucsw 於 2020-12-2 00:52 編輯

reserved this page

TOP

本帖最後由 yiucsw 於 2020-1-9 17:05 編輯

Install docker management: portainer
  1. docker pull portainer/portainer:latest
  2. docker run -d -p 9000:9000 -p 8000:8000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
複製代碼

in Brower url: ipaddress:9000 for portainer interface
from https://portainer.readthedocs.io/en/latest/deployment.html.

TOP

本帖最後由 yiucsw 於 2020-1-9 17:00 編輯

Install Docker and portainer
https://leeyr.com/324.html

TOP

本帖最後由 yiucsw 於 2020-12-2 00:51 編輯

ssh to N1. look at N1 display output there is an IP address show. or check IP from router.  
Run
  1. armbian-config
複製代碼
-
   Network
    -Change eth0 to static (sudo nano /etc/network/interfaces)
    -Disable IPV6
    -Enable WIFI
    -Install Bluetooth (if there is Bluetooth keyboard/mouse)
   System
     - Disable Desktop (if select Desktop linux) low memory and enable if needed.

Network Static ip
sudo nano /etc/network/interfaces
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1

TOP

返回列表