Remote Desktop I: Install NoMachine in TX2

Most remote desktops do not support the ARM platform, but NoMachine is an exception. NoMachine has comparable performance to teamviewer.

Install NoMachine in TX2

Download NoMachine

Download NoMachine by Browser

Download NoMachine from https://www.nomachine.com/download/linux&id=30&s=ARM.
Select NoMachine for ARM ARMv8 DEB

Download NoMachine by Terminal

1
2
cd /tmp
wget https://download.nomachine.com/download/6.6/Arm/nomachine_6.6.8_7_arm64.deb

If the NoMachine version is updated, the above link will be invalid,

Install NoMachine

1
2
cd /tmp
sudo dpkg -i nomachine*arm64.deb

Configure TX2 Resolution

Install driver:

1
sudo apt install xserver-xorg-video-dummy

sudo vi /etc/X11/xorg.conf as follow:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (c) 2015, NVIDIA CORPORATION.  All Rights Reserved.
#
# This is the minimal configuration necessary to use the Tegra driver.
# Please refer to the xorg.conf man page for more configuration
# options provided by the X server, including display-related options
# provided by RandR 1.2 and higher.

# Disable extensions not useful on Tegra.
Section "Module"
Disable "dri"
SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
EndSection

Section "Device"
Identifier "Tegra0"
Driver "nvidia"
Option "AllowEmptyInitialConfiguration" "true"
EndSection

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

PS: You can modify Modes “1920x1080”.

0%