1. terminal에 sudo apt-get install rdesktop 를 입력한다.
2. 윈도우에 계정과 비밀번호를 만든다.
2. 접속할 원격 컴퓨터에 hanaeasyconfig 를 받아 실행시킨다. (링크파일)
3. 프로그램에 뜨는 "Hostname"을 적어둔다
4. webtop 터미널이나 런처아이콘을 만들어서 "rdesktop Hostname" 를 쳐서 접속을 확인한다.
5. 풀브라우징 명령어는 "rdesktop Hostname -f" 입니다.
6. 기본틀에서 다음과 같이 명령어를 추가해서 쓰시면 됩니다.
rdesktop Hostname -u ID -p 비밀번호 -f -P -a 16 -k ko -x 0x81
-u ID : 윈도우 아이디 자동화
-p 비밀번호 : 윈도우 비밀번호 자동화
-a 16/24/32 : 그래픽 16비트/ 24비트/ 32비트
-f : 풀브라우징
-k ko : 한글입력기설정
-x 0x81 : 그래픽 안정화작업(?)
'STUDY > Linux' 카테고리의 다른 글
[Linux] 실행파일 백그라운드로 실행하기. (0) | 2013.12.20 |
---|---|
Centos splint 설치 (0) | 2013.06.06 |
rdesktop 명령어 [윈도우 사용하기] (0) | 2013.05.19 |
우분투 오류 보고 창 없애기 (0) | 2013.05.18 |
[Ubuntu] SSH 접속이 느릴 때 (0) | 2013.05.18 |
리눅스 nic, duplex 설정 (0) | 2013.05.15 |
sudo gedit /etc/default/apport 문서를 열어
enabled 값을 0으로 고친다.
'STUDY > Linux' 카테고리의 다른 글
Centos splint 설치 (0) | 2013.06.06 |
---|---|
rdesktop 명령어 [윈도우 사용하기] (0) | 2013.05.19 |
우분투 오류 보고 창 없애기 (0) | 2013.05.18 |
[Ubuntu] SSH 접속이 느릴 때 (0) | 2013.05.18 |
리눅스 nic, duplex 설정 (0) | 2013.05.15 |
리눅스 폴더별로 용도 (0) | 2013.05.15 |
Ubuntu에서 ssh를 사용해 원격 컴퓨터에 접속할 때 상당히 오래 기다려야 하는 경우가 있다.
-v 옵션을 사용하면 디버깅 메시지를 볼 수 있는데, 붉은색으로 표시한 부분에서 상당히 지연됨을 알 수 있었다.
$ ssh xx.xxxx.com -v
.............
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
Credentials cache file '/tmp/krb5cc_1000' not found
debug1: Unspecified GSS failure. Minor code may provide more information
Credentials cache file '/tmp/krb5cc_1000' not found
debug1: Unspecified GSS failure. Minor code may provide more information
debug1: Next authentication method: publickey
debug1: Trying private key: /home/cherrykyun/.ssh/identity
debug1: Trying private key: /home/cherrykyun/.ssh/id_rsa
debug1: Trying private key: /home/cherrykyun/.ssh/id_dsa
debug1: Next authentication method: password
/etc/ssh/ssh_config 파일에서 "GSSAPIAuthentication no" 부분을 찾아 주석을 제거하면 해결된다.
............
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# GSSAPIKeyExchange no
'STUDY > Linux' 카테고리의 다른 글
rdesktop 명령어 [윈도우 사용하기] (0) | 2013.05.19 |
---|---|
우분투 오류 보고 창 없애기 (0) | 2013.05.18 |
[Ubuntu] SSH 접속이 느릴 때 (0) | 2013.05.18 |
리눅스 nic, duplex 설정 (0) | 2013.05.15 |
리눅스 폴더별로 용도 (0) | 2013.05.15 |
VirtualHost 설정시 에러 Warning: DocumentRoot [/home/***/public_html] does not exist (0) | 2013.05.11 |