INITIAL SETUP OF THE JETSON NANO

Here is what you need to do on the Jetson Nano right after you have loaded the image on the SD card and created your username name:

// Update & Upgrade Ubuntu
sudo apt-get update -y
sudo apt-get upgrade -y
 
// Install the iwlwifi drivers
git clone --single-branch --branch release/core45 https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git
cd backport-iwlwifi/
make defconfig-iwlwifi-public
sed -i 's/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/' .config
make -j4
sudo make install
 
// Install the Intel 802.11ax drivers for linux
git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/linux-firmware.git --branch iwlwifi-fw-2019-07-20 --single-branch
cd linux-firmware/
sudo cp iwlwifi-cc-a0-48.ucode /lib/firmware 

sudo add-apt-repository ppa:canonical-hwe-team/backport-iwlwifi

sudo apt-get update

sudo apt-get install backport-iwlwifi-dkms

重启

Logo

更多推荐