2011年12月22日

Linux 打包压缩&排除文件

摘要: #tar -cvf 文件名 文件夹 <==仅打包,不压缩!#tar -zcvf 文件名 文件夹 <==打包后,以 gzip 压缩#tar -jcvf 文件名 文件夹 <==打包后,以 bzip2 压缩排除指定文件:排除test目录下a文件夹#tar -zcvf test.tar.gz --exclude=test/a test排除test目录下a、b文件夹#tar -zcvf test.tar.gz --exclude=test/a --exclude=test/b test 阅读全文

posted @ 2011-12-22 18:53 、邦 阅读(496) 评论(0) 推荐(0) 编辑

linux svn 搭建

摘要: 注:以下操作需跟apache搭用,这里就不介绍apache的安装步骤了。#tar -zxvf subversion-1.4.0.tar.gz#cd /subversion/subversion-1.4.0#./configure --with-apxs=/usr/local/amp/apache/bin/apxs--with-apr=/usr/local/amp/apache/--with-apr-util=/usr/local/amp/apache/--prefix=/opt/subversion--with-ssl--with-zlib--enable-maintianer-mode#ma 阅读全文

posted @ 2011-12-22 15:56 、邦 阅读(2428) 评论(0) 推荐(0) 编辑

导航