원문 : http://kerberosj.tistory.com/108
( younjin.jeong@gmail.com, 정윤진 )

"CHEF" 이건 모지?? 찾아봐야 겠다.

출처 : http://citylock.tistory.com/389


freens 가 VNC 보다 빠르고 안정적이다고 해서 설치해봤는데, 
설치까지 문제는 없었는데, 실행하는 순간 에러 발생 

Error Detail 메시지 

Info: Display running with pid '0' and handler '0x54'.

NXPROXY - Version 3.2.0

Copyright (C) 2001, 2007 NoMachine.
See http://www.nomachine.com/ for more information.

Info: Proxy running in client mode with pid '5828'.
Session: Starting session at 'Mon May 26 11:14:32 2008'.
Error: Can't determine the location of the X display socket.
Error: Error 2 'No such file or directory' checking '嗟????덝wE?w????/.X11-unix'.
Session: Session terminated at 'Mon May 26 11:14:32 2008'.

server: ubuntu 7.04 nxserver_3.2.0-7

client: Windows Vista nxclient-3.2.0-10


인터넷에 검색해보니 위와 같은 경우, 클라이언트 PC(XP 사용) 에서 호스트명, NW호스트명을 한글로 설정해서 발생하는 문제였다. 


그래서, 레지스트리 편집기(regedit)를 이용해서 수정하고 실행하니 연결 성공~ 


HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters 에서 

Hostname & NV Hostname 을 영문으로 수정



참고사이트 : http://cafe.naver.com/linuxcare.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=24385


'Linux' 카테고리의 다른 글

vim TIPs  (0) 2022.01.10
psh script  (0) 2016.06.13
linux 백업/복구 후 selinux 처리  (0) 2010.10.14
Channel bonding  (0) 2010.10.11
Linux Backup & Restore  (0) 2010.08.02
원격 병렬 명령에 사용하는 pdsh 설치 방법입니다.

http://www.wbitt.com/my-howtos/91-installing-pdsh-on-hpc-cluster.html

multi-thread 로 실행되기 때문에 빠르다고 합니다.
Rocks 에 들어있는 rocks run host 보다 좋은 듯.

pdsh, pdcp, rpdcp 등의 명령이 제공되고, 노드 선택할 때 유연성이 있습니다.

pdsh -w node[01-05] 'uptime'

범위를 설정하기 편하더군요..

참고 : http://linuxer.pe.kr/300

'Rocks' 카테고리의 다른 글

Rocks Command  (0) 2010.12.09
Adding a Login Appliance to Your Cluster  (0) 2010.12.09
Channel Bonding Interfaces  (0) 2010.12.09
Add roll on an existing server  (0) 2010.11.23
What you have to do after channel bonding  (0) 2010.10.19


Visual Block 사용
" CTRL-V and SHIFT-Insert are Paste
"map <C-V>  "+gP
map <S-Insert>  "+gP

"cmap <C-V>  <C-R>+
cmap <S-Insert>  <C-R>+

기본폰트 변경
"set guifont=Courier\ New
set guifont=Courier_New:h10

어두운 배경 사용
"set background=dark

colorscheme torte

가로세로 크기 지정
" GUI 이면, 시작시 크기, 위치 설정

if has("gui_running")
    set lines=25
    set co=100
"    winp 4 4
endif


공백 넣기
" 공백 넣기 mapping
"map <F2> j02i <Esc>
map <F2> :set nu<CR>
map <F3> :set nonu<CR>
map <F4> j04i <Esc>
map <F6> j06i <Esc>
map <F8> j08i <Esc>
map <F9> 0i#<Esc>wx
map ; o<Esc>

+ Recent posts