11 2022 档案

摘要:farima https://mp.weixin.qq.com/s/6tegu2-MtFsIham6bPexSA 阅读全文
posted @ 2022-11-24 20:02 PKICA 阅读(29) 评论(0) 推荐(0) 编辑
摘要:1. 安装依赖包 apt-get install flex bison libtool 2. 下载libpcap源码及解压安装 wget https://www.tcpdump.org/release/libpcap-1.10.1.tar.gz tar zxvf libpcap-1.10.1.tar 阅读全文
posted @ 2022-11-23 15:38 PKICA 阅读(672) 评论(0) 推荐(0) 编辑
摘要:本文使用debian系统,源码安装mysql5.7.38为例。 1. 安装依赖库 apt-get install libncurses5 libncurses5-dev 2. 下载安装包 wget -c https://downloads.mysql.com/archives/get/p/23/fi 阅读全文
posted @ 2022-11-22 20:08 PKICA 阅读(543) 评论(2) 推荐(2) 编辑
摘要:安装软件: rpm -ivh package.rpm 阅读全文
posted @ 2022-11-21 18:29 PKICA 阅读(36) 评论(0) 推荐(0) 编辑
摘要:1. pip freeze 将系统已安装的包按照需要的格式打包 pip freeze >requirements.txt (重定向,并且指定输出文件名称、格式、路径) 2. pip download 下载离线包 pip download -d packDir -r requirements.txt 阅读全文
posted @ 2022-11-21 18:27 PKICA 阅读(1079) 评论(0) 推荐(0) 编辑
摘要:为了简化可移植构建的难度,早期有一套AutoTools的工具帮助程序员构建软件。Auto Tools是GNU程序的标准构建系统。 configure脚本是由软件开发者维护并发布的给用户使用的shell脚本。该脚本的作用是检测系统环境,最终目的是生成Make file和configure.h。make 阅读全文
posted @ 2022-11-15 19:23 PKICA 阅读(127) 评论(0) 推荐(0) 编辑
摘要:1. 本地挂载windows系统网盘1)安装win网盘及共享驱动 #debian/ubuntu系统: apt-get install cifs-utils samba #redhat/Centos/federa系统: yum install cifs-utils samba 2)id获取本地用户信息 阅读全文
posted @ 2022-11-10 19:38 PKICA 阅读(38) 评论(0) 推荐(0) 编辑