To launch a GUI application from a terminal but still be able to continue using it simply append an
& to the end of the command, something like....
Code:
ed@Slacker:/tmp$ gvim &
[1] 15786
ed@Slacker:/tmp$
The number returned is the PID of the new process. If you close the terminal the application will still die as its remains attached to the parent process.
If you are running a pure command line setup and want a console window-manager/multiplexer then checkout a little app called screen. It allows you to run multiple console applications within one terminal and suspend/disconnect/reconnect as you please, very handy for launching long compiles on remote systems.
Quote:
|
But you can really do only about 4 things at once
|
I can't even begin to imagine where you got this from
Regards
ed