Bitcoin Forum
April 24, 2024, 03:36:00 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Need help with SSH please.  (Read 2236 times)
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 07, 2011, 11:58:58 AM
 #1

i have my mining rig in my kitchen, i have installed ssh on the mining rig (ubuntu) and i dont know how to start my mining with SSH putty from my desktop computer (win7) in my room. how do i connect to my mining rig and how do i make it not exit/stop mining when i close putty on my desktop computer?

please help, i have set everything up, but im struggling with putty and ssh.

thanks.

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
1713929760
Hero Member
*
Offline Offline

Posts: 1713929760

View Profile Personal Message (Offline)

Ignore
1713929760
Reply with quote  #2

1713929760
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713929760
Hero Member
*
Offline Offline

Posts: 1713929760

View Profile Personal Message (Offline)

Ignore
1713929760
Reply with quote  #2

1713929760
Report to moderator
SomeoneWeird
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile
June 07, 2011, 12:06:02 PM
 #2

i have my mining rig in my kitchen, i have installed ssh on the mining rig (ubuntu) and i dont know how to start my mining with SSH putty from my desktop computer (win7) in my room. how do i connect to my mining rig and how do i make it not exit/stop mining when i close putty on my desktop computer?

please help, i have set everything up, but im struggling with putty and ssh.

thanks.

Use screen.
http://www.howtogeek.com/howto/ubuntu/keep-your-ssh-session-running-when-you-disconnect/
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 07, 2011, 12:08:42 PM
 #3

i have my mining rig in my kitchen, i have installed ssh on the mining rig (ubuntu) and i dont know how to start my mining with SSH putty from my desktop computer (win7) in my room. how do i connect to my mining rig and how do i make it not exit/stop mining when i close putty on my desktop computer?

please help, i have set everything up, but im struggling with putty and ssh.

thanks.

Use screen.
http://www.howtogeek.com/howto/ubuntu/keep-your-ssh-session-running-when-you-disconnect/

thanks very much. but how do i connect to my ubunty mining rig with putty?
i will follow this guide, i will comment later today if it workes:) thanks

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
SomeoneWeird
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile
June 07, 2011, 12:12:43 PM
 #4

i have my mining rig in my kitchen, i have installed ssh on the mining rig (ubuntu) and i dont know how to start my mining with SSH putty from my desktop computer (win7) in my room. how do i connect to my mining rig and how do i make it not exit/stop mining when i close putty on my desktop computer?

please help, i have set everything up, but im struggling with putty and ssh.

thanks.

Use screen.
http://www.howtogeek.com/howto/ubuntu/keep-your-ssh-session-running-when-you-disconnect/

thanks very much. but how do i connect to my ubunty mining rig with putty?
i will follow this guide, i will comment later today if it workes:) thanks

Run ifconfig on your ubuntu machine, putty into that ip from your windows machine...
phungus
Full Member
***
Offline Offline

Activity: 128
Merit: 100


I'm doin' fine on cloud 9


View Profile
June 07, 2011, 12:30:17 PM
 #5

Like the others said, Putty into your Ubuntu server.

When you log in, execute the command 'screen'. Press Return on the opening startup message.

You will now be in the screen session. The screen command is Control-A and then the command. For instance, to get help, press Ctrl-A ? (Ctrl-A question mark).

My most used screen commands:

Ctrl-A c        <- to create a new window (or as many as you like)
Ctrl-A 0        <- to switch back to the first window
Ctrl-A 1        <- to switch to window 1

Ctrl-A Ctrl-[  <- Enter cut and paste mode. Move the cursor around, hit space where you want to start, hit space again to copy the text
Ctrl-A Ctrl-]  <- Paste the text you just selected

Ctrl-A d        <- Detach screen but leave it running in the background so you can come back later.


You can now log out. When you log back in, run 'screen -r' to re-attach to your session.


