Centos7 Centos7源镜像修改 # Insatll wget yum install -y wget # Backup repo; mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup m ...
分类:
系统相关 时间:
2021-04-02 13:06:44
阅读次数:
0
首先安装MySQL服务: wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm yum -y install mysql57-community-release-el7-10.noarch.rp ...
分类:
数据库 时间:
2021-04-02 12:58:53
阅读次数:
0
1. GLPK缺失 igraph::cluster_optimal社团检测算法依赖系统中的GLPK包。 MacOS 11.2 brew install glpk CentOS 7 wget http://download-ib01.fedoraproject.org/pub/epel/7/x86_6 ...
分类:
其他好文 时间:
2021-04-01 12:54:29
阅读次数:
0
下载python源码至服务器 http://npm.taobao.org/mirrors/python/3.7.5/Python-3.7.5.tgz (根据自己的需要去下载对应的版本) wget http://npm.taobao.org/mirrors/python/3.7.5/Python-3. ...
分类:
编程语言 时间:
2021-03-31 12:32:39
阅读次数:
0
1、普通安装cd /usr/local/ wget http://download.redis.io/releases/redis-4.0.11.tar.gz tar -zxvf redis-4.0.11.tar.gz 注意:make install PREFIX=目标安装路径 cd /usr/lo ...
分类:
其他好文 时间:
2021-03-31 12:03:09
阅读次数:
0
日常DNS维护使用命令有 1、dig 命令 2、host 命令3、nslookup 命令4、whois 命令 dig 命令,在Linux下执行 安装 apt install dnsutils 执行 dig dogedoge.com 执行结果输出如下: dig 命令默认的输出信息可以分为 7 个部分 ...
分类:
其他好文 时间:
2021-03-30 13:14:38
阅读次数:
0
下载maven安装包 下载地址:https://maven.apache.org/download.cgi wget https://mirrors.bfsu.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar. ...
分类:
其他好文 时间:
2021-03-29 11:46:34
阅读次数:
0
1、Linux 安装 $ wget https://github.com/liexusong/php-beast/archive/master.zip $ unzip master.zip $ cd php-beast-master $ phpize $ ./configure $ sudo mak ...
分类:
Web程序 时间:
2021-03-29 11:41:35
阅读次数:
0
ansible-doc -l |wc -l 模块数量 ansible命令语法: ansible 主机信息(IP 主机组 all) -m (模块名)command -a "操作动作" 01 02 03 04 05 06 绿色 操作执行成功 没有对远程主机做任何改动 黄色 操作执行成功 对远程主机数据信 ...
分类:
其他好文 时间:
2021-03-29 11:39:21
阅读次数:
0
#!/bin/bash #检测whois命令是否存在,不存在则安装jwhois包is_install_whois(){ which whois &> /dev/null if [ $? -ne 0 ];then yum install -y jwhois fi}is_install_whois#定义 ...
分类:
其他好文 时间:
2021-03-18 14:10:30
阅读次数:
0