.profile in UNIX

B

Bob Smyph

Does anyone know how to access and use the .profile in UNIX while using
NET::SSH in Ruby?

Thanks for the help
 
B

Bob Smyph

Tim said:
How to you mean? By updating it, parsing it from the file itself, or by
using finger, or?

I believe we just need to load it into the session/channel so that we
can use access/use command associated with the .profile

We are trying to run a command through Ruby but it seems that we need
certain environmental properties set (e.g. .profile) in order to do
this. If we log onto the server through Putty this command works just
fine.
 
T

Tim Greer

Bob said:
Does anyone know how to access and use the .profile in UNIX while
using NET::SSH in Ruby?

Thanks for the help

How to you mean? By updating it, parsing it from the file itself, or by
using finger, or?
 
B

Bob Smyph

Tim said:
Sorry, I got you. I read the post too quickly and for some reason I
thought you said .plan (I should have known that sounded strange).
Indeed, the .profile is only set to work with shell, in the shell env,
which is why CGI, web server APIs/modules and rails don't read it. Did
you need to set any environments or did you want to emulate or somehow
use the shell vars naturally (assuming you can trust the
user's .profile)?

If the only way to get this to work is to set the environment/variables
or emulate them somehow in the Ruby script, that is what we will need to
do. Any idea as how to do this?
 
T

Tim Greer

Bob said:
I believe we just need to load it into the session/channel so that we
can use access/use command associated with the .profile

We are trying to run a command through Ruby but it seems that we need
certain environmental properties set (e.g. .profile) in order to do
this. If we log onto the server through Putty this command works just
fine.

Sorry, I got you. I read the post too quickly and for some reason I
thought you said .plan (I should have known that sounded strange).
Indeed, the .profile is only set to work with shell, in the shell env,
which is why CGI, web server APIs/modules and rails don't read it. Did
you need to set any environments or did you want to emulate or somehow
use the shell vars naturally (assuming you can trust the
user's .profile)?
 
A

ara.t.howard

Does anyone know how to access and use the .profile in UNIX while
using
NET::SSH in Ruby?

Thanks for the help


you need to invoke a login shell on the remote host, then
your .profile will be sourced.

probably there is some option to specify the remote shell for
Net::SSH, specify something like

'/bin/bash --login'

alternatively wrap your commands in something that does this for you
like

cfp:~ > cat `which bashenv`
#!/bin/bash --login
exec "$@"


and then invoke commands like 'bashenv something.exe'


a @ http://codeforpeople.com/
 
R

Rodrigo Bermejo

Bob said:
If the only way to get this to work is to set the environment/variables
or emulate them somehow in the Ruby script, that is what we will need to
do. Any idea as how to do this?

You can 'source' the .profile in your ssh session doing a:
cmd=". /home/user/.profile"

note the space after the dot.

Regards.
 
R

Rob Biedenharn

You can 'source' the .profile in your ssh session doing a:
cmd=". /home/user/.profile"

note the space after the dot.

Regards.


Read the docs about the intended use and behavior of ~/.profile or
~/.login or ~/.bash_login compared to ~/.bashrc

It's probably in the INVOCATION section of the manual for your shell.


-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 
G

Gerardo Santana Gómez Garrido

I believe we just need to load it into the session/channel so that we
can use access/use command associated with the .profile

We are trying to run a command through Ruby but it seems that we need
certain environmental properties set (e.g. .profile) in order to do
this. If we log onto the server through Putty this command works just
fine.

If your server is running OpenSSH, you can also use ~/.ssh/environment.

See sshd(8) for details, under the LOGIN PROCESS section:

http://www.openbsd.org/cgi-bin/man.cgi?query=sshd&sektion=8
 
B

Bob Smyph

Thanks to all the help. We took some of your suggessions and some of our
own hacking and got this to work.

thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,164
Messages
2,570,898
Members
47,439
Latest member
shasuze

Latest Threads

Top