当前位置:  建站>其它
本页文章导读:
    ▪linux下压缩工具的区分-gzip,bzip2,tar      总说明: gzip,bzip2只能针对一个文件,而tar是打包没有压缩,可以对多个文件及目录,但tar有gzip及bzip2的压缩功能。bzip2是gzip的升级版,压缩比更高。 winrar只能gzip方式压缩支持解压 用得最多t.........
    ▪基于apache搭建svn      前言 或许现在大多数高级程序员都用github来做代码管理工具,但是还有很多公司考虑到便于实施和人员接受能力的问题,还是会选择svn作为代码版本管理工具,下面介绍一下如何基于apache搭.........
    ▪Windows下查看占用端口的程序      以8888为例 第一步 netstat -aon | findstr 8888    查找8888对应的程序的pid 第二步 tasklist|findstr "pid" OK 是matlab占用了8888端口 Over! 作者:God2469 发表于201.........

[1]linux下压缩工具的区分-gzip,bzip2,tar
    来源: 互联网  发布时间: 2013-11-02

总说明:
gzip,bzip2只能针对一个文件,而tar是打包没有压缩,可以对多个文件及目录,但tar有gzip及bzip2的压缩功能。bzip2是gzip的升级版,压缩比更高。
winrar只能gzip方式压缩支持解压
用得最多tar加gzip压缩

gzip,bzip2要点说明:
压缩文件时,原文件会消失,解压时,原压缩文件也消失,但用 bzip2  -c man.config > man.config.bz2 可保留原文件,gzip也一样这样用
都是用-d 可以解开文件
zcat,bzcat可以直接读取压缩文件里的内容而不用解压
gzip 档名--压缩;bzip2 -z 档名--压缩
gzip可以被WinRAR 这个windows软体解压缩,但bzip2不行
gzip的后缀是.gz,bzip2的后缀是.bz2

tar要点说明
应用更广,可以打包并压缩,但只有gzip的压缩可以被windows的winrar解压
后缀--只打包.tar,加gzip则.tar.gz,加bzip2则.tar.bz2
-z是通过gzip,-j是通过bzip2
-p 这个选项的原因是为了保存原本档案的权限与属性,可用于备份
压缩:tar -zcv -f filename.tar.bz2 要被压缩的档案或目录名称
查询包里有哪些文件目录:tar -ztv -f filename.tar.bz2
解压缩:tar -zxv -f filename.tar.bz2 -C 欲解压缩的目录
打包后原文件不消失,解包后也不消失
解压tar里的一个文件时 tar -zxv -f /root/etc.tar.bz2 etc/shadow  --最后一个是要解开的档名,可以通过tar -ztvf先查看有哪些文件

作者:wang7dao 发表于2013-1-24 1:15:32 原文链接
阅读:41 评论:0 查看评论

    
[2]基于apache搭建svn
    来源: 互联网  发布时间: 2013-11-02
前言
或许现在大多数高级程序员都用github来做代码管理工具,但是还有很多公司考虑到便于实施和人员接受能力的问题,还是会选择svn作为代码版本管理工具,下面介绍一下如何基于apache搭建svn版本库

安装svn相关模块

安装命令
sudo apt-get install subversion libapache2-svn

安装成功后截图


配置svn版本库


创建svn根目录
mkdir -p /home/svn

创建所需要的版本库
cd  /home/svn/
sudo svnadmin create 版本库的名字

修改版本库目录的权限
因为是通过apache访问svn,所以目录的属主均为www-data即可
sudo  chown -R www-data.www-data 版本库名字


配置Apache 修改apache基于svn模块的配置文件
sudo vim /etc/apache2/mods-available/dav_svn.conf

修改后配置文件内容如下
# dav_svn.conf - Example Subversion/Apache configuration
#
# For details and further options see the Apache user manual and
# the Subversion book.
#
# NOTE: for a setup with multiple vhosts, you will want to do this
# configuration in /etc/apache2/sites-available/*, not here.

