Tagged Questions

0
votes
3answers
110 views

Using Ruby and SCP/SSH, how to determine if a file exists before uploading a copy

I'm uploading a file to a remote server using SCP, but what's the proper way of seeing if that file exists before doing so?
1
vote
0answers
29 views

gltail “Missing gem net-ssh”

I'm attempting to get gltail set up on my local system to monitor logs remotely. I've got all the dependencies installed, but when I go to run gltail ... ./gl_tail configfile ../config.yaml I get …
1
vote
3answers
83 views

Net::SSH::Multi using the session.exec, how do you get the output straight away? Ruby

So I've been trying to use the Net::SSH::Multi to login to multiple machines using the via SSH, and then executing shell commands on the remote machines with session.exec("some_command"). The Code: …
1
vote
1answer
42 views

Having problems with net::ssh::multi can’t require it! Ruby

So I've tried to install net::ssh::multi on mac using gems: gems install net-ssh-multi The installation went fine, however when I type: require 'net/ssh/multi' it says load error. I have no idea …
0
votes
1answer
99 views

What to do when Net-SSH complains about exec! method missing?

This is driving me crazy. I run into this every now and then on a new ubuntu/debian server. Basically I can't do a exec! through net-ssh. Note, that I can require 'net/ssh' perfectly fine. sample …
1
vote
5answers
427 views

‘no such file to load — net/ssh’ from rails Controller on Ubuntu

I have a very simple controller: require 'net/ssh' class MyController < ApplicationController def foo render :text => 'bar' end end But when I request …