Bitcoin Forum
May 26, 2024, 10:02:44 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1]
  Print  
Author Topic: How to mine on Linux Server with CPU - SCRYPT  (Read 1680 times)
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 18, 2013, 07:20:47 AM
 #1

I have ALOT of servers, i know they wont get supoerb hashrates but id like to mien some SCRYPT.

is there any simple guide to install some miner from root on centos or debian so i can use a bit of my power?

i was trying to find it but couldnt, everything i see is for graphical interfaces.
PS im not linux geek, need step by step guide

yolo
hhs99
Member
**
Offline Offline

Activity: 103
Merit: 10


View Profile
November 18, 2013, 09:38:33 AM
 #2

Your best bet is this software. https://github.com/pooler‎. I use it at home and it is really simple to setup on Ubuntu server. This page will give you the step by step http://forum.feathercoin.com/index.php?topic=321.0‎. If you have issues dont hesitate to PM me.
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 18, 2013, 09:54:21 AM
 #3

hey this looks great. the only problem is.. im on centos so those commands wont work!

Linux ************2.6.32-220.el6.i686 #1 SMP Tue Dec 6 16:15:40 GMT 2011 i686 i686 i386 GNU/Linux

any tutoria lfor that?

yolo
hhs99
Member
**
Offline Offline

Activity: 103
Merit: 10


View Profile
November 18, 2013, 09:55:42 AM
 #4

When I get home from work I will make one real fast. You said Debian so I assumed that's what you wanted.
johny1976
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 18, 2013, 10:03:14 AM
 #5

I have ALOT of servers, i know they wont get supoerb hashrates but id like to mien some SCRYPT.

is there any simple guide to install some miner from root on centos or debian so i can use a bit of my power?

i was trying to find it but couldnt, everything i see is for graphical interfaces.
PS im not linux geek, need step by step guide

I had the same problem, found really good how-to: https://bitcointalk.org/index.php?topic=62322.0
hhs99
Member
**
Offline Offline

Activity: 103
Merit: 10


View Profile
November 18, 2013, 10:31:30 AM
 #6

I have ALOT of servers, i know they wont get supoerb hashrates but id like to mien some SCRYPT.

is there any simple guide to install some miner from root on centos or debian so i can use a bit of my power?

i was trying to find it but couldnt, everything i see is for graphical interfaces.
PS im not linux geek, need step by step guide

I had the same problem, found really good how-to: https://bitcointalk.org/index.php?topic=62322.0

Yes that one would work nicely
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 18, 2013, 11:01:30 AM
 #7

wow thanx guys.

what about stratum, do after --url i put:
--url stratum+tcp://stratum.coinex.pw:9029   -a  ?

cpuminer on windows has stratum in last version or that wont work?

yolo
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 18, 2013, 11:47:14 AM
 #8

and l;ast question..
hwo ot actually stop it if i want or change pool etc?

yolo
ahmed_bodi
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500

Bitrated user: ahmedbodi.


View Profile
November 18, 2013, 02:50:40 PM
 #9

u just press ctrl-c or kill cpuminer/minerd and if u wish to mine theres cryptopools.com dgc,tag and arg pool's 0 fee PPS with a block finder bonus, u wont find a better pool for those coins anywhere

Bitrated user: ahmedbodi.
sheinsha
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
November 18, 2013, 04:03:23 PM
 #10

and l;ast question..
hwo ot actually stop it if i want or change pool etc?

I would recommend using SCREEN so you can close the terminal and resume at any time.
a sample command would be:
Code:
screen -S mining ./minerd --url http://coin.pool.com:1234 --userpass user:password
So once it gets you inside that session, you can press “Ctrl-A” “d” and it will detach you from it.
If you want to access it again:
Code:
screen -x mining

Hope this helps!!

Minar.cc pools are not running anymore, the domain was registered by someone else and I don't have any relationship with the new owner.
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 18, 2013, 04:10:48 PM
 #11

guys thanx for replies! i didnt use screen i was just usisng the command i listed above. it works fine BUT if i close putty - it closes.

