mintStick is installed by default in Linux Mint.
Launch "USB Image Writer" from the menu, select your ISO image and your USB device and press "Write to device".
Using the Terminal
It is really simple. Go to a Terminal and type:
sudo dd if=~/Desktop/linuxmint.iso of=/dev/sdx oflag=direct bs=1048576
If you don't know about the target USB drive path, run this command and figure out your destination drive.
sudo fdisk -l
Remember, don't include an integer for the USB drive, e.g. '/dev/sdx1', as it would refer to the existing partition on that drive and not the drive itself.
When the USB has been properly created by 'dd', there should be an output similar to this:
sudo dd if=~/Desktop/linuxmint.iso of=/dev/sdb oflag=direct bs=1048576
706+1 records in
706+1 records out
740601856 bytes (741 MB) copied, 91.7024 s, 8.1 MB/s
706+1 records in
706+1 records out
740601856 bytes (741 MB) copied, 91.7024 s, 8.1 MB/s