운영체제/MAC

[Mac] Mac OS에 X11설치하기

louky 2019. 6. 24. 15:33
반응형

환경

  •  MacOS Mojave (10.14) 

맥북에서 Xwindow를 띄우기 위한 설정이다. 

다른 것도 있겠지만 linux 의 kvm GUI 관리툴인 virt-manager를 사용하기 위함이다. 

 

사전에 linux에는 GUI 환경이 되어 있어야 한다 (Linux Xwindow 설치 방법 아래 링크 참조

 https://louky0714.tistory.com/entry/CentosRHEL-xwindow-설정

 

[Centos/RHEL] Centos7 minimal OS에 xwindow 설정

Centos나 Rhel를 miniaml로 OS를 install한 후 설정하기 위한 방법이다. [root@cronus ~]# yum groupinstall "X Window System" "Desktop" "Fonts" "Korean Support" [root@cronus ~]# yum install gnome-classic-..

louky0714.tistory.com

 맥북에서   Xquartz를 설치하여 사용하면 되며 설치 방법도 간단하다. 

   https://www.xquartz.org/

 

 

설치파일을 다운로드 한다음에  설치를 진행하면 된다. 

설치가 완료 된 후에는 로그아웃 또는 맥북 재기동을 한 후에  터미널에서 ssh -X root@ip 하여 virt-manager가 있는 장비로 접속하면 된다. 

 

해당 장비에 접속 virt-manager를 하면 사용하고 있는 맥북에서 GUI로 볼수 있다. 

 

 

 

xquartz는 설치 방법은 있으나 별도의 삭제툴이 없다. app cleaner를 사용하면 쉽게  지울수 있고 그렇지 않은 경우 아래 명령어를  script로 만들어 사용하면 된다.

$ cat << EOF >> xquartz_delete.sh 
launchctl unload /Library/LaunchAgents/org.macosforge.xquartz.startx.plist && \
sudo launchctl unload /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist && \
sudo rm -rf /opt/X11* /Library/Launch*/org.macosforge.xquartz.* /Applications/Utilities/XQuartz.app /etc/*paths.d/*XQuartz  && \
sudo pkgutil --forget org.macosforge.xquartz.pkg  && \
rm -rf ~/.serverauth* && rm -rf ~/.Xauthorit* && rm -rf ~/.cache && rm -rf ~/.rnd && \
rm -rf ~/Library/Caches/org.macosforge.xquartz.X11 && rm -rf ~/Library/Logs/X11
EOF

 

 

반응형