会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Greene
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
下一页
2022年1月28日
docker安装vscode-server
摘要: docker run -p 8848:8848 -it --rm ubuntu:latest /bin/bash dpkg -i code-server_4.0.1_amd64.deb apt-get update apt-get install \ vim git gcc make sqlite
阅读全文
posted @ 2022-01-28 00:21 GreeneGe
阅读(440)
评论(0)
推荐(0)
2022年1月23日
树莓派环境配置
摘要: 树莓派设置静态IP sudo vim /etc/dhcpcd.config interface eth0 static ip_address=192.168.1.108/24 static routers=192.168.1.1 static domain_name_servers=192.168.
阅读全文
posted @ 2022-01-23 18:27 GreeneGe
阅读(52)
评论(0)
推荐(0)
ARM嵌入式学习笔记 - 添加NFS驱动
摘要: 编译配置 cp /mnt/hgfs/vm-share/iTop4412_Kernel_3.0_20220105.tar.gz ./ cd iTop4412_Kernel_3.0 cp -r config_for_linux_scp_elite .config make menuconfig Netw
阅读全文
posted @ 2022-01-23 14:45 GreeneGe
阅读(69)
评论(0)
推荐(0)
greene-contents
摘要: 树莓派替换国内软件源(基于Debian11 - bullseye版本)https://www.cnblogs.com/greene/p/15810898.html
阅读全文
posted @ 2022-01-23 10:52 GreeneGe
阅读(29)
评论(0)
推荐(0)
2022年1月22日
ARM嵌入式学习笔记 - 搭建环境
摘要: 安装交叉编译工具arm-2009q3 sudo mkdir /usr/local/arm sudo cp arm-2009q3.tar.bz2 /usr/local/arm cd /usr/local/arm sudo tar -xvf arm-2009q3.tar.bz2 将路径加入环境变量 vi
阅读全文
posted @ 2022-01-22 21:42 GreeneGe
阅读(55)
评论(0)
推荐(0)
ARM嵌入式学习笔记 - 烧写系统(基于iTOP4412开发板)
摘要: ##烧写系统 拷贝如下文件到C:\Users\greene\Desktop\USB_fastboot_tool\platform-tools路径 u-boot-iTOP-4412.bin zImage ramdisk-uboot.img system.img 进入uboot命令行 分区: fdisk
阅读全文
posted @ 2022-01-22 19:22 GreeneGe
阅读(109)
评论(0)
推荐(0)
ARM嵌入式学习笔记 - 制作最小Linux系统
摘要: 制作最小linux 安装交叉编译工具 cp /usr/local/arm cp /mnt/hgfs/vm-share/arm-linux-gcc-4.3.2.tar.gz ./ tar -xvf arm-linux-gcc-4.3.2.tar.gz export PATH=$PATH:/usr/lo
阅读全文
posted @ 2022-01-22 19:15 GreeneGe
阅读(246)
评论(0)
推荐(0)
2022年1月21日
ubuntu-20.04.3-desktop配置阿里云软件源
摘要: cp /etc/apt/sources.list /etc/apt/sources.list.bak vim /etc/apt/sources.list 将文件中的内容全部替换成如下内容: deb http://mirrors.aliyun.com/ubuntu/ focal main restri
阅读全文
posted @ 2022-01-21 23:55 GreeneGe
阅读(240)
评论(0)
推荐(0)
2022年1月16日
树莓派部署angel
摘要: 使用docker部署posgresql(仅是为了安装数据库方便) mkdir /data/postgres sudo docker network create angel-network sudo docker run -d \ --name=angel.db \ -e POSTGRES_PASS
阅读全文
posted @ 2022-01-16 22:40 GreeneGe
阅读(49)
评论(0)
推荐(0)
Golang - 开发环境搭建
摘要: 安装Golang export goversion='1.19.5' curl -O https://dl.google.com/go/go$goversion.linux-amd64.tar.gz rm -rf /usr/local/go && tar -C /usr/local -xzf go$
阅读全文
posted @ 2022-01-16 22:09 GreeneGe
阅读(179)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告
https://github.com/Glf9832