독까의 이야기

윈도우만 사용하다보니, GUI 환경에 익숙해져서 커맨드 입력만으로는 약간 어려움. 

GUI 환경을 구축해보기로 함. 


# yum groupinstall "X Window System" "KDE Desktop"


설치 완료 후 x window 를 실행.

# startx


에러 발생하면서 실행 실패.

(EE) no screens found(EE)


가상화 서버에 설치를 하였더니, 그래픽 지원이 안되서 그런거 같음.

vnc-server 를 설치해서 구동을 시키기로 함.

# yum install tigervnc-server -y


config 수정

# vi /etc/sysconfig/vncservers

VNCSERVERS="1:root"

VNCSERVERARGS[1]="-geometry 1600x900"


vncserver 접속 패스워드 설정

# vncpasswd

password: 신규 패스워드 입력

verify: 패스워드 다시 입력


vncserver 실행

# service vncserver start

Starting VNC server: 1:root xauth: (stdin):1:  bad display name "www:1" in "add" command


New 'www:1 (root)' desktop is www:1


Creating default startup script /root/.vnc/xstartup

Starting applications specified in /root/.vnc/xstartup

Log file is /root/.vnc/www:1.log


                                                           [  OK  ]

정상 실행 확인



이제 접속툴을 이용해서 GUI 에 접속 해야 함

vncview 다운로드 및 설치



서버 아이피 입력:포트

ex)192.168.1.1:5901


GUI 모드 접속 정상




리눅스 서버 부팅시 자동 실행 되도록 설정

# chkconfig vncserver on

상태 확인

# chkconfig vncserver --list

vncserver       0:off   1:off   2:on    3:on    4:on    5:on    6:off


'리눅스 공부' 카테고리의 다른 글

리눅스 접근 설정 iptables  (0) 2018.02.07
리눅스 APM 설치  (0) 2018.02.07
리눅스 nslookup 설치  (0) 2018.02.07
리눅스 whois 설치  (0) 2018.02.07
CentOS 설치 후 업데이트 및 버전 확인  (0) 2018.02.07

서버에서 nslookup 명령어를 통해 특정 사이트의 DNS 정보를 확인하려고 했는데, 설치가 되어 있지 않아서 조회 불가. 

설치 진행

# yum install bind-utils -y

# nsloookup naver.com

Non-authoritative answer:

Name:   naver.com

Address: 210.89.164.90

Name:   naver.com

Address: 125.209.222.142

Name:   naver.com

Address: 210.89.160.88

Name:   naver.com

Address: 125.209.222.141



'리눅스 공부' 카테고리의 다른 글

리눅스 APM 설치  (0) 2018.02.07
CentOS GUI 모드 구축  (0) 2018.02.07
리눅스 whois 설치  (0) 2018.02.07
CentOS 설치 후 업데이트 및 버전 확인  (0) 2018.02.07
리눅스/유닉스 기본 명령어  (0) 2018.02.07

서버에서 whois 명령어를 통해 특정 사이트의 정보를 확인하려고 했는데, 설치가 되어 있지 않아서 조회 불가. 

whois 설치 진행.

# yum install jwhois -y

# whois naver.com

[root@www ~]# whois naver.com

[Querying whois.verisign-grs.com]

[whois.verisign-grs.com]

   Domain Name: NAVER.COM

   Registry Domain ID: 793803_DOMAIN_COM-VRSN

   Registrar WHOIS Server: whois.gabia.com

   Registrar URL: http://www.gabia.com

   Updated Date: 2016-08-05T06:37:57Z

   Creation Date: 1997-09-12T04:00:00Z

   Registry Expiry Date: 2023-09-11T04:00:00Z

   Registrar: Gabia, Inc.

   Registrar IANA ID: 244

   Registrar Abuse Contact Email:

   Registrar Abuse Contact Phone:

   Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited

   Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited

   Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

   Name Server: NS1.NAVER.COM

   Name Server: NS2.NAVER.COM

   DNSSEC: unsigned

   URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/

>>> Last update of whois database: 2018-02-07T01:04:20Z <<<



'리눅스 공부' 카테고리의 다른 글

리눅스 APM 설치  (0) 2018.02.07
CentOS GUI 모드 구축  (0) 2018.02.07
리눅스 nslookup 설치  (0) 2018.02.07
CentOS 설치 후 업데이트 및 버전 확인  (0) 2018.02.07
리눅스/유닉스 기본 명령어  (0) 2018.02.07