VcXsrv 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 가 앞 에 저 장 된 프로필 입 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
용감한 바로 가기 및 우분투 응용 프로그램안녕하세요 여러분, 이 기사에서는 모든 사이트에서 pwa를 생성하고 실행기 응용 프로그램으로 추가하는 방법을 설명하고 싶습니다. 일부 웹사이트는 PWA로 설치를 허용하지 않지만 유사한 애플리케이션을 원합니다. 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.