|
As title. I want to copy all output in terminal and save to a file for further analysis.
Started by arsane on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Press SHIFT+HOME key.
Triple click the last line of current terminal(do not release the mouse).
Like it.
|
|
Let's take example of a command "example-command".
I open terminal I write example-command in terminal, and example-command executes. Now if I close terminal, example-command gets killed too. I now try with " example-command & ", but the same behaviour...
Started by Vikrant Chaudhary on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You can background and work with it normally; it will simply continue running after you've quit... .
E.g., nohup example-command.
Use nohup when you start your program.
Example-command &; disown {pid}
or just
disown
There are two ways, identical in result .
|
|
Let say i access to a server using ssh. In the same time there are another person access that server..is it possible to watch what is going on in that person's terminal..it's mean i can only watching what is he typing...
Answer Snippets (Read the full thread at stackoverflow):
See http.
Person wants you to see his console, you two can use screen to share a terminal.
|
Ask your Facebook Friends
|
I installed Emacs 23 on OS X (the NS/Cocoa variant) and I got the following error when I tried to run ssh from a shell inside emacs.
"pseudo terminal will not be allocated because stdin is not a terminal".
Searching around the web tells me that it is ...
Started by Sriram Krishnan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you using M-x shell or M-x term, term is a full blown terminal emulator that will allow you.
|
|
Hi everyone, We will be arriving at the Cancun Airport on Feb. 20th into Terminal 2 with WestJet at 10:36am and our friends will be arriving at Terminal 3 with Sun Country at 11:15am. We will all be staying at the Iberostar Queztal and would like to share...
Started by SunshineSoake... on
, 11 posts
by 6 people.
Answer Snippets (Read the full thread at tripadvisor):
The airport restricts people from accessing that area from the main departure area in front of the terminal....
Note that I've never seen any signs saying what terminal of Terminal 3 for those arriving.
I find it easy.
It's a pretty short walk.
|
|
Hi all.
I've been Googling for a while looking for a simple way to do this, and I can't find one.
I have a custom terminal environment set up (zsh) with various aliases and functions to make things easier. One thing I keep running into is that I will ...
Started by i0n on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
# - If the first argument is a directory....
The executed command is "cd $PWD".
#!/bin/sh # # Open a new Mac OS X terminal window or tab in the current or another, the new terminal window opens in # the current directory, i.e.
Www.entropy.ch/blog.
|
|
I want to write a program which prints the current focused window name and if it is a gnome-terminal, then prints out the running program inside the current gnome-terminal tab (for example vim, if a vim session is running).
To get the currently focused...
Started by Funsi on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But unfortunately, there is only one process for all gnome-terminal ....
With xprop I can get the PID of the gnome-terminal (6736).
I have answered there.
Get the gnome terminal PID, and check which processes have this number as PPID.
|
|
When I connect via ssh terminal to certain servers, it timeouts and "freezes" the terminal (doesn't accept, doesn't disconnect, can't Ctrl-C to kill the ssh process or anything).
This is in Ubuntu's Gnome-terminal, though it seems to be pausing the terminal...
Started by Tchalvak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You can tell your client to....
Sshd (the server) closes the connection if it doesn't hear anything from the client for a while .
The section "ESCAPE CHARACTERS" in the ssh man page explains the underlying details .
One after the other.
Press Enter , ~ ,.
|
|
How do I find the terminal width & height of an ncurses application?
Started by DylanJ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
terminal-width-in-c
What about using SCR_H and SCR_W ?.
|
|
What are the programs you use from a *nix terminal to be able to communicate in today's desktop world?
Suggestions Terminal web browsers Terminal e-mail clients ASCII art renders Text rtf/pdf/etc readers Text chat clients
Started by C. Ross on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at superuser):
Clearly Lynx , CenterIM and irssi are my basic tools if I ever need to switch to the terminal for some reason good assortment of terminal applications....
Finch - a terminal messaging app based on the same libpurple library as Pidgin .
|