'2021/12/02'에 해당되는 글 3건

  1. 2021.12.02 debian 소스 받아 빌드하기
  2. 2021.12.02 wayland screen share
  3. 2021.12.02 wayland 와 weston 문서
Linux/Ubuntu2021. 12. 2. 17:21

'Linux > Ubuntu' 카테고리의 다른 글

크로스 컴파일 패키지  (2) 2022.01.28
ubuntu x86에서 arm용 아키텍쳐 패키지 추가하기(주의)  (0) 2022.01.28
ubuntu trim manually  (0) 2021.10.19
ubuntu 무선 미러링  (0) 2021.07.13
gpsd 현재 좌표 얻기  (0) 2021.06.05
Posted by 구차니
프로그램 사용/wayland2021. 12. 2. 17:16

RDP로 공유하는 방법이 기본예제로 구현되어 있나?

 

[링크 : https://manpages.ubuntu.com/manpages/focal/en/man5/weston.ini.5.html#screen-share%20section]

[링크 : https://community.nxp.com/t5/i-MX-Processors/i-MX8-How-to-share-screen-on-Weston/td-p/1333875]

 

+ 2021.12.03

rpi3b 에서 64bit로 깔고 시도하는데 이것저것 조합해서 해보는데 영 안된다.

패키지는 아래가 필요할 것 같아서 설치했고

$ sudo apt-cache search freerdp
freerdp2-wayland - RDP client for Windows Terminal Services (wayland client)

 

실행은 아래의 명령어로 하고, 기본 weston.ini는 /usr/share/doc/weston/examples/weston.ini 에서 복사해 옴.

$ weston --log=/home/pi/weston.log --config=/home/pi/.config/weston.ini --modules=screen-share.so --backend=fbdev-backend.so

 

에러나는대로 그대로 나네..

[11:54:41.823] Screen share failed: No wl_shm found
[11:54:41.823] unknown child process exited

 

parent.shm이 NULL 이면 뜬다는데 저건 또 어디서 생성하게 해야하나...

if (so->parent.shm == NULL) {
weston_log("Screen share failed: No wl_shm found\n");
goto err_display;
}

[링크 : https://coral.googlesource.com/weston-imx/+/refs/heads/release-chef/compositor/screen-share.c]

'프로그램 사용 > wayland' 카테고리의 다른 글

weston-image 와 cairo  (0) 2021.12.08
rpi3b 64bit weston  (0) 2021.12.03
wayland 와 weston 문서  (0) 2021.12.02
wayland  (0) 2021.11.29
weston shell  (0) 2021.11.26
Posted by 구차니
프로그램 사용/wayland2021. 12. 2. 15:39

'프로그램 사용 > wayland' 카테고리의 다른 글

rpi3b 64bit weston  (0) 2021.12.03
wayland screen share  (0) 2021.12.02
wayland  (0) 2021.11.29
weston shell  (0) 2021.11.26
weston_log()  (0) 2021.11.25
Posted by 구차니