2019年6月30日

linux下类似beyond compare的软件推荐

摘要: windows比较文件差异使用的是beyond compare, 而在linux下也有同样类似的meld sudo apt-get install meld 阅读全文

posted @ 2019-06-30 18:45 Alvin2012 阅读(701) 评论(0) 推荐(0) 编辑

运行时找不到动态链接库

摘要: 运行时找不到动态链接库的4种解决方法: 1.将动态链接库放到/lib或者/usr/lib或者/usr/local/lib目录下 2.export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:your_library_path 3.修改/etc/ld.so.cache中缓存的动态 阅读全文

posted @ 2019-06-30 00:13 Alvin2012 阅读(696) 评论(0) 推荐(0) 编辑

2019年6月29日

Makefile中的$

摘要: $@指目标 $^指所有依赖 $<指第一个依赖 阅读全文

posted @ 2019-06-29 21:47 Alvin2012 阅读(97) 评论(0) 推荐(0) 编辑

2019年6月28日

配置wifi的AP模式

摘要: 配置wifi的AP模式: 需要busybox里面有ifconfig,udhcpd,tcpsvd,ftpd 另外有hostapd 加载wifi驱动时要设置op_mode为AP模式 作者的wifi模块是博通的,modprobe bcmdhd op_mode=2 ifconfig wlan0 uphost 阅读全文

posted @ 2019-06-28 15:45 Alvin2012 阅读(2274) 评论(0) 推荐(0) 编辑

2019年6月27日

shell根据程序名获取进程号

摘要: shell根据程序名获取进程号: ps -A | grep "cmdname" | awk '{print $1}' 阅读全文

posted @ 2019-06-27 13:40 Alvin2012 阅读(816) 评论(0) 推荐(0) 编辑

2019年6月26日

读取/dev/urandom生成固定位数的随机数

摘要: 读取/dev/urandom生成固定位数的随机数: 1.纯数字 head /dev/urandom | tr -dc 0-9 | head -c n 2.小写字母+数字 head /dev/urandom | tr -dc a-z0-9 | head -c n 3.大小写字母+数字 head /de 阅读全文

posted @ 2019-06-26 09:20 Alvin2012 阅读(955) 评论(0) 推荐(0) 编辑

2019年6月22日

升级完pip后出错:Traceback (most recent call last): File "/usr/bin/pip", line 11, in <module> sys.exit(__main__.main())

摘要: 今天在ubuntu上升级了pip,之后执行pip命令的时候就报错了: Traceback (most recent call last): File "/usr/bin/pip", line 11, in <module> sys.exit(__main__.main()) 解决方法: sudo v 阅读全文

posted @ 2019-06-22 14:34 Alvin2012 阅读(16213) 评论(0) 推荐(0) 编辑

2019年6月21日

openssh交叉编译

摘要: openssh交叉编译: 1.官网下载地址: https://www.mindrot.org/openssh_snap/ 2.配置: openssh需要依赖openssl和zlib 首先需要编译另两个依赖库,可以参见作者其它两篇随笔。 作者将交叉编译好的openssl和zlib放到/usr/loca 阅读全文

posted @ 2019-06-21 16:59 Alvin2012 阅读(2805) 评论(0) 推荐(0) 编辑

zlib交叉编译

摘要: zlib交叉编译: 1.mkdir __install 2.export CC=arm-linux-gnueabihf-gcc 3../configure --prefix=$(pwd)/__install 4.make 5.make install 注:zlib的configure不支持配置CC, 阅读全文

posted @ 2019-06-21 16:01 Alvin2012 阅读(479) 评论(0) 推荐(0) 编辑

C语言编译动态链接库

摘要: C语言编译动态链接库: gcc test.c -fPIC -shared -o libtest.so 阅读全文

posted @ 2019-06-21 15:16 Alvin2012 阅读(178) 评论(0) 推荐(0) 编辑

导航