Can someone give me steps how to set 2 MLD sticks mining verge and the rest mining Litecoin?
create 2 separate configs or launch scripts and specify which devices to use with:
-S MLD:/dev/ttyUSB0 -S MLD:/dev/ttyUSB1 ... and so on
make sure to remove the -S all
if you're on linux here's a scipt to find out the correct device numbers to use
#!/bin/bash
for sysdevpath in $(find /sys/bus/usb/devices/usb*/ -name dev); do
(
syspath="${sysdevpath%/dev}"
devname="$(udevadm info -q name -p $syspath)"
[[ "$devname" == "bus/"* ]] && continue
eval "$(udevadm info -q property --export -p $syspath)"
[[ -z "$ID_SERIAL" ]] && continue
echo "/dev/$devname - $ID_SERIAL"
)
done
I use windows 10 64 bit. I want to mine with 2 MLD Verge and with others 6 Litecoin. Can you make a video tutorial for windows 10?