There is a bug in the Pocket NC software version 4.6.0 that can keep USB flash drives from being recognized in the user interface. The steps below lay out how to fix this issue.

Revision History:

First Release: October 2020 (QR)

Step 1: Connect to machine over SSH using PuTTY or Terminal

  1. Establish a command line session over SSH.

Step 2: Create Missing Directories

  1. Copy and paste the below command into terminal and hit enter (make sure there is no trailing whitespace after the "done":

for i in {0..7}; do sudo mkdir -p "/media/usb$i"; done

2. Verify success. Check that the directories have been created with below command:

ls /media

The SSH window should look similar to the picture below when finished.