Right, that's the issue then. They're not being recognized in the computer through the USB interface, I just assumed those listed were the sticks but apparently they're not.
[/quote]
I was able to get a bit more details just now and this is the message:
USB init, open device failed, err -3, you don't have privilege to access - GSH device 1:7
See README file included for help
GekkoScience detect (1:7) failed to initialise (incorrect device?), restarting
USB init, open device failed, err -3, you don't have privilege to access - GSH device 1:8
See README file included for help
GekkoScience detect (1:
failed to initialise (incorrect device?), restarting
USB init, open device failed, err -3, you don't have privilege to access - GSH device 1:9
See README file included for help
GekkoScience detect (1:9) failed to initialise (incorrect device?), restarting
Seems like it's picking them up, but there is a permissions issue. This is where I got lost before.
I tried following
https://github.com/kanoi/cgminer/blob/master/README, but no luck (assuming I did right)
LINUX:
The short version:
sudo cp 01-cgminer.rules /etc/udev/rules.d/
The long version:
On linux, the direct USB support requires no drivers at all. However due to
permissions issues, you may not be able to mine directly on the devices as a
regular user without giving the user access to the device or by mining as
root (administrator). In order to give your regular user access, you can make
him a member of the plugdev group with the following commands:
sudo usermod -G plugdev -a `whoami`
If your distribution does not have the plugdev group you can create it with:
sudo groupadd plugdev
In order for the USB devices to instantly be owned by the plugdev group and
accessible by anyone from the plugdev group you can copy the file
"01-cgminer.rules" from the cgminer archive into the /etc/udev/rules.d
directory with the following command:
sudo cp 01-cgminer.rules /etc/udev/rules.d/
After this you can either manually restart udev and re-login, or more easily
just reboot.