I am having issues redirecting the output on linux. I built from the latest sources (thanks for setting it up for linux guys
) and run it like so:
jhprimeminer -o http://ypool.net:10034 -u user.w -p x -t 4 > out 2>&1 < /dev/null &
but nothing is showing up in the out file. Any suggestions? I would really like to have it running in the background an be able to check a file for the status as I control my linux boxes by ssh.
You could use an utility called screen, it allows you to run a process in a virtual terminal that you can detach and attach to, and watch some process running in it. Like
screen jhprimeminer -o ypool.net -u blabla -p bla
then press CTRL+A+D when its running to detach, to reattach it again you can type
screen -rd, that wont solve your piping problem (not sure why that isnt working), but you can attach to it at any point and watch the output at least.