LogoLogo
AI HubCommunityWebsite
  • Start Here
  • AI Hub
    • Overview
    • Quickstart
    • Teams
    • Device Farm
    • Browser Inference
    • Model Zoo
      • Hailo
      • Intel
      • MemryX
      • BrainChip
      • Google
      • DeGirum
      • Rockchip
    • View and Create Model Zoos
    • Model Compiler
    • PySDK Integration
  • PySDK
    • Overview
    • Quickstart
    • Installation
    • Runtimes and Drivers
      • Hailo
      • OpenVINO
      • MemryX
      • BrainChip
      • Rockchip
      • ONNX
    • PySDK User Guide
      • Core Concepts
      • Organizing Models
      • Setting Up an AI Server
      • Loading an AI Model
      • Running AI Model Inference
      • Model JSON Structure
      • Command Line Interface
      • API Reference Guide
        • PySDK Package
        • Model Module
        • Zoo Manager Module
        • Postprocessor Module
        • AI Server Module
        • Miscellaneous Modules
      • Older PySDK User Guides
        • PySDK 0.16.0
        • PySDK 0.15.2
        • PySDK 0.15.1
        • PySDK 0.15.0
        • PySDK 0.14.3
        • PySDK 0.14.2
        • PySDK 0.14.1
        • PySDK 0.14.0
        • PySDK 0.13.4
        • PySDK 0.13.3
        • PySDK 0.13.2
        • PySDK 0.13.1
        • PySDK 0.13.0
    • Release Notes
      • Retired Versions
    • EULA
  • DeGirum Tools
    • Overview
      • Streams
        • Streams Base
        • Streams Gizmos
      • Compound Models
      • Result Analyzer Base
      • Inference Support
  • DeGirumJS
    • Overview
    • Get Started
    • Understanding Results
    • Release Notes
    • API Reference Guides
      • DeGirumJS 0.1.3
      • DeGirumJS 0.1.2
      • DeGirumJS 0.1.1
      • DeGirumJS 0.1.0
      • DeGirumJS 0.0.9
      • DeGirumJS 0.0.8
      • DeGirumJS 0.0.7
      • DeGirumJS 0.0.6
      • DeGirumJS 0.0.5
      • DeGirumJS 0.0.4
      • DeGirumJS 0.0.3
      • DeGirumJS 0.0.2
      • DeGirumJS 0.0.1
  • Orca
    • Overview
    • Benchmarks
    • Unboxing and Installation
    • M.2 Setup
    • USB Setup
    • Thermal Management
    • Tools
  • Resources
    • External Links
Powered by GitBook

Get Started

  • AI Hub Quickstart
  • PySDK Quickstart
  • PySDK in Colab

Resources

  • AI Hub
  • Community
  • DeGirum Website

Social

  • LinkedIn
  • YouTube

Legal

  • PySDK EULA
  • Terms of Service
  • Privacy Policy

© 2025 DeGirum Corp.

On this page
  • Ubuntu Orca USB Setup
  • Enable and Update DeGirum repository
  • Troubleshooting
  • Windows Orca USB Setup

Was this helpful?

  1. Orca

USB Setup

This page outlines the installation procedure and troubleshooting steps for DeGirum ORCA devices with USB-C interfaces.

Ubuntu Orca USB Setup

Enable and Update DeGirum repository

  1. Install prerequisites:

     sudo apt install curl 
  2. Download DeGirum public key:

For Ubuntu 20.04:

wget -O - -q http://assets.degirum.com/apt-repo/DeGirum.gpg.key | sudo apt-key add -

For Ubuntu 22.04 and Ubuntu 24.04:

curl -fsSL http://assets.degirum.com/apt-repo/DeGirum.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/degirum.gpg
  1. Add DeGirum software repository to APT sources configuration file:

For Ubuntu 20.04:

echo deb [arch=amd64,arm64] https://assets.degirum.com/apt-repo ORCA main | sudo tee -a /etc/apt/sources.list

For Ubuntu 22.04:

echo deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/degirum.gpg] https://assets.degirum.com/apt-repo ORCA main | sudo tee -a /etc/apt/sources.list

For Ubuntu 24.04:

echo 'Types: deb
URIs: https://assets.degirum.com/apt-repo
Suites: ORCA
Components: main
Architectures: amd64 arm64
Signed-By: /usr/share/keyrings/degirum.gpg' | sudo tee /etc/apt/sources.list.d/degirum.sources
  1. Update package information from configured sources:

sudo apt update
  1. Download and install DeGirum USB package:

sudo -E apt install dg-linusb

Troubleshooting

  1. The driver requires permissions to be correct in order to access ORCA. Usually, these are set up automatically during the driver install process. Verify that a user group named dg_orca exists, and that the current user belongs to it:

cat /etc/group | grep dg_orca && groups | grep dg_orca

If the group does exist, but the user is not in it, add the user via:

sudo -E usermod -a -G dg_orca <username>

2. If you installed DeGirum AI Server then verify AI Server operation. Run the following command on any system in your local network, which has PySDK installed:

degirum sys-info --host <hostname or IP>    

The <hostname or IP> is the hostname or IP address of the system running AI server. If you have PySDK installed on the same system where you run AI server, then run this command on that system and specify --host localhost. If AI server operates properly, you should see something like:

Devices:
  N2X/CPU:
  - '@Index': 0
  - '@Index': 1
  N2X/ORCA1:
  - '@Index': 0
    Device Description: ORCA_1P1[ USB#0, bus 2, port 2, dev 9 ]
    Firmware Version: 1.1.15
    IC Frequency (MHz): 250
    IC Temperature (C): 41
    Memory DRAM (MB): 1024
Software Version: 0.13.2

Check for the ORCA section. It should be present in the output.

Windows Orca USB Setup

Hosts that have DeGirum Orca with a USB-C interface installed need a driver to enable its functionality. The driver is distributed as a Zip archive.

  1. Unpack the ORCA driver .zip file. This can be done with Windows explorer.

  2. Start Device Manager. Open the Power User menu by right-clicking on the Start button (or by pressing Win+X), then click “Device Manager”.

  3. Find “AI Accelerator device” under “Other devices”.

  4. Right-click on “AI Accelerator device”, then select "Update driver”.

  5. Choose “Browse my computer for drivers”.

  6. Click “Browse…”, then navigate to the folder that contains the driver files unpacked in Step 1. Check “Include subfolders”. Then, click “Next”.

PreviousM.2 SetupNextThermal Management

Last updated 2 months ago

Was this helpful?

If the AI server does not operate properly, reinstall the server following the steps described in guide.

Download the driver:

AI Server Configuration
Orca Windows Driver