VcXsrv Windows X Server

windows 에서 원본 을 열 고 X Server 를 사용 하기 좋 은 것 을 발견 하 였 다.
http://sourceforge.net/projects/vcxsrv/
Windows X-server based on the xorg git sources (like xming or cygwin's xwin), but compiled with Visual C++ 2010. Source code can also be compiled with VS2008, VS2008 Express Edition and VS2010 Express Edition.
설치 후 system. XWinrc 메뉴 수정
menu remotehost {
    ubuntu-svr  menu   remoteapps
}

menu remoteapps {
    xterm exec "wscript ubuntuexterm.vbs"    
    emacs exec "wscript ubuntuemacs.vbs"
}

menu root {
// Comments fit here, too...
    "Reload system.XWinrc"    RELOAD
    "Applications"            menu    apps
    Separator
    "Show log"    exec    "notepad %logfile%"
    Separator
    "Remote Apps"            menu     remotehost
}
 

vbs 스 크 립 트 (원 격 프로그램 을 시작 할 때 콘 솔 창 cmd 가 나타 나 지 않 는 것 이 목적 입 니 다):
dim objShell
set objShell=wscript.createObject("WScript.Shell")
iReturnCode=objShell.Run("plink -ssh -2 -X -pw pwd [email protected] emacsclient -c -a '' ",0,TRUE)


전체 이름 이 reoteexec. vbs 와 같은 일반적인 실행 스 크 립 트 를 편집 할 수 있 습 니 다.
내용 은 다음 과 같다.
dim objShell
set objShell=wscript.createObject("WScript.Shell")
Set args = WScript.Arguments
if args.Count > 2 then
    pwd = args(0)
    url = args(1)
    cmd = args(2)

    iReturnCode=objShell.Run("plink -ssh -2 -X -pw " & pwd &" " & url & " " & cmd,0,TRUE)

 end if



다음 명령 을 사용 하여 실행 할 수 있 습 니 다:
wscript remoteexec.vbs pwd [email protected] emacs


메뉴 설정:
menu vmsvrapps {
    terminator exec "wscript remoteexec.vbs pwd [email protected] terminator"    
    gnome-terminal exec "wscript remoteexec.vbs pwd [email protected] gnome-terminal"
    emacs exec "wscript remoteexec.vbs pwd [email protected] emacs"
}


자동 시작 x server:
1. xlanuch 를 실행 하여 원 하 는 대로 설정 하고 프로필 저장
2. 시작 항목 을 추가 합 니 다. 시작 명령 은:
xlanuch -run config.xlaunch
config. xslaunch 가 앞 에 저 장 된 프로필 입 니 다.

좋은 웹페이지 즐겨찾기