I want programming arduino leonardo on kali linux virtualbox guest under windows 8.1 host. I know that Arduino IDE is developed in java so it's not dependent on any operating system, but reason why i want to use kali is due to some of its programs (SET toolkit, Kautilya).
First i checked serial port on my host WIN 8.1 OS. (Arduino Leonardo COM3)
Then in virtualbox i changed serial settings for my kali virtual mashine. As I noticed:
Port Number presents port number on virtual mashine (kali) and that will be COM1 port ie. /dev/ttyS0
Port/File Path presents port number on host (win8) OS and that is COM3:
After these settings i boot virtual mashine and tried to upload simple sketch on arduino leonardo. The result in Adruino IDE is "Done uploading" but nothing happens.
I tried using ino via command line but result is error.
ino upload -p /dev/ttyS0
Does someone perhaps know a solution?
\\.\comX
instead ofCOMX:
fixes some problems, so try with\\.\com3
– frarugi87