It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
screen -dR cgminer
alias rbcm='screen -r cgm'
alias rbcm='screen -r cgm'
/usr/local/bin/miner-launcher.sh 60 &
#!/bin/bash
DEFAULT_DELAY=0
if [ "x$1" = "x" -o "x$1" = "xnone" ]; then
DELAY=$DEFAULT_DELAY
else
DELAY=$1
fi
sleep $DELAY
screen -dmS cgm su your_user_name -c "/usr/local/bin/startcgminer.sh" #this will run your miner as a specified user, you need to replace your_user_name with an actual username
# if you have no issue with cgminer running as root by default, comment out the above line and uncomment the one below:
#screen -dmS cgm /usr/local/bin/startcgminer.sh
#!/bin/bash
export DISPLAY=:0
export GPU_USE_SYNC_OBJECTS=1
cd /home/your_user_name/BTC/cgminer # avoid using relative paths in scripts, this will save you a lot of headache. You need to replace your_user_name with an actual username
./cgminer
# or perhaps ./cgminer 2> cgminer.log #cgminer output is being logged to cgminer.log
1. screen -mdS cgm
2. screen -r cgm
3. cd ~/BTC/cgminer
4. export DISPLAY=:0
5. export GPU_USE_SYNC_OBJECTS=1 ***An issue with 7970's on 2.6 - gets rid of the CPU bug***
6. ./cgminer
/etc/init.d/bcm0 start - invokes the time-honored [i]screen -dmS bcm-0 bcm-start.sh cgminer[/i] command[sup](1)[/sup]
/etc/init.d/bcm0 stop
/etc/init.d/bcm0 restart
/etc/init.d/bcm0 getstatus - prints whether or not cgminer is up and running, returns an exit status 1 if it isn't
/etc/init.d/bcm0 getpid - prints the PID of the active cgminer executable or returns an exit status 1 if cgminer isn't running
The service can be trivially disabled via the daemon control tool [i]update-rc.d[/i]:
update-rc.d bcm0 disable
#!/bin/sh
screen -dmS miner ./CG
#!/bin/sh
screen -dmS miner ./CG
#!/bin/sh
export DISPLAY=:0
xhost +
now="`date +%Y%m%d%H%M%S`"
cd
./cgminer .... 2> run.$now.$$.log