Jetson上设置VNC访问

设置VNC服务器 VNC服务器在Jetson上已经安装,需要开启并设置密码 mkdir -p ~/.config/autostart cp /usr/share/applications/vino-server.desktop ~/.config/autostart/. gsettings set org.gnome.Vino prompt-enabled false gsettings set org.gnome.Vino require-encryption false # Replace thepassword with your desired password gsettings set org.gnome.Vino authentication-methods “[‘vnc’]” gsettings set org.gnome.Vino vnc-password $(echo -n ‘thepassword’|base64) sudo reboot 在Windows上远程访问 Windows机器要与Jetson在同一个局域网里。在VNC客户端输入Jetson的IP,会要求输入密码。 参考 nvidia Jetson setup VNC

Nomachine AWS RHEL7 & Ubuntu Remote desktop connection

I have tried the Nomachine on both AWS RHEL7 and Ubuntu, it seems the results are not good. Noted down the procedure, 1, install the nomachine on RHEL7 Have downloaded “freenx-server-0.7.3.tar.gz”, “nomachine_5.1.26_1_x86_64.rpm” and “nomachine-enterprise-server-evaluation_5.1.26_2_x86_64.rpm”, the enterprise server version is with one month evaluation. All the three installation with similar result, below is the log, and […]

连接AWS EC2 Linux instance Ubuntu远程桌面

创建了AWS EC2 Linux instance Ubuntu,记录下通过本地Windows远程访问AWS Ubuntu桌面的方法。 1, 更新,升级和安装准备 sudo apt-get update sudo apt-get upgrade 2,配置sshd_config允许密码访问 sudo emacs /etc/ssh/sshd_config 将 PasswordAuthentication 选项设置为yes # Change to no to disable tunnelled clear text passwords #PasswordAuthentication no PasswordAuthentication yes 3,重启SSH伺服让配置生效 sudo /etc/init.d/ssh restart 4,为用户名ubuntu设置密码 sudo –i passwd ubuntu su ubuntu 5,为Ubuntu Linux Instance安装桌面功能 大概需要十多分钟, export DEBIAN_FRONTEND=noninteractive sudo -E apt-get […]