版本问题,最直接的解决办法就是重新编辑安装git吧: 1. 下载:# wget -O git.zip https://github.com/git/git/archive/master.zip 2. 解压:# unzip git.zip 3. 进入git目录:# cd git-master 4. 编 ...
分类:
其他好文 时间:
2017-06-17 10:07:51
阅读次数:
133
elasticsearch 5.4 安装 1. 下载并解压 https://www.elastic.co/downloads/elasticsearchtar -xvf elasticsearch-5.4.1.tar.gz 2. 配置config/elasticsearch.ymlcluster.n ...
分类:
其他好文 时间:
2017-06-16 19:23:32
阅读次数:
196
刚开始安装报错,我用的是php7,先安装zip,uzip扩展 yum install zip unzip php7.0-zip 然后通过 Composer 的 create-project 命令来安装 Lumen: composer create-project laravel/lumen --pr ...
分类:
其他好文 时间:
2017-06-16 12:50:31
阅读次数:
200
.gz格式 压缩: gzip 文件名 解压: gzip -d 欲解压文件名 gunzip 欲解压文件名 说明: 1.只能压缩文件,不能压缩目录 2.压缩和解压的时候不保留原文件 .bz2格式 压缩: bzip2 -k 待压缩文件 解压: buzip2 压缩文件 .tar格式 压缩: tar -cvf ...
分类:
系统相关 时间:
2017-06-14 02:14:40
阅读次数:
257
zip压缩包是Windows下和Linux下都比较常用的。zip可以压缩目录也可以压缩文件,压缩目录时,需要指定目录下的文件。初次使用,没有安装zip的,使用yum工具安装。#yuminstall-yzip例:[root@qiangzi~]#zip1.txt.zip1.txt[root@qiangzi~]#ls1231.txt.zip789dirainstall.log1.txt4..
分类:
其他好文 时间:
2017-06-12 14:43:12
阅读次数:
133
1.安装jdk http://jingyan.baidu.com/article/c74d60007b85510f6a595dfa.html 2.上传jmeter 的压缩包到Linux 解压文件 unzip apache-jmeter-3.0,zip 移动文件 mv apache-jmeter-3. ...
分类:
系统相关 时间:
2017-06-07 11:18:09
阅读次数:
163
using System.IO; using System.Windows.Forms; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Checksums; public void unZip(string strS ...
#!/bin/bashcd/lampls*>./list.txtforain$(catlist.txt)do if[["$a"=~"tar"]] then tar-xf$a elif[["$a"=~"tgz"]] then tar-xf$a elif[["$a"=~"gz"]] then gunzip$a elif[["$a"=~"bz"]] then bunzip2$a elif[["$a"=~"zip"]] then unzip$a else echo"$aisnotazipfile."..
分类:
其他好文 时间:
2017-06-06 10:54:18
阅读次数:
163
打包压缩命令:tar,zip,gzip,bzip2常用的打包工具:tar;压缩工具:zip、gzip、bzip211.1.zip功能:兼容unix和windows,可以一次性压缩多个文件语法:zip压缩后的路径文件需要压缩的文件1文件2常用选项:-r:递归压缩解压缩:unzip需要解压的文件(默认解压到当前目录)unzi..
分类:
其他好文 时间:
2017-06-05 14:06:00
阅读次数:
169
淘宝技术团队开发了一个 Tengine ( Nginx 的分支 ) 模块 nginx_upstream_check_module ,用于提供主动式后端服务器健康检查,通过它可以检测后端 realserver 的健康状态,如果后端 realserver 不可用,则所有的请求就不会转发到该节点上,需要通 ...
分类:
其他好文 时间:
2017-06-03 12:41:04
阅读次数:
159