摘要:
geos-3.4.2 lz4-1.9.2 gflags-2.2.2 rocksdb-5.4.7 zlib-1.2.11 zstd-1.4.5 sqlite 3.32.1 snappy-1.1.8 protobuf-cpp 3.12.2 cur 7.70.0 proj-6.1.1 gdal 3.10. 阅读全文
摘要:
git clone https://github.com/zh-google-styleguide/zh-google-styleguide.git 上面下载的代码分格是中文的 Google C++ 编码规范(英文)在线地址:http://google-styleguide.googlecode.c 阅读全文
摘要:
https://blog.csdn.net/ustbyangcheng/article/details/8689632 sudo apt-get build-dep openscenegraph #安装必备依赖库 sudo apt-get install mesa-common-dev freegl 阅读全文
摘要:
小红伞免费版 https://www.iavira.com/free.html 阅读全文
摘要:
新建脚本,并命名为welcome.sh,将如下内容写入脚本中。#!/bin/bashchmod ugo+x welcome.shcd ~sudo apt-get updatesudo apt-get install cowsaysudo apt-get install fortunegit clon 阅读全文
摘要:
https://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git/tree/drivers/target?id=HEAD http://linux-iscsi.org/wiki/Target 阅读全文
摘要:
#!/bin/bashwhile truedo date; lsof -n|awk '{print $2}'|sort|uniq -c |sort -nr|head -3 echo " "; echo " "; sleep 5done 每隔5秒输出一次系统描述符数量最多的前3个进程。 阅读全文
摘要:
当一个日志文件过大时,使用split进行分割会很有用。 split -b 20M source dst_prefix //把文件source切割为以dst_prefix为文件名前缀的小文件,每个小文件大小为20M。 阅读全文
摘要:
sudo pip install bashate ➜ tools git:(master) bashate -v install_modules_acceptance.sh Running bashate on install_modules_acceptance.shinstall_modules 阅读全文
摘要:
ROOT=$(readlink -fn $(dirname $0)/.. )find $ROOT -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs 阅读全文