Like dis?
cpuminer.exe -a tribus -o stratum+tcp://tribus.mine.zpool.ca:8533 -u DG1FxNwEf9nczP9i... -p c=DNR,tribus -t4
yep; looks correct.
Are you just running it as a single algo? If so; no need to have a timeout setting. 4 sec will only help spam the port if anything goes wrong;
are you running it in a looped batch to relaunch it if it closes out for some reason? This is a good practice, example below:
tribus.bat
:start
cpuminer.exe -a tribus -o stratum+tcp://tribus.mine.zpool.ca:8533 -u DG1FxNwEf9nczP9i... -p c=DNR,tribus
goto start
if it won't launch and you want to read the error; just add pause between the ccminer call and the goto call like this:
tribuspaused.bat
:start
cpuminer.exe -a tribus -o stratum+tcp://tribus.mine.zpool.ca:8533 -u DG1FxNwEf9nczP9i... -p c=DNR,tribus
pause
goto start
The pause will make it wait for a key press before starting over.