
Ok, get e terminal session up.
Become root using
sudo su
when prompted enter your linuxmce password for the user linuxmce (you created this at install time)
Next plug in your USB stick. Run dmesg after about 5 seconds to see what device it was assigned:
dmesg
Should get an output like this:
usb 1-2: new high speed USB device using ehci_hcd and address 21
usb 1-2: configuration #1 chosen from 1 choice
scsi10 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 21
usb-storage: waiting for device to settle before scanning
Vendor: Model: Rev: 0.00
Type: Direct-Access ANSI SCSI revision: 02
SCSI device sdc: 3948544 512-byte hdwr sectors (2022 MB)
sdc: Write Protect is off
sdc: Mode Sense: 00 00 00 00
sdc: assuming drive cache: write through
SCSI device sdc: 3948544 512-byte hdwr sectors (2022 MB)
sdc: Write Protect is off
sdc: Mode Sense: 00 00 00 00
sdc: assuming drive cache: write through
sdc: sdc1
sd 10:0:0:0: Attached scsi removable disk sdc
sd 10:0:0:0: Attached scsi generic sg0 type 0
usb-storage: device scan complete
You see here the "sdc1"
Now create a dir to mount the stick on:
mkdir -p /mnt/stick
Now mount the stick:
mount /dev/sdc1 /mnt/stick
Of course use the drive letter sdx
Now cd to that directory:
cd /mnt./stick
And run your app:
./application.name.run
If this does not run you may need to change the permissions to executable:
chmod +x application.name.run
Thats it.
Regards,
Seth