上一页 1 2 3 4 5 6 ··· 12 下一页

sersync2编译

摘要: 1、下载boost编译安装 $ cd path/to/boost_1_64_0$ ./bootstrap.sh --help## 配置选项, 相当于configure$ ./bootstrap.sh --prefix=/usr/local## 相当于make$ ./b2## 相当于make inst 阅读全文
posted @ 2023-09-12 10:44 狄成 阅读(98) 评论(0) 推荐(0)

python2安装mysqldb

摘要: yum install mariadb-devel 或yum install mysql-devel 编辑_mysql.c注释2005行 阅读全文
posted @ 2023-06-15 18:19 狄成 阅读(38) 评论(0) 推荐(0)

编译内核出现错误cc1: error: code model kernel does not support PIC mode

摘要: 删除该模块目录下的 .cache.mk 文件就好了,重新 make 即可 阅读全文
posted @ 2022-04-15 14:52 狄成 阅读(1280) 评论(0) 推荐(0)

nginx配置文件过大导致起不来

摘要: 更改src/core/ngx_conf_file.c,默认只有4k,将下面值改大重新编译 阅读全文
posted @ 2022-03-16 16:54 狄成 阅读(208) 评论(0) 推荐(0)

超2T硬盘使用gpt分区及做成lvm

摘要: 1、超过2T分区不能用fdisk了,用parted 分区格式化后对新的分区做lvm 阅读全文
posted @ 2022-03-11 16:51 狄成 阅读(628) 评论(0) 推荐(0)

centos7普通用户拥有root权限并登录执行脚本

摘要: 1、useradd test 2、passwd test 3、usermod -s 脚本绝对路径 test 4、vi /etc/passwd修改test用户的uid和gid为0 阅读全文
posted @ 2022-02-28 12:06 狄成 阅读(752) 评论(1) 推荐(0)

parted分区及lvm

摘要: 针对sdc分区 parted /dev/sdc pvcreate /dev/sdc1 vgcreate data /dev/sdc1 lvcreate -l +100%free -n data data mkfs.ext /dev/mapper/data-data /etc/fstab挂载 阅读全文
posted @ 2021-12-30 16:04 狄成 阅读(62) 评论(0) 推荐(0)

sdp安装及实例

摘要: 环境: sdpserver:192.168.1.160 sdpclient:192.168.1.161 安装 yum install gcc gcc-c++ libpcap* libtool* wget http://www.cipherdyne.org/fwknop/download/fwknop 阅读全文
posted @ 2021-12-28 15:54 狄成 阅读(799) 评论(0) 推荐(1)

logstash输出到MySQL

摘要: 1、安装插件/bin/logstash-plugin install logstash-output-jdbc 2、下载jdbc https://mvnrepository.com/artifact/mysql/mysql-connector-java 在logstash目录下创建jdbc目录,下载 阅读全文
posted @ 2021-08-13 21:37 狄成 阅读(807) 评论(0) 推荐(1)

centos6.5升级python3.6并安装boto3模块

摘要: 1、先升级openssl yum安装各种依赖,yum install gcc gcc-c++ autoconf automake zlib zlib-devel pcre-devel tar zxvf openssl-1.0.2u.tar.gz cd openssl-1.0.2u ./config 阅读全文
posted @ 2021-08-06 16:08 狄成 阅读(250) 评论(1) 推荐(0)
上一页 1 2 3 4 5 6 ··· 12 下一页