Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just ssh-ed to some remote server and found that STDOUT and STDERR of all commands/processes I am trying to run in bash is redirected to somewhere. So, I got following questions

How to detect:

1) Which file STDOUT, STDERR is beeing rerouted in Linux?

and

2) And how reroute by default STDOUT and STDERR back to /dev/tty?

Thank you in advance.

share|improve this question
How did you find that out? – Adrian Ratnapala Jan 24 '12 at 21:43
just typing commands that should output to STDOUT and STDERR. – Sergey Jan 24 '12 at 21:48
Is there anything relevant in .bashrc? – shadyabhi Jan 24 '12 at 21:49
nope, everything and everywhere seems absolutely as standart ec2 ubuntu instance(it is ec2 instance, btw). – Sergey Jan 24 '12 at 21:51
1  
can you edit your post to include a short use case that shows your logging in via ssh, executing a command that should produce a error, and a cmd that should produce some output (and include any output that does occur)? Good luck. – shellter Jan 24 '12 at 22:21
show 3 more comments

3 Answers

up vote 2 down vote accepted

A command that should do literally what you asked for in (2) is

exec >/dev/tty 2>&1

But I suspect that your analysis of the problem is incorrect. It would be useful to see the output of ssh -v ... (where ... is whatever arguments you typed in your original ssh command).

share|improve this answer

The command:

ls -l /proc/$$/fd/{1,2}

will show you which files are open as stdout (file descriptor 1) and stderr (file descriptor 2).

share|improve this answer

It can only be done if your longing shell is started with a pipe to tee command with another console as a parameter.

Let me explain.

If you are logging in /dev/tty1 and someone else is logging in /dev/tty2. If you start your shell (bash) by following command all the STDOUT/STDERR will be rerouted/copied to another shell (/dev/tty2 in this case).

bash 2>&1 | tee /dev/tty2

So, someone sitting in /dev/tty2 will see all of your activity.

If someone logins shell is /bin/bash 2>&1 | tee /dev/tty2 instead of /bin/bash It'll happen every time he logs in. But I am not sure login shell can be set that way.

If someone reroutes all the output of your shell this way you can check it just by checking if any tee is running in background.

ps ax | grep tee

This will output something like

tee /dev/tty2
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.