Jetson Nano&Xavier basic environment configuration

1. Install remote desktop control software Nomachine

download link

insert image description here
See if your device is ARMv7 or ARMv8 by running the following command:

sudo uname -a

insert image description here
Download the DEB format, open the terminal in the download directory, or cd Downloads/, enter: sudo dpkg -i nomachineand press Tab to complete automatically and install it.

2. Cancel the setting of the login ring

  1. Open the application -> accessories -> password and encryption key (if the menu is in English, you can't find it, enter it in the terminal seahorse), switch to the password tab, and you will see a password key ring (the key ring is login)
  2. Right-click -> Change Password, and then fill in the system login password in the "Old Password", other do not need to fill in, directly confirm, and select "Use unsafe storage", confirm it

3. Replace the apt software source Tsinghua source (important)

* Jetson Nano/Xavier are both ARM architecture, do not use the source of X86 architecture to replace the software source
1. Backup sources.list

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup

2. Use gedit to modify source.list (you can also use vim, you need to master vim syntax)
to delete the original text and replace it as follows:

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/ bionic-security main restricted universe multiverse

The X86 architecture is replaced as follows:

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse

3. Update the software source

sudo apt-get update

6. Install Chinese input method

Guess you like

Origin blog.csdn.net/weixin_48936263/article/details/128648713