Raspberry Pi에서 크로미엄 사용 안될때
본문 바로가기
컴맹

Raspberry Pi에서 크로미엄 사용 안될때

by 우티스-노바디 2023. 12. 29.
반응형

 

라스베리파이 4 8기가 디바이스에 256 기가 SD 메모리 카드로 설치를 무사히 끝냈습니다. 리모트 접근을 위해서 xrdp 서버 설치를 성공적으로 했습니다. 설치는 2023.12.15 - [컴맹] - 리눅스 서버 리모트 접근툴 (xrdp)과 에러 해결 방법 따라 하시면 됩니다.

 

리모트 (xrdp 사용) 접근한 라스베리파이에서 구글 Chromium 사용이 불가능할때

설치후 크로미엄 웹 브라우저가 실행은 되었지만 사용이 불가능했습니다. 실행 후 아래처럼 보이면서 사용이 불가능한 상황이라... 다른 브라우저 (파이어팍스)를 실행했지만 같은 상황이었습니다. 

 

여기 해결방법입니다. 먼저, 터미날에서 

sudo adduser xrdp ssl-cert

sudo nano /etc/X11/xrdp/xorg.conf

and find the line Option DRMDevice line and change it to
Option "DRMDevice" ""

 

저장한 다음 새로 부팅하면 됩니다. 부팅은 아래 명령어를 터미널에서 입력하면 됩니다. 

sudo shutdown -r now 

 

터미널에서 구글 크로미엄 실행하고 싶다면, 

chromium-browser 입력하면 됩니다. 

 

ssh pi@ip-address 에서 다음과 같은 에러가 날때 

root$ ssh pi@ip-address
Unable to negotiate with 192.xxx.xx.xxx port 22: no matching host key type found. Their offer: rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519

 

아래 명령어로 해결했습니다!! 

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-dss pi@ip-address 

 

쉬우면서도 어려운게 리눅스 인 것 같네요! 

 

 

반응형