본문으로 바로가기

윈도우에서 Xmanager 접속환경만들기

category 카테고리 없음 2018. 9. 3. 13:53
반응형

윈도우에서 Xmanager로 우분투 접속을 위한 환경을 만들어보자.

1. xdm설치

sudo apt-get install xdm

2. 설정파일값변경하기
이전버전에서는 /etc/gdm/gdm.conf 파일을 수정하였으나 9.10버전에는 이 파일이 없다.
참고로 이전버전사용자는 위 gdm.conf파일을 열어서
아래부분을 찾아가서 Enable=false로 되어 있는 부분을 Enable=1 로 수정해주면된다.

[xdmcp]
# Distributions: Ship with this off. It it never a safe thing to leave out~~
~~~
~~
~~
#the security of XDMCP
Enable=1


삽질끝에 우분투 9.10버전에서는 이전버전과 다르게 XML로 변경되었다는 사실을 알았다.
그래서 아래 파일을 열어준다.

sudo gedit /etc/gdm/gdm.schemas

파일내용에보면 아래와 같이 true->false,  false->true로 변경해준다.

    <schema>
      <key>security/DisallowTCP</key>
      <signature>b</signature>
      <default>false</default>
    </schema>

    <schema>
      <key>xdmcp/Enable</key>
      <signature>b</signature>
      <default>true</default>
    </schema>

이제 Xmanager에서 우분투로 접속해서 윈도우에서 사용해보자 .

반응형