How would I 'attach' a console/terminal-view to an applications output so I can see what it may be saying?
How would I detach from an applications output without killing the application?
Normally if you fire up a talkative application using the command line you get to see all kinds of wonderful output. However lets say I have a particularly chatty programming running like KINO and I want to view its output at any given moment without restarting it through the command line I cannot, at least I don't know how.
I think I have a simpler solution here, just look for a directoy whose name corresponds to the PID you are looking for, under the pseudo-filesystem accessible under the
/proc
path. So if you have a program running, whose ID is 1199, cd into it:Then look for the
fd
directory underneathThis
fd
directory hold the file-descriptors objects that your program is using (0: stdin, 1: stdout, 2: stderr) and justtail -f
the one you need - in this case, stdout):I wanted to remotely watch a yum upgrade process that had been run locally, so while there were probably more efficient ways to do this, here's what I did:
watch cat /dev/vcsa1
Obviously you'd want to use vcsa2, vcsa3, etc, depending on which terminal was being used.
so long as my terminal window was of the same width as the terminal that the command was being run on, i could see a snapshot of their current output every 2 seconds. The other commands recommended elsewhere did not work particularly well for my situation but that one did the trick.
There are a few options here. One is to redirect the output of the command to a file, and then use 'tail' to view new lines that are added to that file in real time.
Another option is to launch your program inside of 'screen', which is a sort-of text-based Terminal application. Screen sessions can be attached and detached, but are nominally meant only to be used by the same user, so if you want to share them between users, it's a big pain in the ass.
About this question, I know it is possible to catch the output, even when you didn't launch sceen command before launching the processus.
While I never tried it, I've found an interesting article which explains how to do using GDB (and without restarting your process).
redirecting-output-from-a-running-process
Basically:
By the way, if you are running a linux OS on i386 box, comments are talking about a better tool to redirect output to a new console : 'retty' . If so, consider its use.
I was looking for this exact same thing, and found that you can do:
not exactly what you needed, but its quite close
i tried the redirecting output but that didnt work for me, maby because the process was writing to a socket, i dunno