CentOS에 갤럭시 탭 서브모니터로 활용하기

최지웅·2024년 12월 4일
0

linux

목록 보기
2/2
  1. Deskreen
  • deskreen 공식 홈페이지에서 앱 이미지를 다운 받고, chmod +x 권한 부여 후 실행하였다. 같은 와이파이에 있을 때 공유가 되었지만 까만 화면이 나오는 문제가 있었다. 이를 사용자 계정 로그아웃 후 환경설정에서 디스플레이 서버를 X11로 변경하여 해결하였다. 여기서부터 가상 모니터를 활용하여 모니터 복제가 아닌 확장을 수행해보자.

xrandr을 활용하여 가상모니터를 추가하려했지만, 가상모니터 지원이 불가능했다.

[jimo@localhost ~/programs/deskreen]$ lspci | grep -i vga
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02)

확장시켜보자.

sudo yum install xorg-x11-server-Xvfb

sudo vim /etc/X11/xorg.conf.d/20-dummy.conf

# 내용 
Section "Device"
    Identifier  "Configured Video Device"
    Driver      "dummy"
EndSection

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Device      "Configured Video Device"
    Monitor     "Configured Monitor"
    SubSection "Display"
        Depth   24
        Modes   "1920x1080"
    EndSubSection
EndSection

이후 재부팅. 가상디스플레이가 정상적으로 설정되었다.

profile
이제 3학년..

0개의 댓글