반응형

# grep X11Forwarding /etc/ssh/sshd_config

X11Forwarding yes

 

# echo $DISPLAY

=> 변수에 들어있는 값이 없으므로 아무런 값도 출력되지 않음

 

SSH로 접속시 아래와 같은 에러 발생

Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

WARNING! The remote SSH server rejected X11 forwarding request.

 

# firefox
Error: no display specified

 

해결방법

# vi /etc/profile

loginfrom=$(who am i | cut -f2 -d"(" | cut -f1 -d")")
DISPLAY=${loginfrom}:0.0
export DISPLAY

 

# echo $DISPLAY

192.168.150.181:0.0

 

# firefox &

 

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기