Bitcoin Forum
April 24, 2024, 02:01:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Mining support / problem compiling devcoind on ubuntu 11.04 on: January 07, 2013, 04:03:22 PM
I've been trying to compile devoind to mine solo on ubuntu 11.04. I have followed install instructions but keep getting the same error

user@mining-server:~/old-devcoind-master/src$ make -f makefile.unix USE_UPNP=1 bitcoind

make: *** No rule to make target `bitcoind'. Stop.

I have tried the other linux makefiles but the error is the same.

Please help.
2  Other / Beginners & Help / PHP & BAMT on: September 30, 2012, 11:05:28 PM
Using BAMT but I've found that it needs an occasional 'coldreboot' to keep it stable.

So I installed PHP.

SSH in as root 'apt-get install php5-cli'

SSH in as user 'nano auto-reboot.php'

paste the code below:

<?php
print "Sleeping for 2 minutes\n";
sleep(120);
for (;Wink
        {
        $hour = date('G');
        $minute = date('i');
        print $hour.$minute."\n";
        if ($hour == 0 or $hour == 6 or $hour == 12 or $hour == 18)
                {
                if ($minute == 10)
                        {
                        $output = shell_exec('coldreboot');
                        }
                }
        sleep(30);
        }
?>

press ctrl+x

press y

then go back to your root SSH session.

type "nano /etc/rc.local"

edit the file so it looks like this

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
screen -dmS auto-reboot php -cp home/user/auto-reboot.php
exit 0


press ctrl+x

press y

coldreboot

this will reboot you rig every six hours.

edit
$hour == 0 or $hour == 6 or $hour == 12 or $hour == 18

if you wish.

Works for me.
3  Other / Beginners & Help / BAMT with ztex USB-FPGA Module 1.15x and cgminer on: September 17, 2012, 07:09:45 PM
Help needed.
Has anyone managed to get cgminer working with a ztex USB-FPGA Module 1.15x on BAMT OS?
If so how?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!