# <Location URL> ... </Location>
# URL controls how the repository appears to the outside world.
# In this example clients access the repository as http://hostname/svn/
# Note, a literal /svn should NOT exist in your document root.
<Location /svn>

  # Uncomment this to enable the repository
  DAV svn

  # Set this to the path to your repository
 # SVNPath /home/svn
  # Alternatively, use SVNParentPath if you have multiple repositories under
  # under a single directory (/var/lib/svn/repo1, /var/lib/svn/repo2, ...).
  # You need either SVNPath and SVNParentPath, but not both.
  SVNListParentPath on
  SVNParentPath /home/svn

  # Access control is done at 3 levels: (1) Apache authentication, via
  # any of several methods.  A "Basic Auth" section is commented out
  # below.  (2) Apache <Limit> and <LimitExcept>, also commented out
  # below.  (3) mod_authz_svn is a svn-specific authorization module
  # which offers fine-grained read/write access control for paths
  # within a repository.  (The first two layers are coarse-grained; you
  # can only enable/disable access to an entire repository.)  Note that
  # mod_authz_svn is noticeably slower than the other two layers, so if
  # you don't need the fine-grained control, don't configure it.

  # Basic Authentication is repository-wide.  It is not secure unless
  # you are using https.  See the 'htpasswd' command to create and
  # manage the password file - and the documentation for the
  # 'auth_basic' and 'authn_file' modules, which you will need for this
  # (enable them with 'a2enmod').
  AuthType Basic
  AuthName "Subversion Repository"
  AuthUserFile /etc/apache2/dav_svn.passwd

  # To enable authorization via mod_authz_svn
  AuthzSVNAccessFile /etc/apache2/dav_svn.authz

  # The following three lines allow anonymous read, but make
  # committers authenticate themselves.  It requires the 'authz_user'
  # module (enable it with 'a2enmod').
  #<LimitExcept GET PROPFIND OPTIONS REPORT>
    Require valid-user
  #</LimitExcept> 

</Location>

注意:
  • <Location /svn>与</Location>成对出现
  • DAV svn开启DAV模块支持
  • SVNPath与SVNParentPath二选其一,不能同时出现,建议使用SVNParentPath,这样可以在SVN的根目录下创建多个svn版本库
  • 开启BASIC认证
  • 多读一下英文注释,很简单的

创建svn账户
sudo htpasswd [-c] /etc/apache2/dav_svn.passwd $username

注意:
  • /etc/apache2/dav_svn.passwd是在apache的dav_svn.conf里AuthUserFile指定的文件
  • 参数-c,当指定文件不存在时需要该参数创建文件,当指定文件存在时,不需要该参数,否则会覆盖掉原有文件中记录

访问权限控制 修改AuthzSVNAccessFile指定文件
sudo vim /etc/apache2/dav_svn.authz

创建组并进行读写控制
示例文件配置

[groups]
haotest1-admin=wangzhengyi
haotest1-dev=wangzhengyi,chenshan

[haotest1:/]
@haotest1-dev=r
@haotest1-admin=rw

[haotest1:/trunk]
@haotest1-dev=rw

[haotest1:/tags]
@haotest1-admin=rw

参数说明
  • [groups]针对haotest1版本库设置了两个组,一个admin,一个dev
  • [haotest1:/]这是haotest1版本库的根目录,针对dev组只有r权限,也就是只能检出,针对admin有rw权限,可以创建,删除,修改等权限
  • 点到为止,不明白的google一下,说多了就没意思了


检出测试
场景
远程主机ip:192.168.1.1 检出版本库的路径:/svn/haotest1

检出命令
svn co http://192.168.1.1/svn/haozhaotest1 --username wangzhengyi

创建目录并提交



作者:zinss26914 发表于2013-1-24 11:09:21 原文链接
阅读:0 评论:0 查看评论

    
[3]Windows下查看占用端口的程序
    来源: 互联网  发布时间: 2013-11-02

以8888为例


第一步 netstat -aon | findstr 8888   


查找8888对应的程序的pid


