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.
killall hbwd
/sbin/fdisk /dev/sda
cd /tmp
wget http://archlinuxarm.org/os/pogoplug/mke2fs
chmod +x mke2fs
./mke2fs -j /dev/sda1
mkdir alarm
mount /dev/sda1 alarm
cd alarm
wget http://archlinuxarm.org/os/ArchLinuxARM-armv5te-latest.tar.gz
tar -xzvf ArchLinuxARM-armv5te-latest.tar.gz # This will take a long time
rm ArchLinuxARM-armv5te-latest.tar.gz
sync # Takes a while if you are using a flash drive
cd ..
umount alarm
cd /tmp
wget http://archlinuxarm.org/os/ppv4/ppv4-install.sh
chmod +x ppv4-install.sh
./ppv4-install.sh
/sbin/reboot
pacman -S wget
pacman -Syu base-devel
pacman -S screen
cd /home
mkdir miner
cd miner
mkdir cgminer
cd cgminer
wget http://ck.kolivas.org/apps/cgminer/cgminer-3.4.0.tar.bz2
tar xvjf cgminer-3.4.0.tar.bz2
cd cgminer-3.4.0
mkdir libusb
cd libusb
wget http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.16-rc10/libusb-1.0.16-rc10.tar.bz2
tar xvjf libusb-1.0.16-rc10.tar.bz2
cd libusb-1.0.16-rc10
./configure
make
cd ../..
CFLAGS="-O2 -Wall -march=native" LIBUSB_CFLAGS="-I./libusb/libusb-1.0.16-rc10/libusb" LIBUSB_LIBS="./libusb/libusb-1.0.16-rc10/libusb/.libs/libusb-1.0.a -ludev" ./configure --enable-icarus
make install
cgminer -o URL:PORT -u USER -p PASS --lowmem # ONE POOL
cgminer -o URL1:PORT1 -u USER1 -p PASS1 -o URL2:PORT2 -u USER2 -p PASS2 --lowmem # TWO OR MORE POOLS
cd /home/miner
nano auto.sh
#!/bin/sh
screen -dmS miner /home/miner/cgminer/cgminer-3.4.0/cgminer --config /home/miner/cgminer.conf
cd /usr/lib/systemd/system
nano cgminer.service
[Unit]
Description=Start cgminer
[Service]
User=root
Type=oneshot
ExecStart=/bin/sh /home/miner/auto.sh
[Install]
WantedBy=multi-user.target
Enable the service:
systemctl enable cgminer.service
passwd