It cant manage to upgrade to bitcoin-0.6.0-rc2. It always seems it still starts rc1.
# The files are apperently different
broken@rig02:~/bitcoin$ ls -la bitcoin-0.6.0rc1-linux/bin/64/ | grep bitcoin
-rwxr-xr-x 1 broken broken 4247696 2012-02-07 19:46 bitcoind
-rwxr-xr-x 1 broken broken 8891013 2012-02-07 19:46 bitcoin-qt
broken@rig02:~/bitcoin$ ls -la bitcoin-0.6.0rc2-linux/bin/64/ | grep bitcoin
-rwxr-xr-x 1 broken broken 4251824 2012-02-29 21:59 bitcoind
-rwxr-xr-x 1 broken broken 9053450 2012-02-29 21:59 bitcoin-qt
# Bitcoin is stopped
broken@rig02:~/bitcoin$ ps -ef | grep coin
broken 2165 1 0 Feb14 ? 02:40:52 ./namecoind -daemon
# Starting bitcoin
broken@rig02:~/bitcoin$ cd bitcoin-0.6.0rc2-linux/bin/64/
broken@rig02:~/bitcoin/bitcoin-0.6.0rc2-linux/bin/64$ ./bitcoind -daemon
bitcoin server starting
************************
EXCEPTION: 11DbException
Db::put: Cannot allocate memory
bitcoin in ProcessMessage()
# Bitcoin is now running
broken@rig02:~/bitcoin$ ps -ef | grep coin
broken 2165 1 0 Feb14 ? 02:40:53 ./namecoind -daemon
broken 15663 1 10 09:45 ? 00:00:12 ./bitcoind -daemon
# Its the correct binary
broken@rig02:~/bitcoin$ readlink -f /proc/15663/exe
/home/broken/bitcoin/bitcoin-0.6.0rc2-linux/bin/64/bitcoind
# Bitcoin gives error and is stuck at 170059
broken@rig02:~/bitcoin/bitcoin-0.6.0rc2-linux/bin/64$ ./bitcoind getinfo
{
"version" : 60000,
"protocolversion" : 60000,
"balance" : 0.00000000,
"blocks" : 170059,
"connections" : 8,
"proxy" : "",
"difficulty" : 1496978.59502557,
"testnet" : false,
"keypoololdest" : 1322670639,
"keypoolsize" : 103,
"paytxfee" : 0.00000000,
"errors" : "WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade."
}
Anyone have a idea how to upgrade?