[펌]http://millky.com/@origoni/post/281?language=ko_kr

1. 우선 CentOS는 넷인스톨 방식으로 설치한다. 그래야 네트워크 셋팅을 알아서 해줌 ㅋ
어려운건 아니지만 구차나. (setuptool에 왜 네트워크 설정이 없을까? -> 따로 설치해야 함)

그리고 설치직후 리눅스 통합서비스 설치
http://www.microsoft.com/download/en/details.aspx?id=26837

2. 네트워크 셋팅
a. /etc/sysconfig/network-scripts/ifcfg-eth0 - 파일에가서 MAC수정
b. service NetworkManager stop
c. chkconfig NetworkManager off
d. service network restart
e. reboot or ifconfig eth0 (요거하면 IP가 정상적으로 나와서 원격접속을 이용 가능)



3. 설치 할 것들
yum -y upgrade
yum -y install wget
wget로 자바, 톰켓, 등을 다운 받고 설치하자
wget http://download.oracle.com/otn-pub/java/jdk/7/jdk-7-linux-x64.rpm
rpm -ivh jdk-7-linux-x64.rpm
wget http://mirror.khlug.org/apache/tomcat/tomcat-7/v7.0.20/bin/apache-tomcat-7.0.20.tar.gz
tar -xvf apache-tomcat-7.0.20.tar.gz

service tomcat7 start


yum install -y setuptool
setup
yum install -y ntsysv

ntsysv

yum install -y system-config-network system-config-network-tui
system-config-network

yum -y install ipvsadm
yum -y install mc

yum install -y openssh*
yum install -y libaio

service iptables stop <임시로 방화벽 끄고 톰켓이 동작하나보고 다시 켜야 함


4. 설정
컴퓨터 이름 변경 : vi etc/sysconfig/network
VIP상태 보기 : watch 'ipvsadm -Ln --sort' --interval=3


1. Log on to XenServer host as a root user.



2. Create the required mount point:

Example: # mkdir /share (this creates a folder called share under / )



3. Use the mount command as follows:

# mount -t cifs //server/share -o username=UserName,password=myPassword /share



4. Type the command below to verify share has been mounted:

# mount



5. You should be able to list browse and list contents of share using 

#ls -l



http://support.citrix.com/article/CTX121937




mount /dev/cdrom /mnt

cd /mnt/Linux

./install.sh






# cd /mnt/Linux

 

# rpm -ivh --nodeps xe-guest-utilities-6.2.0-1137.x86_64.rpm

Preparing...                          ################################# [100%]

Updating / installing...

   1:xe-guest-utilities-6.2.0-1137    ################################# [100%]

 

# rpm -ivh xe-guest-utilities-xenstore-6.2.0-1137.x86_64.rpm

Preparing...                          ################################# [100%]

Updating / installing...

   1:xe-guest-utilities-xenstore-6.2.0################################# [100%]



svn cleanup 실패시..

 

sqlite 싸이트에서( http://www.sqlite.org/download.html ) sqlite.exe를 다운받아

 

SVN 폴더에 복사( 숨은폴더 .svn 가 보이는 폴더에 복사 )

 

cmd 실행하여 SVN폴더로 이동한뒤 아래와 같이 입력

 

sqlite3 .svn/wc.db "select * from work_queue"


sqlite3 .svn/wc.db "delete from work_queue"


따로 commit이나 rollback은 없는듯 함

+ Recent posts