第二步 tasklist|findstr "pid"



OK 是matlab占用了8888端口

Over!

作者:God2469 发表于2013-1-25 14:46:40 原文链接
阅读:32 评论:0 查看评论

    
最新技术文章:
▪linux内核中的信号机制--信号处理    ▪windows忘记密码    ▪常见的10种“瓶颈”
▪详解Linux内存使用信息    ▪「学习笔记——Linux」Linux软件管理(RPM,Dpkg,APT)...    ▪Shell(Bash)编程实例之获取某个文件夹下的所有...
▪Dynamics CRM 2011编程系列(49):FetchExpression(一)...    ▪Linux个人磁盘分区方案(20G)    ▪细谈MySQL配置的优化
▪交换机与路由器的区别    ▪什么叫网关的精解    ▪Linux下date命令,格式化输出,时间设置
▪「学习笔记——Linux」Linux账号管理与ACL权限...    ▪bash参考手册之四(shell内建命令)    ▪集线器、交换机、路由器、中继器及网关、网...
▪【学习笔记——Linux】Linux下正确关机方法    ▪【学习笔记——Linux】Linux磁盘和文件系统管...    ▪实验一 SCVMM安装
▪Tomcat7和mysql连接池的配置方法和测试(dbcp方...    ▪Tomcat7和mysql连接池的配置方法和测试(dbcp方...    ▪linux内核中的信号机制--信号发送
▪轻松搭建自己的Linux发行版本    ▪bash参考手册之三(基本的Shell特性)续九    ▪fedora18无线用pppoe拨号上网
▪Dynamics CRM 2011编程系列(49):FetchExpression(一)...    ▪Linux个人磁盘分区方案(20G)    ▪细谈MySQL配置的优化 iis7站长之家
▪修改CentOS的yum源为163    ▪CentOS下源码安装php+apache+mysql    ▪Redis监控方案
▪linux下压缩工具的区分-gzip,bzip2,tar    ▪基于apache搭建svn    ▪Windows下查看占用端口的程序
▪Nginx+CI 出现404错误    ▪tcpdump抓包工具的高级应用    ▪Windows socket之IOCP实例----IOCP开发驾照理论考试...
▪Web访问异常简单报警    ▪【linux环境配置】linux改成root用户的命令    ▪IIS7.0未能加载文件或程序集
▪linux下获得root权限    ▪IIS6 配置ASP.NET网站伪静态    ▪服务器更换硬盘后Oracle不能连接问题的解决
▪在源Exchange Mailbox 服务器宕机的情况下将用户...    ▪Ubuntu下WordPress更新固定链接方法总结    ▪如何在suse linux 建立共享文件夹
▪linux ntp 时间服务器及客户端安装配置    ▪Thunderbird设置邮件回复时自动签名和邮件引用...    ▪Resin Windows一键部署应用脚本BAT
▪认识Linux系统服务(鸟哥18章笔记)    ▪Vmware中的网络工作模式    ▪Cygwin + NS2 + Win XP 安装方法 网上 唯一 有效版...
▪linux内核中的文件描述符(一)--基础知识简介    ▪64位系统DOSBox 下面nasm编译程序出现"Unable to ope...    ▪Linux 自动上传备份文件
▪Linux下MySQL配置文件my.ini位置    ▪Memcached的管理    ▪linux内核中的copy_to_user和copy_from_user(二)—图解...
▪jdk1.7和tomcat7安装过程    ▪虚拟项目学习git/github原理与基本操作9    ▪以wifi为媒介,linux系统与android设备交互
▪find和grep命令    ▪linux编程实例1    ▪Dynamics CRM 2011编程系列(48): WCF Service 和 Web...
▪vmware 下的linux操作系统 共享windows网络    ▪一次在安装完VMware tools后,系统无法进入图形...    ▪Ubuntu 12.04重装手记
▪Linux常见的登录文件档案名称    ▪虚拟项目学习git/github原理与基本操作2    ▪安装MyEclipse6.5提示输入proxy ip和端口号问题解...
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3