码迷,mamicode.com
首页 >  
搜索关键字:bz2    ( 1519个结果
Linux下交叉编译gdb,gdbserver+gdb的使用以及通过gdb调试core文件
交叉编译gdb和gdbserver 1、下载gdb:下载地址为:http://ftp.gnu.org/gnu/gdb/按照一般的想法,最新版本越好,因此下载7.2这个版本。当然,凡事无绝对。我们以gdb-7.2.tar.bz2 这个文件为例。2、解压缩: 注:小技巧:Linux下一般压缩文件后缀为. ...
分类:数据库   时间:2016-07-06 10:03:25    阅读次数:215
LAMP--2.Apache 编译安装
apache官网下载地址:http://www.apache.org/dyn/closer.cgi。建议使用国内开源镜像地址:http://mirrors.aliyun.com/apache/httpd/httpd-2.2.31.tar.bz2或http://mirrors.sohu.com/apache/httpd-2.2.31.tar.bz2。所谓的apache,真正的名字是httpd。下载[root@localhost~]#cd/u..
分类:Web程序   时间:2016-07-05 10:30:18    阅读次数:318
shell包含所有解压缩的函数
#!/bin/sh(){ if[-f$1];then case$1in *.tar.bz2)tarxjf$1;; *.tar.gz)tarxzf$1;; *.bz2)bunzip2$1;; *.rar)unrare$1;; *.gz)gunzip$1;; *.tar)tarxf$1;; *.tbz2)tarxjf$1;; *.tgz)tarxzf$1;; *.zip)gunzip$1;; *.Z)uncompress$1;; *.7Z)7zx$1;; *)echo"‘$1‘cannotbeextract()"..
分类:系统相关   时间:2016-07-02 23:05:28    阅读次数:233
Linux压缩与解压缩
.tar.gz 和 .tgz解压:tar zxvf FileName.tar.gz [-C Dir] 中括号中的内容可以省略。压缩:tar zcvf FileName.tar.gz DirName .tar.bz2解压:tar jxvf FileName.tar.bz2 [-C Dir] 中括号中的 ...
分类:系统相关   时间:2016-07-01 19:50:37    阅读次数:186
安装Apache
apache官方网站下载地址http://www.apache.org/dyn/closer.cgi下载的版本根据你的平台和需求而定。下载mysql到/usr/local/src/[root@localhostmysql]#cd/usr/local/src/ [root@localhostsrc]#wgethttp://mirrors.sohu.com/apache/httpd-2.2.31.tar.bz2解压[root@localhostsrc]#..
分类:Web程序   时间:2016-06-30 23:31:05    阅读次数:195
安装Apache
apache官方网站下载地址http://www.apache.org/dyn/closer.cgi下载的版本根据你的平台和需求而定。下载mysql到/usr/local/src/[root@localhostmysql]#cd/usr/local/src/ [root@localhostsrc]#wgethttp://mirrors.sohu.com/apache/httpd-2.2.31.tar.bz2解压[root@localhostsrc]#..
分类:Web程序   时间:2016-06-30 23:29:06    阅读次数:383
ubantu 解压缩
对于刚刚接触Linux的人来说,一定会给Linux下一大堆各式各样的文件名给搞晕。别个不说,单单就压缩文件为例,我们知道在Windows下最常见 的压缩文件就只有两种,一是,zip,另一个是.rap。可是Linux就不同了,它有.gz、.tar.gz、tgz、bz2、.Z、.tar等众多的 压缩文件 ...
分类:其他好文   时间:2016-06-24 21:59:15    阅读次数:185
linux下tar.gz、tar、bz2、zip等解压缩、压缩命令小结
Linux下最常用的打包程序就是tar了,使用tar程序打出来的包我们常称为tar包,tar包文件的命令通常都是以.tar结尾的。生成tar包后,就可以用其它的程序来进 行压缩了,所以首先就来讲讲tar命令的基本用法: tar命令的选项有很多(用man tar可以查看到),但常用的就那么几个选项,下 ...
分类:系统相关   时间:2016-06-24 08:08:36    阅读次数:238
php常用编译指令
./configure--prefix=/usr/local/php7--with-apxs2=/usr/sbin/apxs--enable-fpm--with-fpm-user=www--with-fpm-group=www--enable-soap--with-openssl--with-openssl-dir--with-mcrypt--with-pcre-regex--with-zlib--with-iconv--with-bz2--enable-calendar--with-curl--with-p..
分类:Web程序   时间:2016-06-21 21:04:41    阅读次数:262
比对工具之 BWA 使用方法
BWA算法简介: BWA-bactrack BWA-SW BWA-MEM BWA安装: # installing BWA tar jxf ~/software/bwa-0.7.10.tar.bz2 -C /opt/biosoft/ cd /opt/biosoft/bwa-0.7.10/ make e... ...
分类:其他好文   时间:2016-06-20 20:33:51    阅读次数:668
1519条   上一页 1 ... 89 90 91 92 93 ... 152 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!