Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. lightdm 설치
    저장소 정보 설치

    Code Block
    # yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 또는 yum install http://download.netsarang.co.kr/files/etc/epel-release-7-0.2.noarch.rpm
    # yum install lightdm


  2. lightdm 설정

    Code Block
    # vi /etc/lightdm/lightdm.conf

    (파일이 없는 경우 새로 생성합니다.)

    위 파일에서 다음과 같이 되도록 수정합니다.

    Code Block
    [XDMCPServer]
    enabled=true (대소문자 정확히 구분. True=>X, TRUE => X)


  3. 기본 Display Manager인 gdm 해지 및 중지

    Code Block
    # systemctl disable gdm ; systemctl stop gdm


  4. 새 Display Manager로서 lightdm 지정 및 시동

    Code Block
    # systemctl enable lightdm; systemctl start lightdm


  5. 방화벽 해제(방화벽 규칙에서 UDP 177번 등록에 대한 내용은 해당 OS의 사용자 매뉴얼을 참고하세요)

    Code Block
    # systemctl stop firewalld.service


...