Monday, February 6, 2012 7:19

Posts Tagged ‘Software’

VMware ESX Server Installation

Friday, July 24, 2009 6:25

http://hi.baidu.com/ih_mvh/blog/item/671707176253da054b90a7a6.html http://en.wikipedia.org/wiki/VMware_ESX http://www.ibm.com/developerworks/cn/data/library/techarticles/dm-0703gupta/ http://bbs.51cto.com/thread-595303-1.html

This was posted under category: Computer Skill  |  Read Full Story  |  0 Comments

Convert Microsoft XPS Document To PDF

Tuesday, July 21, 2009 4:11

The XPS Document Writer allows you to create .xps files using any program that you run on Windows. XPS documents look the same in print as they do on the screen. They are portable, like any other file that you can e–mail or transfer using a CD, DVD, universal serial ...

This was posted under category: Computer Skill  |  Read Full Story  |  1 Comment

Installing the Microsoft Loopback Adapter for virtual pc

Saturday, March 21, 2009 9:30

Installing the Microsoft Loopback Adapter for virtual pc. ...

This was posted under category: Computer Skill  |  Read Full Story  |  0 Comments

CVS Study Note

Monday, January 5, 2009 13:26

CVS  Concurrent Version System repository cvs -d /home/cvsroot init cvs import -m "message" $project_name $vedorag $releasetag working directory [:method:][[user][:password]@]hostname[:[port]]/path/to/repository local        :local:/usr/local/cvsroot pserver        :pserver:dli:dbrg2004@doublebridge.com.cn:/cvsdata/repository ssh/rsh        CVS_RSH=ssh/rsh ext        :ext:lidnux@doublebridge.com.cn:/cvsdata/repository checkout cvs -d /home/cvsroot checkout $project_name cvs checkout $project_name cvs co $project_name update cvs update cvs up cvs update -d diff cvs diff $file_name cvs diff -r $tag_1 -r $tag_2 $file_name commit cvs commit $file_name        # a editer($CVSEDITOR $EDITOR $VISUAL) ...

This was posted under category: IT Leading News, Team Fight  |  Read Full Story  |  0 Comments

Bugzilla安装笔记

Monday, January 5, 2009 13:25

/usr/bin/perl -MCPAN -e 'install "GD"' bugzilla安装步骤(For RHEL AS4): 先装apche-1.3.34 解压:tar zxvf apache-1.3.34.tar.gz 安装:./configure --prefix=/usr/local/apache --enable-module=so (修改httpd.conf文件,在"DefaultType text/plain"下添加一行"AddDefaultCharset GB2312") 再装mysql-4.0.26 解压:tar zxvf mysql-4.0.26.tar.gz 安装:./configure --prefix=/usr/local/mysql --with-charset=gbk 建bugs数据库和bugs用户:grant all privileges on bugs.* to 'bugs'@'%' identified by 'bugs'; 最后解压bugzilla到/usr/local/下面 # cd /usr/local/bugzilla # ./checksetup.pl 安装缺少的perl模块: AppConfig Mail::Mailer Date::Format IO-stringy MIME-Base64 MIME::Parser Template (PathTools-3.24) (CGI.pm-3.25) (DBI-1.53) 安装:perl Makefile.PL make (make test) make install groupadd apache 修改localconfig文件 $db_host = IP地址 $db_pass = 'bugs' ./checksetup.pl # ln -s /usr/local/bugzilla /var/www/bugzilla(之前可能需要mkdir /var/www) Alias /bugzilla/ "/var/www/bugzilla/" <Directory "/var/www/bugzilla/">; Options ExecCGI AllowOverride Limit </Directory> AddHandler cgi-script .cgi(将其前面的#注释掉,使之生效) DirectoryIndex index.html ...

This was posted under category: IT Leading News  |  Read Full Story  |  0 Comments

Open souroce HRM software – Orange HRM

Sunday, January 4, 2009 20:41

OrangeHRM aims to be the world’s leading open source HRM solution for small and medium sized enterprises (SMEs) by providing a flexible and easy to use HRM system affordable for any company worldwide. The project was started during fall 2005 and the first beta release was made in January 2006. Today ...

This was posted under category: IT Leading News  |  Read Full Story  |  0 Comments
Build a CVS server

Build a CVS server

Friday, November 28, 2008 13:04

Today I built a CVS server on Windows 2000 server. I have built CVS servers on Windows 2003, Windows 2000, Linux before, so this task's easy for me. Here is my note just for Windows: 1. Check the format of disk where your CVS ...

This was posted under category: Team Fight  |  Read Full Story  |  0 Comments