Bitcoin Forum
June 22, 2024, 05:42:52 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / Anfänger und Hilfe / Zum schlechtesten Zeitpunk aufgehört on: July 22, 2014, 12:38:42 PM
Als ich damals meine 75 BTC für je 8$ verkauft habe dachte ich, "gerade so noch den Absprung geschafft" ...

Ich würde gerne wieder einsteigen und wollte mir eigentlich den hier kaufen
http://www.spondoolies-tech.com/products/sp30-yukon-september-batch-1

Stromkosten würden keine anfallen,
Break-Even wäre im WorstCase nach 150 Tagen

Nach wie vielen Tagen kann ich das Ding in die Tonne legen ?
Hat jemand Erfahrung mit Spondoolies, ich finde die verdammt günstig.
2  Local / Biete / Re: 2x Rig mit 3x Saphire 5850 Xtreme on: November 18, 2011, 10:32:31 AM
Rechnung kann ich vom 23.06.2011 beilegen. (Mindfactory, Pixmania)
war ca. vom 15.07.2011 bis Kurseinbruch (1-2 Monate) im Einsatz.

Bilder mach ich heute Abend, ich habe im Gehäuse über den Grafikkarten ein Lüfterloch reingedremmelt.

OVP ist für Mainboard und Grafikkarten noch vorhanden.
3  Local / Biete / 2x Rig mit 3x Saphire 5850 Xtreme on: November 18, 2011, 10:25:40 AM
Hallo Ich verkaufe 2 Rigs im 19" 3HE Format mit:

ASRock Extreme4 890GX AM3 ATX
1200W Xilence SPS-XP1200.CS.R3 Rev. 3, ATX 2.3
2GB (1x 2048MB) Kingston HyperX DDR3-1333 DIMM CL9-9-9-27 Single
AMD Sempron 145 1x 2.80GHz So.AM3 BOX
3x 5850 Saphire Xtreme
3x Lüfter

Kaufpreisvorstellung bitte per PN




4  Bitcoin / Project Development / Re: BAMT - Easy persistent USB key based linux for dedicated miners/mining farms on: July 20, 2011, 05:16:19 AM
same here
run gparted in terminal

Gparted your prefered hdd or usb
like
/dev/sdb1 ext4, /dev/sdb2 swap

/dev/sdb1 minimum space are 3GB

Code:


mkdir /mnt/hdd
mount /dev/sdb1 /mnt/hdd

