How to Fix Portable Inspector (PI) Device Mount Issues on the Linux Platform
  • 08 Aug 2023
  • 1 Minute to read
  • Dark
    Light

How to Fix Portable Inspector (PI) Device Mount Issues on the Linux Platform

  • Dark
    Light

Article summary

Summary


This article provides instructions on fixing Portable Inspector devices mount issues on the Linux platform.

Details


An agentless malware-free solution for risk assessment and asset management.

  1. Plug in the Portable Inspector (PI) device.
     
  2. Find the PI device by using the command below.
lsblk -f | grep PI

image.png
The message below should appear.

  • PI DAT → /dev/sdb1
  • PI SYS → /dev/sdc1
3. Confirm whether PI DAT and PI SYS partitions are mounted or not by entering the command below.
cat /proc/mounts | grep <partition>

image.png

  • If no message appears, it means this partition is not mounted. Please go directly to Step 5.

  • If a mount point message appears, please clear the mount points. Go to Step 4 and repeat until the mount point is clean.

  1. Unmount the mount points if the partitions are mounted. If the partition unmounts successfully, there should be no response to the command.
sudo umount <partition>

image.png

If the partition is already unmounted to any mount points and users try to run the command, users will receive the message "not mounted".
image.png

5. Create a local folder for the mount point.
sudo mkdir -m 755 <folder_name>

Create two folders because there are two partitions to mount.

sudo mkdir -m 755 /mnt/pi_dat
sudo mkdir -m 755 /mnt/pi_sys
6. Mount PI device to the local folders.
sudo mount -o exec <partition> <folder_name>

Two partitions should mount to two different folders.

sudo mount -o exec /dev/sdb1 /mnt/pi_dat
sudo mount -o exec /dev/sdc1 /mnt/pi_sys
For support assistance, please contact us at support@txone.com or your support provider.

Was this article helpful?