How to mount a USB drive on Ubuntu
Description
This article covers the necessary details for mounting a USB drive when using an Ubuntu OS
Step-by-step instructions
Ubuntu Desktop UI
If using Ubuntu Desktop, the USB should automatically be registered and available once plugged in.
Click the Files Icon on the left of the desktop, then click Other Locations at the bottom of the window. The plugged-in USB should be available
Take note of the path to the blancco.wim as you will be prompted to put it in during the network boot configuration
Ubuntu with no Desktop UI
Plug the USB drive into an available USB port on the Ubuntu device
First, in the terminal, run the following command to locate the device
sudo fdisk -l
This will list all of the storage devices. The USB may be something like /dev/sdb1
Next, create a mount point with the following command
sudo mkdir -p /mnt/usb
Now mount the drive
sudo mount /dev/sdb1 /mnt/usb
Run the following command to view the files
ls /mnt/usb
Take note of the path to the blancco.wim as you will be prompted to put it in during the network boot configuration