screen -r then shows nothing then. obviously i want it to keep working not die when i close putty.

how should i run it so it doesnt die when i close putty?

yolo
johny1976
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 18, 2013, 07:16:19 PM
 #12

guys thanx for replies! i didnt use screen i was just usisng the command i listed above. it works fine BUT if i close putty - it closes.

screen -r then shows nothing then. obviously i want it to keep working not die when i close putty.

how should i run it so it doesnt die when i close putty?

Just put the command called "nohup" before the "screen", so it will look like this:

nohup screen -S mining ./minerd --url http://coin.pool.com:1234 --userpass user:password

The "nohup" is not actually an command, it is signal which tells the following command not to end when SSH connection exits.
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 18, 2013, 10:52:32 PM
 #13

ok so screen without nohup will always be killed when i leave SSH yes?

also if nohup is used and i get back - and leave again - will SSH die or keep running

sorry for noob questions but im really not that good with linux

yolo
johny1976
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 19, 2013, 06:57:17 AM
 #14

ok so screen without nohup will always be killed when i leave SSH yes?

also if nohup is used and i get back - and leave again - will SSH die or keep running

sorry for noob questions but im really not that good with linux

SSH will die, but the process with nohup signal will be running
sheinsha
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
November 20, 2013, 07:04:06 PM
 #15

guys thanx for replies! i didnt use screen i was just usisng the command i listed above. it works fine BUT if i close putty - it closes.

screen -r then shows nothing then. obviously i want it to keep working not die when i close putty.

how should i run it so it doesnt die when i close putty?
did you try
Code:
screen -x mining
as i posted above?

ok so screen without nohup will always be killed when i leave SSH yes?

also if nohup is used and i get back - and leave again - will SSH die or keep running

sorry for noob questions but im really not that good with linux
I use screen all the time without nohup, you just need to detach before pressing CTRL+C if not it would send the CTRL+C to cgminer... closing it and hence closing the screen session.
So, just press CTRL+A then D and it will return to normal ssh, then close your connection as you normally do.
next time you connect just type
Code:
screen -x mining
Let me know if this works for you

Minar.cc pools are not running anymore, the domain was registered by someone else and I don't have any relationship with the new owner.
forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 24, 2013, 01:45:02 AM
 #16

thanx guys but i have problem. at 1 of new servers i got i get this error:
nohup: ignoring input and appending output to `nohup.out'

then the minign wont start at all

yolo
pmconrad
Full Member
***
Offline Offline

Activity: 149
Merit: 102


View Profile WWW
November 24, 2013, 08:53:31 AM
 #17

thanx guys but i have problem. at 1 of new servers i got i get this error:
nohup: ignoring input and appending output to `nohup.out'

then the minign wont start at all
That's not an error message. It's just nohup telling you what it does. The miner should be running, and its output is being redirected to the file "nohup.out" in the current directory. That's why you don't see anything happening.

forzendiablo (OP)
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
November 26, 2013, 01:58:52 PM
 #18

thanx guys but i have problem. at 1 of new servers i got i get this error:
nohup: ignoring input and appending output to `nohup.out'

then the minign wont start at all
That's not an error message. It's just nohup telling you what it does. The miner should be running, and its output is being redirected to the file "nohup.out" in the current directory. That's why you don't see anything happening.
[/quote

it doesnt start running coz whe ni do screen -x mining nothign hsows up.
any way to turn that kessage off?

yolo
meta.p02
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
November 26, 2013, 02:25:43 PM
 #19

Try "tail -f nohup.out" to see whether anything is being output.

Earn Devcoins by Writing | Trade on Cryptsy! Faucets: Watch ads, earn Bitcoin | Visit pages, get Bitcoin | Gamble with faucet earnings!
If you found my post informative/interesting, consider tipping at BTC: 15877457612137dj4MM57bGXRkPzU4wPRM or DVC: 1B2PAYVe9BQRrZKaWZxWtunutwrm6fVcF7.
opticalcarrier
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
November 26, 2013, 02:36:09 PM
 #20

nevermind
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!