go env -w GOPROXY= go env -w GO111MODULE=on Read More
git clone 整个仓库后使用,以下命令就可以取得该 tag 对应的代码了。 git checkout tag_name 但是,这时候 git 可能会提示你当前处于一个“detached HEAD" 状态。 因为 tag 相当于是一个快照,是不能更改它的代码的。 如果要在 tag 代码的基础上做 Read More
git log --pretty=oneline tagA...tagB If you just wanted commits reachable from tagB but not tagA: git log --pretty=oneline tagA..tagB or git log --pre Read More
从根目录开始查找所有扩展名为.log的文本文件,并找出包含”ERROR”的行find / -type f -name “*.log” | xargs grep “ERROR" Read More
uboot烧录 将uboot写入到sd卡8k偏移处。 sudo dd if=u-boot-sunxi-with-spl_480800.bin of=/dev/sdb bs=1024 seek=8 Read More
fmt.Println("%v",x); Read More
查询go支持cpu架构 Read More
使用dpkg-reconfigure locales,选择字符集。 Read More
iptable双网卡共享上网 iptable双网卡共享上网 iptables -t nat -F iptables -P INPUT ACCEPTiptables -P FORWARD ACCEPT iptables -t nat -A POSTROUTING -o (外网网卡) -j MASQUE Read More
查看串口设备 dmesg | grep ttyS* Read More