Author

Topic: [ mining os ] nvoc - page 197. (Read 418546 times)

full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 08, 2017, 02:45:30 AM
OK guys
Here is My WhatToMine Auto Switch forked from damNmad smartminer
It will check the coins you want to mine then based on your cards and your own url mine the top coin if difficulty low and profit is high

These are the files:
WTM_AUTO_SWITCH
WTM_AUTO_SWITCH.py
Put both in /home/m1/

Edit /home/m1/1bash and add :
Code:
# WTM AUTO SWITCH SETTINGS# remember to disable Parallax MODE (_Parallax_MODE="NO")
 
WTM_AUTO_SWITCH="YES"
WTM_AUTO_SWITCH_SYNC_INTERVAL="3" # Time to sync with WTM for best coin
#WTM_AUTO_SWITCH_URL="FOR NOW EDIT IT IN WTM_AUTO_SWITCH.py
#WTM_AUTO_SWITCH_COINS=" FOR NOW EDIT IT IN WTM_AUTO_SWITCH.py > includeTags = [ 'ZEC', 'ZEN', 'ZCL', 'SIB' , 'LBC'  ]
#WTM_AUTO_SWITCH_diff="TO BE ADDED IN NEXT VERSIONS"  # PERCENTAGE TO CHANGE IF TOP COIN IS HIGHER THAN CURRENT COIN

