gd32f407开发纪要
boot pin
BOOT1=x BOOT0=0 从用户闪存启动,这是正常的工作模式。
BOOT1=0 BOOT0=1 从系统存储器启动,这种模式启动的程序功能由厂家设置。
BOOT1=1 BOOT0=1 从内置SRAM启动,这种模式可以用于调试
BOOT1=x BOOT0=0 从用户闪存启动,这是正常的工作模式。
BOOT1=0 BOOT0=1 从系统存储器启动,这种模式启动的程序功能由厂家设置。
BOOT1=1 BOOT0=1 从内置SRAM启动,这种模式可以用于调试
schtasks.exe /create /tn "xxx" /ru SYSTEM /sc ONSTART /tr xxx
schtasks.exe |findstr "xxx"
schtasks.exe /delete /tn "xxx"
针对 docker cloudflare.docker.com 超时问题,目前测试中科大等都已经失效了。
下面的亲测可用:Daocloud 镜像加速器地址:https://docker.m.daocloud.io
编辑 /etc/docker/daemon.json, 增加如下:
"registry-mirrors": ["https://docker.m.daocloud.io"]
vi /etc/network/interfaces
iface vmbr0 inet6 dhcp
accept_ra 2
request_prefix 1
vi /etc/sysctl.conf
net.ipv6.conf.all.accept_ra=2
net.ipv6.conf.default.accept_ra=2
net.ipv6.conf.vmbr0.accept_ra=2
net.ipv6.conf.all.autoconf=1
net.ipv6.conf.default.autoconf=1
net.ipv6.conf.vmbr0.autoconf=1
apt-get update
apt-get install docker.io
systemctl enable docker
systemctl start docker
formating
mkfs -t ext4 /dev/sdx
mount
mkdir /mnt/dirx
mount -t ext4 /dev/sdx /mnt/dirx
add the dir to pve:
add for auto mount,add to /etc/fstab's tail:
/dev/sdbx /mnt/dirx ext4 defaults 1 2
默认bios是有密码的,解除密码的方式就是通过主板跳线端子,把对应的端子拿下。
对应主板上的丝印是PSWD
t610是在开机按键后面的的大概位置,有个3排的跳线端子,中间那个是pswd。
如果你要开开机启动 :
advance-》after power loss-》on 就表示上电自动开机
验证时,好奇,在ui上把wan lan防火墙去掉了,改成未指定,结果设备连不上了,ssh也无法链接:
没办法,只能上串口,通过串口修改 /etc/config/firewall
红色部分时注意要恢复的内容
配置完成后,记得重启 /etc/init.d/network restart
ip a
enp开头的是有线网卡
wlpk开头的是无线网卡
将static更改为dhcp,并删除或注释掉address,netmask和gateway行
auto lo
iface lo inet loopback
iface enp1s0 inet manual
auto vmbr0
iface vmbr0 inet dhcp
#address 192.168.1.105
#netmask 255.255.255.0
#gateway 192.168.1.1
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
iface wlp2s0 inet manual
source /etc/network/interfaces.d/*
反之就是动态改静态
先要安装网卡驱动,因为我们wlp2s0已经识别出来了,说明驱动已经ok了
先要安装 wpa工具apt install wpasupplicant
然后将 iface wlp2s0 inet manual
改为:
auto wlp2s0
iface wlp2s0 inet dhcp
wpa-ssid xxx
wpa-psk xxx
systemctl restart networking