上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页
摘要: 1. 编译安装 memcached 见官方网站 http://memcached.org 2. 编写开机启动脚本 memcached (最简化版) #!/bin/sh memcached -d -m 1024 -u root -l 127.0.0.1 -p 11211 -c 2048 -P /tmp 阅读全文
posted @ 2020-07-22 14:38 Anonymous596 阅读(270) 评论(0) 推荐(0)
摘要: 参考官方文档, https://docs.docker.com/engine/install/centos/ # yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo # yum i 阅读全文
posted @ 2020-06-30 10:28 Anonymous596 阅读(11469) 评论(1) 推荐(1)
摘要: 参见:http://www.ruanyifeng.com/blog/2016/07/yaml.html (完) 阅读全文
posted @ 2020-06-23 21:28 Anonymous596 阅读(188) 评论(0) 推荐(0)
摘要: 安装 curl, $ sudo apt-get install curl 获取自动安装脚本,并执行安装 (Ubuntu, CentOS 通用), $ curl -sSL https://get.daocloud.io/docker | sh 添加当前用户到 docker 用户组, $ sudo us 阅读全文
posted @ 2020-06-18 21:41 Anonymous596 阅读(229) 评论(0) 推荐(0)
摘要: 问题如下, 解决方法 1) 首先安装 MinGW,在 MinGW 的安装目录下找到 bin 的文件夹,找到 mingw32-make.exe,复制一份更名为 make.exe 2) 把 MinGW 的路径添加到环境变量 Path 中,即如果 MinGW 安装在 D:\MinGW\ 中,就把 D:\M 阅读全文
posted @ 2020-06-18 13:44 Anonymous596 阅读(561) 评论(0) 推荐(0)
摘要: Know How https://elinux.org/Electric_Fence Download Web sitehttps://launchpad.net/ubuntu/zesty/amd64/electric-fence/2.2.5 https://launchpad.net/ubuntu 阅读全文
posted @ 2020-06-08 09:44 Anonymous596 阅读(561) 评论(1) 推荐(1)
摘要: 问题 没有正确编译 sqlite3, 在 import sqlite3 时出现 Error: ModuleNotFoundError: No module named '_sqlite3' 安装 sqlite3-dev 包 $ sudo apt install libsqlite3-dev 重新配置 阅读全文
posted @ 2020-06-03 09:49 Anonymous596 阅读(524) 评论(0) 推荐(0)
摘要: vmlinux 是内核文件。 zImage 是默认的压缩内核文件,压缩 vmlinux,加上一段解压启动代码得到。 uImage 是使用工具 mkimage 对 zImage 加工而得到的。它是 uboot 专用的映像文件,是在 zImage 之前加上一个长度为 64 字节的 “头”,说明这个内核的 阅读全文
posted @ 2020-05-26 20:47 Anonymous596 阅读(555) 评论(0) 推荐(0)
摘要: 环境 Zynq 激活 SD,UART,Ethernet。 PetaLinux 配置 $ petalinux-config 设置开发板 ip 地址, 打开调试选项 开发板从 SD 卡启动,可见 tcf-agent 已经就绪, xsdk 中新建 Linux 应用,例如 helloworld。 右键点击 阅读全文
posted @ 2020-05-19 17:01 Anonymous596 阅读(3408) 评论(0) 推荐(0)
摘要: 在 .vimrc 中添加设置如下, " for no newline when open binary file with vim and convert with :%!xxd set noendofline binary 设置前, 设置后, 阅读全文
posted @ 2020-05-18 16:53 Anonymous596 阅读(965) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页