If your session crashes or you get disconnected for whatever reason, screen will sometimes not know about it for a minute or two. In this case, when you log back in, run 'screen -D -r' to power-detach the session and re-attach it.


Hope this gets you jumpstarted.

lw

I can do stuff
Crs
Member
**
Offline Offline

Activity: 107
Merit: 10



View Profile
June 07, 2011, 12:41:56 PM
 #6

Install putty and connect to you machine via ssh.
After that you can start your bitcoin workers with this command:

sudo python phoenix.py -u http://myusername.myworker:mypassword@mining.bitcoin.cz:8332/ DEVICE=0 -k phatk PLATFORM=1 BFI_INT VECTORS AGGRESSION=10  2>&1 > bitcoin0.log &

this command will start your mining session and keep it in the background.
The "2>&1 > bitcoin0.log" part will write your mining software's output into a log file (bitcoin0.log, 0 for your first gpu, 1 for your second gpu, etc)
You can close and open your ssh session as often as you like.
To check your phoneix miner output do this:

root@nmc-GA-790FXTA-UD5:/home/nmc/phoenix# tail bitcoin0.log
[07/06/2011 15:38:53] Result: 6d7502cd accepted
[07/06/2011 15:39:01] Result: 965a616d accepted
[07/06/2011 15:39:03] Result: 5c3fc585 accepted
[07/06/2011 15:39:07] Result: 7d1b6a3b accepted
[07/06/2011 15:39:14] Result: 8a3fed9c accepted
[07/06/2011 15:39:16] Result: 48ff0a71 accepted
[07/06/2011 15:39:38] Result: 4807539e accepted
[07/06/2011 15:39:40] Result: 131f1924 accepted
[07/06/2011 15:39:41] Result: 7e48e241 accepted
[322.62 Mhash/sec] [33497 Accepted] [1071 Rejected] [RPC]

phungus
Full Member
***
Offline Offline

Activity: 128
Merit: 100


I'm doin' fine on cloud 9


View Profile
June 07, 2011, 12:57:02 PM
 #7


Yes, but with screen you can leave one window running the mining software, and another one idling on IRC. :-)


lw

I can do stuff
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 07, 2011, 07:08:58 PM
 #8

Like the others said, Putty into your Ubuntu server.

When you log in, execute the command 'screen'. Press Return on the opening startup message.

You will now be in the screen session. The screen command is Control-A and then the command. For instance, to get help, press Ctrl-A ? (Ctrl-A question mark).

My most used screen commands:

Ctrl-A c        <- to create a new window (or as many as you like)
Ctrl-A 0        <- to switch back to the first window
Ctrl-A 1        <- to switch to window 1

Ctrl-A Ctrl-[  <- Enter cut and paste mode. Move the cursor around, hit space where you want to start, hit space again to copy the text
Ctrl-A Ctrl-]  <- Paste the text you just selected

Ctrl-A d        <- Detach screen but leave it running in the background so you can come back later.


You can now log out. When you log back in, run 'screen -r' to re-attach to your session.


If your session crashes or you get disconnected for whatever reason, screen will sometimes not know about it for a minute or two. In this case, when you log back in, run 'screen -D -r' to power-detach the session and re-attach it.


Hope this gets you jumpstarted.

lw


thanks.. its working very well:) Smiley
but it seems i have a problem or tow.

i run putty and connect to my ubuntu after logging in. i typre screen command. then start mining on gpu1. i press "ctrl a c t" to create a new window and i start mining on gpu2. then i create another window to check temperature.

i cant switch back to screen 1 or 2 or 3.. all it does is showing me the 2 latest screens, and that is gpu2 and temperature check screen.
when i press  "ctrl a w" nothing happens when i want to see how many screens are opened.

the only thing works is "ctrl a a" it switches between the tow last screens...

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
xlcus
Legendary
*
Offline Offline

Activity: 966
Merit: 1009


View Profile
June 07, 2011, 07:19:51 PM
 #9

