AI嵌入式开发:NVIDIA Jetson Xavier NX刷机(2)
NVIDIA Jetson Xavier NX開發:
- 刷機
- step1:下載文件
- step2:安裝格式化工廠:
- step3 安裝Etcher
- 遠程連接
刷機
https://developer.nvidia.com/embedded/learn/get-started-jetson-xavier-nx-devkit
過程:
step1:下載文件
下載 :刷機工具以及格式化工具還有相關鏡像文件
Xavier NX Developer Kit SD Card Image
https://developer.nvidia.com/jetson-nx-developer-kit-sd-card-image
下載:SDCardFormatterv5_WinEN.zip
https://www.sdcard.org/downloads/formatter_4/eula_windows/
下載:燒錄的軟件Etcher
https://www.balena.io/etcher/
三個文件云盤鏈接:(時間久了需要更新)
step2:安裝格式化工廠:
6. 格式化以后sd卡就可以進行下一步的鏡像刷寫。
step3 安裝Etcher
下載后打開
第一個選擇剛剛下載的鏡像,第二個是你的sd卡
選擇ok后點擊Flash!就會自行燒錄了
ps:
我的Windows系統一直燒錄失敗,后來沒辦法下了一個linux版本的Etcher,成果共完成燒錄
遠程連接
https://www.jb51.net/os/windows/44597.html
下載VNC VIEWER
https://www.realvnc.com/en/connect/download/viewer/
2.linux install vncserver
step1:
$apt-cashe search vncserver 查看所有安裝包
step2:
sudo apt-get install vnc4server
**step3:**啟動vnc4server:
vnc4server
此時系統會提示你輸入密碼,在通過客戶端鏈接時將會用到這個密碼。
輸入完密碼后看到類似下邊的提示:
New '****3 (****)' desktop is ****:3 (****代表主機名) Take notice of the number after the colon (, in this case it is "3."停止一個vnc4server
vnc4server -kill :3
根據你啟動時獲得的數字替換此處的3。
此時會在
/home/.vnc下生成對應文件
在目錄下打開xstartup,編輯該配置文件
sudo gedit xstartup
step4. 打開 .vnc/xstartup 文件并編輯:
文件看起來將是這樣的:
#!/bin/sh #Uncomment the following two lines for normal desktop: #unset SESSION_MANAGER #exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vnccon** -iconic & x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & x-window-manager &文件修改:
#!/bin/sh# Uncomment the following two lines for normal desktop: unset SESSION_MANAGER unset DBUS_SESSION_BUS_ADDRESS # 上面這句話在XUbuntu桌面環境下開啟vnc的話最好取消注釋 #exec /etc/X11/xinit/xinitrc #上面這行先不要打開 [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & #gnome-session & #x-window-manager & #下面這塊主要是針對運用xfce4管理桌面 x-session-manager & xfdesktop & xfce4-panel & xfce4-menu-plugin & xfsettingsd & xfconfd & xfwm4 &step5 vnc viewer配置
file→newconnection 只需要添加VNCserver 的IP和PORT 就行
、若前面執行失敗導致在VNC下看不到圖形界面,鼠標變成"X"形狀需要先安裝“sudo apt install xfce4 xfce4-goodies tightvncserver”,不然還是什么都看不到,同時將剛建過的VNCServer刪掉,vncserver -kill :1(1代表前面啟動的vncserver序號)
http://blog.itpub.net/69978212/viewspace-2710188/
https://www.cnblogs.com/ningmengcaokanyu/p/10185457.html
https://blog.csdn.net/qq_38451119/article/details/82461855
https://developer.aliyun.com/devzt/10189682.html
https://developer.aliyun.com/article/202432?spm=a2c6h.17698244.wenzhang.7.2f90450bjn3SAH
總結
以上是生活随笔為你收集整理的AI嵌入式开发:NVIDIA Jetson Xavier NX刷机(2)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Qt】sqlite数据库使用
- 下一篇: cv2.waitKey(x)解析