Troubleshooting
This guide provides troubleshooting recommendations to help users explore Sixfab CORE and explains how to interact with it to quickly move through the evaluation and development phases of product design.
1. Running apt-get update broken
You may run into it while the apt-get update command is running during installation. The error is as follows:
A simple fix for this is to either:
- Run the following and manually answer 'y' when asked to confirm the relevant changes
- Run apt-get update with the --allow-releaseinfo-change flag to automatically confirm the changes for you:
❗️ Warning
This is NOT apt-get, but rather just standalone apt
sudo apt update
sudo apt-get update --allow-releaseinfo-change
2. Unable to fetch some archives
When I try to install CORE I get this error:
To fix this, run the commands below, then try to install again.
sudo apt-get clean
sudo apt update --fix-missing
3. Wwan0/Usb0 has IP address, but cannot ping through both of the network interfaces
If your cellular interface has an IP and connection is not available, the issue might be related to 'monthly limit'. To fix the issue, update the 'monthly limit' to 'unlimited' from SIM details on Sixfab Connect.
4. I ran the NVIDIA Jetson Nano installation code on the terminal but nothing happened
Jetson Nano system image curl and other available packages are out of date. Therefore, If you are using Jetson Nano, update your system by installing the available updates and install curl.
sudo apt update && sudo apt upgrade -y
sudo apt install curl
Updated 8 months ago