everything went well on ubuntu for me but I dont get this
test@kitchenpc:~$ ps xuf |grep primecoind
d315 17600 0.0 0.0 16580 660 pts/1 S 09:34 0:00 /bin/bash ./run-primecoind
d315 17601 282 2.3 1581368 90680 pts/1 SLl 09:34 44:52 \_ primecoind
d315 17758 0.0 0.0 13636 972 pts/1 S+ 09:50 0:00 \_ grep --color=auto primecoind
looks like its runing right?
but where can I see how fast am I hashing?
and where are my coins stored?
and how can I send them to my online wallet?
is there any gui for this?
If you want to see a GUI you need to run the primecoin-qt which is similar to the wallet app for most coins. I'm not sure it if is built when you follow the compilation guide, but you can download it. I don't think you can run it at the same time as the primecoind daemon though, it's one or the other.
To see how fast you are "hashing" you need to use change to the folder that has the primecoind dameon and type "./primecoind getmininginfo". This will give you some stats including your chainspermin, chainsperday, and primespersec values which indicate how fast it is mining.
Your coins are stored in a wallet.dat file in your ~/.primecoin folder. If you use the primecoin-qt GUI then you can see your balance and send coins from there. Otherwise you can again use the daemon and call "./primecoind getbalance" to see your cleared balance, "./primecoind listaccounts" to see your balance including any blocks that have not matured, and then finally "./primecoind sendtoaddress XXXX" to send cleared coins to your "online wallet" wherever that is.
The getmininginfo command, along with a heap of others, can also be run from the debug console in the GUI (Help->Debug Window->Console). Type help for a full list of commands.