ctrl+a [space] cycles round all of the screens
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 07, 2011, 11:58:29 PM
 #10

ctrl+a [space] cycles round all of the screens

it says "no other window."

for some reason when i close putty and connect again, i cant access the screens and i know they are running because my gpu temperature is 67c.

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 08, 2011, 08:04:17 PM
 #11

bump

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
melanarchy
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
June 08, 2011, 09:28:08 PM
 #12

screen -r
(or screen -rd)

will connect you back to the existing windows

^a-c makes a new virtual window once you're back inside of screen
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 08, 2011, 11:00:16 PM
Last edit: June 08, 2011, 11:54:05 PM by darkpandora
 #13

screen -r
(or screen -rd)

will connect you back to the existing windows

^a-c makes a new virtual window once you're back inside of screen

i did type "screen -d -r" then i get this:


aram@aram-MS-7640:~$ screen -d -r
There are several suitable screens on:
        2345.pts-0.aram-Ms (06/09/2011 12:52:20 AM)        (Detached)
        1878.pts-0.aram-Ms (06/08/2011 08:21:02 PM)        (Attached)
Type "screen [-d] -r [pid.]tty.host" to resume one of them.


then i type "screen -r" but i can only see one of the screens, i cant switch. i press "ctrl A 1" or "ctrl A 2" or space. it tells me "no other window".

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
CD-RW
Jr. Member
*
Offline Offline

Activity: 56
Merit: 22


View Profile
June 08, 2011, 11:11:10 PM
 #14

Will this help? unixrefcard.pdf
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 08, 2011, 11:53:21 PM
 #15

Will this help? unixrefcard.pdf

thanks:)
it really helped me..

i solved my problem this way:

screen -ls

2345.pts-0.aram-Ms (06/09/2011 12:52:19 AM)        (Detached)
1878.pts-0.aram-Ms (06/08/2011 08:21:01 PM)        (Attached)


the screen that was attached, i couldn't connect to it, because it thought i was already viewing it. but i could connect to screen 2345. so i had to detach screen 1878: screen -d 1878

it detached the screen. then connect to the screen: screen -r 1878

the problem was solved. i could view both screens... SmileyCheesy

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
xlcus
Legendary
*
Offline Offline

Activity: 966
Merit: 1009


View Profile
June 09, 2011, 10:55:42 AM
 #16

From what you've pasted, it appears you have multiple copies of screen running.

You only need to run one copy of screen (i.e. only type the command screen once).  From within one instance of screen you can create multiple pages (for want of a better word), which you can then cycle around with ctrl+a [space]
darkpandora (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
June 09, 2011, 04:42:13 PM
 #17

From what you've pasted, it appears you have multiple copies of screen running.

You only need to run one copy of screen (i.e. only type the command screen once).  From within one instance of screen you can create multiple pages (for want of a better word), which you can then cycle around with ctrl+a [space]


i dont know. but i figured it out how to get it to work:D but, i have one more question. how do i access my mining rig with putty from another ip or computer (my brothers house in this case)? from my house i access ubuntu by typing the LAN adress (10.0.0.3) on putty. what about none local connection?

K U R D I  S T A N
K U R D I S T A N
K U R D I S T A N
SomeoneWeird
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile
June 09, 2011, 09:30:36 PM
 #18

From what you've pasted, it appears you have multiple copies of screen running.

You only need to run one copy of screen (i.e. only type the command screen once).  From within one instance of screen you can create multiple pages (for want of a better word), which you can then cycle around with ctrl+a [space]


i dont know. but i figured it out how to get it to work:D but, i have one more question. how do i access my mining rig with putty from another ip or computer (my brothers house in this case)? from my house i access ubuntu by typing the LAN adress (10.0.0.3) on putty. what about none local connection?

You need to login to your router and forward port 22, then grab your external ip from something like http://ipchicken.com and use that in putty when your not home.
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!