
Linux
PETER327447
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Nvidia Video Codec SDK
https://pan.baidu.com/s/1caws4HpEkf9hQCOi1ujnRA原创 2020-12-11 18:40:38 · 624 阅读 · 0 评论 -
nvbuf_utils: Could not get EGL display connection
解决方法: unset DISPLAY原创 2020-07-31 11:02:48 · 4443 阅读 · 4 评论 -
error: RPC failed; curl 56 GnuTLS recv error (-9): A TLS packet with unexpected length was received.
git config --global http.postBuffer 1048576000原创 2020-07-22 18:34:26 · 1947 阅读 · 0 评论 -
关于python:安装脚本退出并出现错误:安装PyNaCl时失败,退出状态为1
安装 libffi-dev apt install libffi-dev原创 2020-07-21 14:47:15 · 1782 阅读 · 1 评论 -
cryptopp 交叉编译aarch64
这里写自定义目录标题cryptopp 交叉编译aarch64 cryptopp 交叉编译aarch64 #写脚本setenv-aarch64.sh #!/bin/sh LANG=en echo "bengin environment_check " OS_Distributor=`lsb_release -i | awk -F":" '{print $2}' | awk '{print $1}'` OS_Description=`lsb_release -d | awk -F":" '{print $2}原创 2020-07-13 17:03:34 · 683 阅读 · 0 评论 -
undefined reference to symbol 'sem_post@@GLIBC_2.2.5
解决办法: 在编译的时候加: -pthread原创 2020-03-26 23:31:57 · 2145 阅读 · 0 评论 -
shell 筛选文件夹下文件复制到指定目录
在test文件夹下找到所有头文件,然后拷贝到include文件夹下 find test/ -name *.h -exec cp -avx {} include \;原创 2020-03-02 22:31:52 · 1345 阅读 · 0 评论 -
重大事故:Centos7根目录下lib64被重命名
上网找了很多教程,原理对 有的介绍用: /lib/ld-2.17.so 有的介绍用 /lib64/ld-linux.so.2 但实际得使用 ld-linux-x86-64.so.2 改名目录: /usr/lib64------/usr/lib64_bak /usr/local/lib--------> /usr/local/lib_bak 当时自己有六个库目录,一一试过后: /lib/ ...原创 2020-02-19 01:33:28 · 1249 阅读 · 1 评论 -
glib 2.48.0编译error:make[4]: *** No rule to make target `gobject.stp.in', needed by `gobject.stp'. S
解决办法:–disable-systemtap原创 2020-02-05 15:09:32 · 444 阅读 · 0 评论 -
Tab completion errors: bash: cannot create temp file for here-document: No space left on device
查看root根目录下文件夹大小,发现是tmp已满,可通过以下方案: 虚拟文件系统tmpfs挂载到/tmp目录下 mount -t tmpfs -o size=20m tmpfs /tmp原创 2019-10-30 11:04:27 · 245 阅读 · 0 评论