Re: How to mount an USB storage stick on Splat After plug usb into SCP, check the OS attached which device name to your usb with "dmesg | tail" command. After the command has run, you should see mesages related usb device name and its mount point. (for example /dev/sda1) Create a folder under mnt for usb "mkdir /mnt/usbdisk" and mount usb to this folder with "mount /dev/sda1 /mnt/usbdisk" |