rsync -avH --exclude=/proc/* --exclude=/dev/* \
--exclude=/sys/* --exclude=/tmp/* --exclude=/lost+found \
--exclude=/var/tmp/* --exclude=/boot/grub/* \
--exclude=/media/* --exclude=/live/  \
--exclude=/mnt/* / /mnt/hdd

sudo mount -o bind /dev /mnt/hdd/dev
sudo mount -t proc /proc /mnt/hdd/proc
sudo mount -o bind /sys /mnt/hdd/sys
sudo mount -t devpts devpts /mnt/hdd/dev/pts
sudo chroot /mnt/hdd /bin/bash

apt-get install grub2
grub-setup /dev/sdb
grub-install /dev/sdb

nano /etc/fstab

none         /dev/pts      devpts    defaults      0 0
proc         /proc         proc      defaults      0 0
/dev/sda1    /             ext4      defaults      0 1
/dev/sda2    none          swap      sw            0 0
5  Bitcoin / Project Development / Re: LinuxCoin A lightweight Debian based OS with everything ready to go. on: July 18, 2011, 02:28:42 PM
Did the svn update thing on a completely new install and get the same error as before:

Code:
root@linuxcoin:/opt/miners/phoenix# ./phoenix.py -u http://mylogin:mypass@pit.deepbit.net:8332 -k phatk DEVICE=0
Traceback (most recent call last):
  File "./phoenix.py", line 123, in <module>
    miner.start(options)
  File "/opt/miners/phoenix/Miner.py", line 77, in start
    self.kernel = self.options.makeKernel(KernelInterface(self))
  File "./phoenix.py", line 112, in makeKernel
    self.kernel = kernelModule.MiningKernel(requester)
  File "kernels/phatk/__init__.py", line 132, in __init__
    platforms = cl.get_platforms()
pyopencl.LogicError: clGetPlatformIDs failed: platform not found khr

Tried out DiabloMiner as well:

Code:
root@linuxcoin:/opt/miners/DiabloMiner# ./DiabloMiner-Linux.sh -u mylogin -p mypass -o pit.deepbit.net -r 8332
[7/16/11 6:19:33 AM] Started
[7/16/11 6:19:33 AM] Connecting to: http://pit.deepbit.net:8332/
[7/16/11 6:19:34 AM] ERROR: No OpenCL platforms found

Also, once I get this actually working.... you will definitely be getting a donation for the help.

Also:
Code:
root@linuxcoin:~# AMDOverdriveCtrl -h | grep active
INF: Adapter index: 0, active, ID:17299440, ATI Radeon HD 5800 Series  
INF: Adapter index: 3, active, ID:17908672, ATI Radeon HD 5800 Series  

Get that out.

u just need to extract the the icd-registration.tgz, i dont know the absolute path

tar xvfz /opt/AMD-APP-SDK-v2.4-lnx64/icd-registration.tgz -C /
6  Bitcoin / Project Development / Re: LinuxCoin A lightweight Debian based OS with everything ready to go. on: July 12, 2011, 05:02:45 AM
thats from narnia right?

anyway, this really sounds more and more as a random, unsolvable problem Angry (or solvable by a solution *way* too easy)

ive been thinking, is there a way to make the linuxcoin USB stick recognized as a HDD isntead of removable media? it just feels like the problem is there becouse a W7 installation works, but thats recognized as an HDD

Nope I'm afraid not I'd guess the board just don't like the sticks. I will look into this in a while to see if I can help you out more.

hi there,

can anybody post me a working install script to hdd, i want to use a usb stick.
but i dont want use a unetbootin stick.

the hdd installer method doesnt work for me, i got many errors @ first boot.

i try this, but i didnt have some luck.

Code:
Gparted /dev/sda1 ext2, /dev/sda2 swap

mkdir /mnt/hdd
mount /dev/sda1 /mnt/hdd

rsync -avH --exclude=/proc/* --exclude=/dev/* \
--exclude=/sys/* --exclude=/tmp/* --exclude=/lost+found \
--exclude=/var/tmp/* --exclude=/boot/grub/* \
--exclude=/media/* --exclude=/live/  \
--exclude=/mnt/* / /mnt/hdd

sudo mount -o bind /dev /mnt/hdd/dev
sudo mount -t proc /proc /mnt/hdd/proc
sudo mount -o bind /sys /mnt/hdd/sys
sudo mount -t devpts devpts /mnt/hdd/dev/pts
sudo chroot /mnt/hdd /bin/bash

apt-get install grub2

nano /etc/fstab

none         /dev/pts      devpts    defaults      0 0
proc         /proc         proc      defaults      0 0
/dev/sda1    /             ext2      defaults      0 1
/dev/sda2    none          swap      sw            0 0


That script is incomplete or been copied wrong ? What are the errors your getting ?
@ rsync copy i got
sent 2324225093 bytes  received 1227751 bytes  1463009.02 bytes/sec
total size is 2319160468  speedup is 1.00
rsync error: some files/attrs were not transferred (see previous error3) at main.c(1070) [sender=3.0.8]

on first boot i got some inode errors, i fix it with fsck.
on sec boot i got this:

1. /script/local-premount/libsplashy not found
2. /etc/init.d/rc Pidof: permission denied
3. /etc/init.d/udev Pidof: permission denied (~15 times)
4. /etc/init.d/checkroot.sh Pidof: permission denied

i change the root password before i start the copy with rsync, its that the problem ?

Edit:
I cant test it for now, but its maybe possible to byte copy the squashfs image with?
dd if=/live/image/filesystem.squashfs of=/dev/sda1
7  Bitcoin / Project Development / Re: LinuxCoin A lightweight Debian based OS with everything ready to go. on: July 11, 2011, 08:41:41 PM
hi there,

can anybody post me a working install script to hdd, i want to use a usb stick.
but i dont want use a unetbootin stick.

the hdd installer method doesnt work for me, i got many errors @ first boot.

i try this, but i didnt have some luck.

Code:
Gparted /dev/sda1 ext2, /dev/sda2 swap

mkdir /mnt/hdd
mount /dev/sda1 /mnt/hdd

rsync -avH --exclude=/proc/* --exclude=/dev/* \
--exclude=/sys/* --exclude=/tmp/* --exclude=/lost+found \
--exclude=/var/tmp/* --exclude=/boot/grub/* \
--exclude=/media/* --exclude=/live/  \
--exclude=/mnt/* / /mnt/hdd

sudo mount -o bind /dev /mnt/hdd/dev
sudo mount -t proc /proc /mnt/hdd/proc
sudo mount -o bind /sys /mnt/hdd/sys
sudo mount -t devpts devpts /mnt/hdd/dev/pts
sudo chroot /mnt/hdd /bin/bash

apt-get install grub2

nano /etc/fstab

none         /dev/pts      devpts    defaults      0 0
proc         /proc         proc      defaults      0 0
/dev/sda1    /             ext2      defaults      0 1
/dev/sda2    none          swap      sw            0 0

8  Local / Mining (Deutsch) / Re: Sapphire 5850 Xtreme Bios flashen mit Gpu-z RBE und Atiflash Windows XP/7 on: July 04, 2011, 12:59:18 PM
hallo,

kann mir jmd mal ne stabile modifizierte firmware für die sapphire HD5850 xtreme schicken ?
wenn ich nach der anleitung gehe : http://forum.bitcoin.org/index.php?topic=11746.0
dann exportiert dieser nicht die voltage table.

danke im voraus.
wenn alles gut läuft gibts natürlich auch eine spende.

mfg

PS:
XFX 5870 firmware ist auch willkommen und wird gleichermaßen belohnt
9  Local / Deutsch (German) / Re: Neueste bitcoind und Debian Lenny on: June 21, 2011, 12:54:51 PM
ich benutze debian 6 squeeze.

Code:
nano /etc/apt/source.list

deb http://ftp.de.debian.org/debian wheezy main
deb-src http://ftp.de.debian.org/debian wheezy main

apt-get update
apt-get update

apt-get install libstdc++6


10  Local / Deutsch (German) / Bios flashen Hilfe on: June 15, 2011, 08:12:14 PM
Hallo,

also Bios flashen uns auslesen, alles kein Problem

ABER

was muss ich flashen ?
Ich habe 3x 5870 und 1x 5850. Welche Werte sind sinnvoll und wo muss ich diese im RBE eintragen ?

Vielen Dank im voraus
11  Local / Deutsch (German) / Bitcoins auf ebay on: June 15, 2011, 05:31:05 AM
Hallo,

sollte ich irgendwelche bedenken haben, wenn ich Bitcoins auf ebay verkaufe ?


MfG
12  Local / Deutsch (German) / Re: Tradehill - MtGox Konkurrenz mit Eurohandel! on: June 14, 2011, 04:40:09 AM

solngsu8ers - TH-R12705
benehsv - TH-R13196
Chefnet - TH-R11051
dermong - TH-R13414
klaaster - TH-R13458
dawn - TH-R13475
jones - TH-R13509
ray84 - TH-R13526
stevang - TH-R1371
gdomod - TH-R13680

solngsu8ers hat mich beworben.
13  Local / Deutsch (German) / AMDOverdriveCtrl underclock on: June 13, 2011, 10:23:16 AM
Hallo,

ich benutzte Debian 6 Squeeze Server,

ich bekomme aber meine Grafikkarten nicht untertaktet muss ich dafür die Karten erst mit einem neuem BIOS flashen ?


MfG

14  Other / Beginners & Help / AMDOverdriveCtrl + 5870 on: June 13, 2011, 09:44:10 AM
Hi i build my first minign rig with Debian 6 Server.

Packages:
Debians 6
SDK 2.4
ATI Catalyst 11.5

Ovdr Profil:
Quote
<OVERDRIVE_PROFILE>
  <PERFORMANCE_LEVEL level="2" gpu="100000" mem="30000" voltage="1088"/>
  <PERFORMANCE_LEVEL level="1" gpu="55000" mem="30000" voltage="1038"/>
  <PERFORMANCE_LEVEL level="0" gpu="15700" mem="30000" voltage="1000"/>
  <FAN_SETTING percentage="100"/>
  <FAN_CTRL enabled="no"/>
</OVERDRIVE_PROFILE>

And startup 

DISPLAY=:0 /usr/bin/AMDOverdriveCtrl -i 0 -b s0g0.ovdr & aticonfig --od-setclocks=875,300 --adapter=0





All works fine but i cant underclock my mem of 5870.
I install AMDOverdriveCtrl the settings are load fine
Quote
...
ACT: Fan speed set to 100%
ACT: SetOverdriveValues: Level 0: 157MHz, 300MHz, MHz, 1V
ACT: SetOverdriveValues: Level 1: 550MHz, 300MHz, MHz, 1.038V
ACT: SetOverdriveValues: Level 2: 1000MHz, 300MHz, MHz, 1.088V

But the odgc output change nothing
Quote
Adapter 0 - ATI Radeon HD 5800 Series
                            Core (MHz)    Memory (MHz)
           Current Clocks :    875           1000
             Current Peak :    875           1000
  Configurable Peak Range : [600-900]     [900-1300]
                 GPU load :    99%


must i flash the bios or change the startup ?
15  Local / Deutsch (German) / Re: [Sammelthread] Welche Hardware soll ich kaufen? on: June 08, 2011, 07:35:29 AM
würde mich auch interessieren ob auf das board 4 Karten problemlos betrieben werden können ?

MfG
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!