Edit /home/m1/3main and add these lines somewhere  after Maxximus007_AUTO_TEMPERATURE_CONTROL ( easier to find "SALFTER_NICEHASH_PROFIT_SWITCHING" and add before it:
Code:
if [ $WTM_AUTO_SWITCH == "YES" ]
then
HCD='/home/m1/WTM_AUTO_SWITCH'
running=$(ps -ef | awk '$NF~"WTM_AUTO_SWITCH" {print $2}')
if [ "$running" == "" ]
then
guake -n $HCD -r WTM_AUTO_SWITCH -e "bash /home/m1/WTM_AUTO_SWITCH"
running=""
fi
fi

Install requests python module with :
Code:
sudo apt install  python-requests

Go to whattomine select your cards, hash rate, power.
You can also select to mine base on current, 24 hour, 3 day or a week profit and difficulty.
Dont forget to choose same for both profit and difficulty or it will give wrong results.
Click calculate, then add .json to coins at the begining of the address after you click calculate!!!
From:
Code:
https://whattomine.com/coins?utf8=✓&adapt_q_280x=0....
To:
Code:
https://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q

Copy the whole address and paste it to WTM_AUTO_SWITCH.py replace the default address:

Code:
data = requests.get("https://whattomine.com/coins.json");
Set the coins you want to be switched in WTM_AUTO_SWITCH.py in the included tags :

Code:
includeTags = [ 'ZEC', 'ZEN', 'ZCL', 'SIB' , 'LBC'  ]

Now you can start wtm auto switch with
Code:
bash WTM_AUTO_SWITCH &


P.S
Need help to improve the WTM_AUTO_SWITCH.py script, if any one willing to help please let me know.

I'm excited for this!
When I run it, I'm getting an error: ValueError: No JSON object could be decoded
cat: /home/m1/top_coin: No such file or directory
screen killed (pid 15856)
screen killed (pid 15857)

It looks like it's trying to find a file that doesn't exist: TOP_COIN=$(cat /home/m1/top_coin).  There is no "top_coin" file in home/m1.  Is it supposed to create one?


It should create one and put the top coin in it,
Are you sure you put both in /home/m1/ ?
WTM_AUTO_SWITCH
WTM_AUTO_SWITCH.py

Also did you change the link and add .json to link ?

First run may gives error, let it go for 2nd cycle and it should be ok,
full member
Activity: 558
Merit: 194
October 07, 2017, 10:34:21 PM
I recommend using a g4560 or better CPU when using more than 7 GPUs.  I would get a g4560 or g4600 and swap it with one of your celerons in your 1st or 3rd rig.  If this solves the problem; I would upgrade all your rigs CPUs.

What is the concern running Celeron CPUs with 8+ GPUs?

I have 4 rigs with Celeron CPUs atm as follows:

1. MSI Z270-A PRO, G3950, 6x GPUs
2. MSI Z270-A PRO, G3950, 7x GPUs
3. Asus PRIME Z270-A, G3930, 8x GPUs (soon to be 9x GPUs)
4. Asus PRIME Z270-AR, G3930, 9x GPUs (when they show up)

The first 3 rigs are mining ZEC using EWBF and rig #3 with the 8x GPUs will run for weeks at a time with no issues.

Is the issue with Celeron's only with certain algos and miners?
full member
Activity: 210
Merit: 100
October 07, 2017, 07:29:31 PM
anyone help me out with the telegram?

I got my API key from @BotFather and my ID from the IDBOT, I inserted them in the correct spots, made sure telegram was turned on and the watchdog was turned on as well, both are "YES" but I'm not receiving any notifications. what did I miss?

see:

https://bitcointalksearch.org/topic/mining-os-nvoc-1854250

and:

https://bitcointalksearch.org/topic/m.21430404


Thank you zero, my problem was very silly and I missed the part where you're supposed to activate the bot you create, I was doing it over my phone/teamviewer so I was reading the bitcoin talk steps from palamari and not reading inside the telegram messages (may want to add that part to your steps for people like me!) thanks for the reply
newbie
Activity: 66
Merit: 0
October 07, 2017, 07:12:20 PM
OK guys
Here is My WhatToMine Auto Switch forked from damNmad smartminer
It will check the coins you want to mine then based on your cards and your own url mine the top coin if difficulty low and profit is high

These are the files:
WTM_AUTO_SWITCH
WTM_AUTO_SWITCH.py
Put both in /home/m1/

Edit /home/m1/1bash and add :
Code:
# WTM AUTO SWITCH SETTINGS# remember to disable Parallax MODE (_Parallax_MODE="NO")
 
WTM_AUTO_SWITCH="YES"
WTM_AUTO_SWITCH_SYNC_INTERVAL="3" # Time to sync with WTM for best coin
#WTM_AUTO_SWITCH_URL="FOR NOW EDIT IT IN WTM_AUTO_SWITCH.py
#WTM_AUTO_SWITCH_COINS=" FOR NOW EDIT IT IN WTM_AUTO_SWITCH.py > includeTags = [ 'ZEC', 'ZEN', 'ZCL', 'SIB' , 'LBC'  ]
#WTM_AUTO_SWITCH_diff="TO BE ADDED IN NEXT VERSIONS"  # PERCENTAGE TO CHANGE IF TOP COIN IS HIGHER THAN CURRENT COIN

Edit /home/m1/3main and add these lines somewhere  after Maxximus007_AUTO_TEMPERATURE_CONTROL ( easier to find "SALFTER_NICEHASH_PROFIT_SWITCHING" and add before it:
Code:
if [ $WTM_AUTO_SWITCH == "YES" ]
then
HCD='/home/m1/WTM_AUTO_SWITCH'
running=$(ps -ef | awk '$NF~"WTM_AUTO_SWITCH" {print $2}')
if [ "$running" == "" ]
then
guake -n $HCD -r WTM_AUTO_SWITCH -e "bash /home/m1/WTM_AUTO_SWITCH"
running=""
fi
fi

Install requests python module with :
Code:
sudo apt install  python-requests

Go to whattomine select your cards, hash rate, power.
You can also select to mine base on current, 24 hour, 3 day or a week profit and difficulty.
Dont forget to choose same for both profit and difficulty or it will give wrong results.
Click calculate, then add .json to coins at the begining of the address after you click calculate!!!
From:
Code:
https://whattomine.com/coins?utf8=✓&adapt_q_280x=0....
To:
Code:
https://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q

Copy the whole address and paste it to WTM_AUTO_SWITCH.py replace the default address:

Code:
data = requests.get("https://whattomine.com/coins.json");
Set the coins you want to be switched in WTM_AUTO_SWITCH.py in the included tags :

Code:
includeTags = [ 'ZEC', 'ZEN', 'ZCL', 'SIB' , 'LBC'  ]

Now you can start wtm auto switch with
Code:
bash WTM_AUTO_SWITCH &


P.S
Need help to improve the WTM_AUTO_SWITCH.py script, if any one willing to help please let me know.

I'm excited for this!
When I run it, I'm getting an error: ValueError: No JSON object could be decoded
cat: /home/m1/top_coin: No such file or directory
screen killed (pid 15856)
screen killed (pid 15857)

It looks like it's trying to find a file that doesn't exist: TOP_COIN=$(cat /home/m1/top_coin).  There is no "top_coin" file in home/m1.  Is it supposed to create one?

newbie
Activity: 44
Merit: 0
October 07, 2017, 05:17:49 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

I would also not trust that PSU
if it's modular check the pins on the connectors that connect on the psu side - I had gpu's drop off tone particular cable regularly, it was driving me crazy until I noticed the disintegrating pin on the psu connector (it was a corsair 850i platinum)



Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?


it can be a lot of things but I would replace that psu. What brand and model is it?

on this particular system it are 2 different psu , on the other's it's 3 PSU all the same Cheesy

The malfunction system has a 1200 platinum seasonic psu and a corsair platinum 850 w psu

The othersystems all have 3 x 850w corsair platinum psu hxi or something

how do i sample test this psu to see for error?
can i use voltage meter?

If you fried so many mobos I wouldn't try connecting those power supplies anymore. Request RMA.

You can give it one more try before replacing the mobo and power supplies for that rig

What you should do is power the motherboard without any risers and GPU's first. Use only one power supply, plug the 24-pin ATX cable, 8-pin CPU cable and two 4-pin cables to the motherboard and power it on.

If it works, power down your PS, wait 30 seconds the plug one GPU directly to the pci-x16 slot (no riser), don't forget to plug PCI power to the GPU, then power on the rig.

If it works, turn off PS, wait 30 seconds, unplug the GPU and connect it trough riser to the motherboard on the x16 slot (plug  power to the riser) then power on the rig.

If it works, power off the PS, add another GPU trough a riser, power on... and so on, keep adding one GPU at a time.

Here is manufacturer's web site explaining how to connect:
http://www.biostar.com.tw/app/en/event/crypto_mining/page4_2.htm

thx i will try again,
newbie
Activity: 46
Merit: 0
October 07, 2017, 05:01:19 PM
Hi guys,
I've problems with detecting all installed GPUs. I bought 13x risers V008S with 100cm USB 3 cables. Installed 11x 1080Ti, but system detect only 10.

There are 3 PSU (2x 1700W, 1x 1200W). Each GPU is connected on same PSU as riser. I don't know why I don't see all cards. There is some way, how detect which cars wasn't recognise?
Mobo: ASRock PRO (for 13 gpus)

Unfortunatelly this is not one problem which I have... :-(

Miner is running and sometimes is killed immediately after execution for 5 or more cycles, so it's mean that I don't mine for 20 minutes - if mining MONA.

Safter sometimes has same problem... :-(
newbie
Activity: 54
Merit: 0
October 07, 2017, 03:39:55 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?


it can be a lot of things but I would replace that psu. What brand and model is it?

on this particular system it are 2 different psu , on the other's it's 3 PSU all the same Cheesy

The malfunction system has a 1200 platinum seasonic psu and a corsair platinum 850 w psu

The othersystems all have 3 x 850w corsair platinum psu hxi or something

how do i sample test this psu to see for error?
can i use voltage meter?

If you fried so many mobos I wouldn't try connecting those power supplies anymore. Request RMA.

You can give it one more try before replacing the mobo and power supplies for that rig

What you should do is power the motherboard without any risers and GPU's first. Use only one power supply, plug the 24-pin ATX cable, 8-pin CPU cable and two 4-pin cables to the motherboard and power it on.

If it works, power down your PS, wait 30 seconds the plug one GPU directly to the pci-x16 slot (no riser), don't forget to plug PCI power to the GPU, then power on the rig.

If it works, turn off PS, wait 30 seconds, unplug the GPU and connect it trough riser to the motherboard on the x16 slot (plug  power to the riser) then power on the rig.

If it works, power off the PS, add another GPU trough a riser, power on... and so on, keep adding one GPU at a time.

Here is manufacturer's web site explaining how to connect:
http://www.biostar.com.tw/app/en/event/crypto_mining/page4_2.htm

thx i will try again,
hero member
Activity: 786
Merit: 1000
October 07, 2017, 03:22:15 PM
Has anyone tested running the MSI Z170A GAMING M5 with 8 GPUs, with an m2 adapter for the 8th GPU?

Yesterday, I got an 8th GPU working using the M2 adapter to work on the MSI Z170A Pro Carbon. I spent two days trying to do this. I read tons of forums where people had no luck on either board. The only solution that worked for me is this one:
https://bitcointalksearch.org/topic/msi-z170a-gaming-pro-carbon-8gpu-using-the-m2-port-2064405

I was more than a bit a anxious...but then these M2 adapters are so cheap that I simply threw caution to the wind.

full member
Activity: 200
Merit: 101
October 07, 2017, 02:22:57 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?


it can be a lot of things but I would replace that psu. What brand and model is it?

on this particular system it are 2 different psu , on the other's it's 3 PSU all the same Cheesy

The malfunction system has a 1200 platinum seasonic psu and a corsair platinum 850 w psu

The othersystems all have 3 x 850w corsair platinum psu hxi or something

how do i sample test this psu to see for error?
can i use voltage meter?

If you fried so many mobos I wouldn't try connecting those power supplies anymore. Request RMA.

You can give it one more try before replacing the mobo and power supplies for that rig

What you should do is power the motherboard without any risers and GPU's first. Use only one power supply, plug the 24-pin ATX cable, 8-pin CPU cable and two 4-pin cables to the motherboard and power it on.

If it works, power down your PS, wait 30 seconds the plug one GPU directly to the pci-x16 slot (no riser), don't forget to plug PCI power to the GPU, then power on the rig.

If it works, turn off PS, wait 30 seconds, unplug the GPU and connect it trough riser to the motherboard on the x16 slot (plug  power to the riser) then power on the rig.

If it works, power off the PS, add another GPU trough a riser, power on... and so on, keep adding one GPU at a time.

Here is manufacturer's web site explaining how to connect:
http://www.biostar.com.tw/app/en/event/crypto_mining/page4_2.htm
full member
Activity: 224
Merit: 100
October 07, 2017, 01:38:54 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?


it can be a lot of things but I would replace that psu. What brand and model is it?

on this particular system it are 2 different psu , on the other's it's 3 PSU all the same Cheesy

The malfunction system has a 1200 platinum seasonic psu and a corsair platinum 850 w psu

The othersystems all have 3 x 850w corsair platinum psu hxi or something

how do i sample test this psu to see for error?
can i use voltage meter?


Im pretty sure you are going to see the right amount of volts unless you put some load onto it and what you are looking for is amp anyway (pure speculation, check with a pro).

You checked all your wires one by one carefully ? A short could definitely fry your motherboard but so is a power supply with a defect ovp/ocp.

newbie
Activity: 54
Merit: 0
October 07, 2017, 01:22:49 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?


it can be a lot of things but I would replace that psu. What brand and model is it?

on this particular system it are 2 different psu , on the other's it's 3 PSU all the same Cheesy

The malfunction system has a 1200 platinum seasonic psu and a corsair platinum 850 w psu

The othersystems all have 3 x 850w corsair platinum psu hxi or something

how do i sample test this psu to see for error?
can i use voltage meter?
full member
Activity: 224
Merit: 100
October 07, 2017, 01:20:06 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?


it can be a lot of things but I would replace that psu. What brand and model is it?
newbie
Activity: 54
Merit: 0
October 07, 2017, 01:11:23 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?

Yes I use those.
However I have 4 systems still running like that.
Today I tested with a mobo with 6gpu card only.
It still fried, I also did not use the adapter for this test and it still fried my mobo.

I also tested


Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?
full member
Activity: 224
Merit: 100
October 07, 2017, 01:08:19 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing


how are you switching on your other/s power supply ?
Using this ? https://www.amazon.com/Supply-Adapter-Connector-Triple-Multiple/dp/B073PRM7YZ
Manually ?
Something else ?
newbie
Activity: 54
Merit: 0
October 07, 2017, 01:02:02 PM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?


You missunderstand or i explained wrong  :d

Either either way..

I tested all parts separate by powering the parts with psu. All fans are running etc .

However if I prepare my system.
Combine all parts like they should.
The moment I power on. It will fry the mobo. The cpu fan will spin briefly and it is dead from this moment.

I have fried 4 mobos already cause i don't know how I can find problem without trying to connect it.

Is it possible a gpu is dead or something? It used to work before and suddenly it died after I had some gpu losses..

If it is this gpu or a extender how do I find it because If i have all gpu powered with psu no mobo and no display. Just power to see fans running all have working fans.

How is it possible that broken gpu fry my motherboards? Or is it something I'm missing

Also
I even fried a mobo while only the following where connected.

Connected on psu: hdd, pci extenders, 6pin gpu powers, mobo main plug +cpu.

Connected on mobo cpu + main mobo power.

The extenders were not plugged in.
This gives me reason to think it is not gpu?

Is it possible something gives short circuit? From psu?

newbie
Activity: 44
Merit: 0
October 07, 2017, 11:49:09 AM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...

Why would you attach PSU's while the system is powered?
Maybe I'm not understanding something. Can you give more info?
newbie
Activity: 54
Merit: 0
October 07, 2017, 10:47:55 AM
Anybody can help me out..

I have 5 12GPU rigs ,

1 of them  i keep frying mobo's .. i have tried everything..

Tested all parts sperately all seems to work
however  the minute i attach my PSU's to the motherwboard whilst I have GPU's and risers powered , even without plugging the PCI's in the MOBO.

It instantly fries my mobo...

I have fried 4 motherboards already trying to trial and error...


it used to work before though...
newbie
Activity: 28
Merit: 0
October 07, 2017, 05:56:03 AM
Any one has any news from fullzero ?
His last post was Oct. 1st a week ago ... Shocked
And last active Oct 3rd.
Getting worried for him.

someone ping him!
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 07, 2017, 05:53:34 AM
Any one has any news from fullzero ?
His last post was Oct. 1st a week ago ... Shocked
And last active Oct 3rd.
Getting worried for him.
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 07, 2017, 05:40:54 AM
Any one knows a simple embedded text editor for web sites?
I want to add 1bash editor to nvOC web page, so we can edit it from its web page
Going to add a restart miner too if can find a simple editor.

This is how it looks like now :

Jump to: