当前位置:网站首页>Build halo blog in arm version rk3399
Build halo blog in arm version rk3399
2022-06-28 19:15:00 【No regrets!】
happy International Workers ' Day
Happy to boring , Accidentally found a good open source project halo, Blog system , There happened to be one arm Development board rk3399 Put it to waste , So there's an idea : adopt docker To make a arm Version of halo Blog , Can display some personal information and articles , And package the image , Open source ( Because it's all x86 Version of ), So there is the following work .
Previously, I made a system for the laboratory to display laboratory information and share some internal resources , But in the later stage, because there is no maintenance, it is gradually useless , Building this halo In the process of blogging , Let me have a better website scheme to build all the information for the laboratory , That is, through halo Blog system to upload various scientific research information of the laboratory \ Research direction \ Research results , Add a static resource download link ( The link contains information via python HTTPserver Do a resource sharing website ); The above two steps can well realize the display function of laboratory information . Finally, I hope the students in the laboratory can try it by themselves after seeing the above introduction halo+http The plan .
List of articles
1. docker
1.1 Download and install
Here's how to clone, download and install
# Set resource storage path
sudo vim /etc/systemd/system/multi-user.target.wants/docker.service
# change ExecStart=/usr/bin/dockerd --graph=<your_new_docker_img_path> --storage-driver=overlay
sudo systemctl daemon-reload
# Set download source
sudo vim /etc/docker/daemon.json
{
"registry-mirrors": ["http://hub-mirror.c.163.com"]
}
sudo service docker restart
# Set user permissions
sudo docker run hello-world
sudo groupadd docker
# groupadd: group 'docker' already exists
sudo usermod -aG docker $USER
sudo gpasswd -a $USER docker
newgrp docker
docker run hello-world
1.2 Download the image and run
docker pull zjq2048/rk3399-halo:1.5.2
docker run -it --restart=always -p 8090:8090 --name halo -d zjq/rk3399-halo:0.1
# Browser access ip:8090
2. Blog display

The article is markdown Format 
You can modify html Page information 
Custom display page 
summary
What can be learned from the whole process ?
- docker To configure
- docker The mirror image making
- docker Image upload
- Java function
边栏推荐
- 【Unity3D】相机跟随
- MindSpore系列一加载图像分类数据集
- ANR Application Not Responding
- math_证明常用等价无穷小&案例&代换
- C# 41. Int to string
- 基于管线的混合渲染
- Brief introduction to mongodb working principle of mongodb series
- 618 activity season - the arrival of special discounts for hundreds of low code platforms
- Enhancing steam and engineering education from theory to practice
- Michael Wooldridge, professeur à l'Université d'Oxford: comment la communauté de l'IA voit les réseaux neuronaux depuis près de 40 ans
猜你喜欢
随机推荐
电脑如何检查驱动程序是否正常
An in-depth analysis of the election mechanism in kubernetes
1 goal, 3 fields, 6 factors and 9 links of digital transformation
19.2 container classification, array and vector container refinement
A few lines of code can realize complex excel import and export. This tool class is really powerful!
让企业数字化砸锅和IT主管背锅的软件供应链安全风险指南
sql面试题:求连续最大登录天数
使用点云构建不规则三角网TIN
Win11如何给系统盘瘦身?Win11系统盘瘦身方法
memory thrashing
PostgreSQL database docker
AOSP Tsinghua image download error resolution
Grafana biaxial graph with your hands
Find out the users who log in for 7 consecutive days and 30 consecutive days
内核错误怎么解决?Win11系统内核错误解决方法
Taishan Office Technology Lecture: word strange font height
matlab 受约束的 Delaunay 三角剖分
Summary of the use of qobjectcleanuphandler in QT
大火的虚拟人在哪些产业开始发力?
Enhancing steam and engineering education from theory to practice
![[unity3d] emission (raycast) physical ray (Ray)](/img/46/a9fda743f597db9584c982b10c191c.png)








