Terminal Emulators
Introduction
I work a lot at the console level, I even lauch some programs directly from there, and I know there are a lot of users like me.
Somtimes I also open two or even three terminals to monitor differente processes on the same machine or even on different PCs using ssh connection.
The use of less is really useful while doing that, the gnome-console or Konsole from KDE are really useful because of their tabbed terminals, you can switch from one to another just pressing alt+[number of terminal].
But, sometimes I want to have a look at two or more screens at the same time, if these are also your needs, you can use either
- QuadKonsole or
- Multi-Gnome-Terminal
Multi-Gnome-Terminal
Installation for Debian or Ubuntu
apt-get install multi-gnome-terminal
You can call it from the menu, (Applications -> System_Tools -for Ubuntu users-), or enter at a console:
multi-gnome-terminal &
Once open you can click on "new term" and decide to open this on a new tab, or split your current window, either vertical or horizontal.
Under Settings menu you can change the colors, and other characteristics, both for TABs and Window.
The great thing about this is that you can watch at different monitor tools while doing a specific task, like open a window with htop while compiling, as you may see on this screenshot.
You can open as many terminals as you want, actually I do not know the limit, but I think your screen will have limit before multi-gnome-terminal could reach its.
QuadKonsole
Installation
I did not found a repository for this software, so I had to compile it, this is kind of the same as multi-gnome-terminal, but focused on KDE.
I like them both, maybe multi-gnome-terminal could have some more insteresting features, but I like the view of QuadKonsole more.
I found no way to change the size of the windows under quadKonsole, there should be a way.
Well, lets go to the installation, I did this on Ubuntu, therefore on Gnome, so I needed lots of dependencies that maybe KDE users will not need.
sudo apt-get install xlibs-dev libqt3-headers libqt3-compat-headers libqt3-mt libqt3-mt-dev kde-devel
Create a directory for it
mkdir $HOME/quadconsole
cd $HOME/quadconsole
Then download the tarbal from.
wget http://nomis80.org/quadkonsole/quadkonsole-2.0.2.tar.bz2
tar xvjf quadkonsole-2.0.2.tar.bz2
cd quadkonsole-2.0.2
./configure
make && make install
Now you can start enjoying your QuadKonsole software,
start it with:
/usr/local/kde/bin/quadkonsole
If you want more terminal emulators than the default four, enter:
/usr/local/kde/bin/quadkonsole --rows 3 --columns 2
As you may see in the screenshot below, I have running a ping, htop, and centerICQ to keep an eye to the task running on my server, to my chat sessions, and working on the terminal emulator.
Other cool terminal emulators
Yakuake
This is a scroll down terminal emulator, once turned on, you just need to press F12 to use it, it will appear from the top or your screen, once you are done with it, just press F12 again, and it will hide again.
Installation
apt-get install yakuake
Eterm
Eterm, one with some good features, specially for your eyes, as it comes with lots of backgrounds, and you can adjust the contrast and the brightness of the windows, to better see their contents.
Installation
apt-get install eterm
Just remeber that to run it, you need to enter Eterm, with "E" in capital letters,
Eterm
Trackback URL for this post:
If you like this article, subscribe to our full rss
Please post your question in our forum and use comments only to leave your comments about the article, thanks.













Take a look at screen if you
Take a look at screen if you haven't already. Very nice tool.
Basic guide here:
http://polishlinux.org/howtos/screen-tips-tricks/
Thank you, I have read about
Thank you, I have read about screen before and it is indeed a nice option to the Terminal emulators I have described here. Or you can even use them together
Guillermo Garron
please don't forget tilda
please don't forget tilda (http://tilda.sourceforge.net/), it's just like yakuake, but made for gnome, using gnome-terminal.
I have it now installed, and
I have it now installed, and it is a good one!
Guillermo Garron
rxvt ftw!! (with a black
rxvt ftw!! (with a black background, of course)
aterm is my choice. Fast,
aterm is my choice.
Fast, doesn't need any stinkin' x11 toolkit (i use it in openbox, sometimes openbox on top of kde), transparent ("pseudo-true" transparency, dark desktop background; i think it needs Hermes lib for that), and in pair with screen(1) it does all i need, for years.
here's what's in my ~/.xinitrc:
[ -x $X11BASE/aterm ] && \
aterm -bg black -fg \#009999 -cr \#999900 -pr \#999900 \
-sr -tr -trsb -fade 50 -tint \#666666 -tinttype true -tn xterm \
-sb -si -vb -geometry 80x50 -sl 2222 -title xinit -C || \
xterm -bg black -fg \#008030 -cr \#00b080 -hc \#00b080 \
-j -pob -s +ai +dc -ms \#009999 \
-sb -si -vb -geometry 80x50 -sl 2222 -title xinit -C
Above that line is how i use pseudo-transparency:
[ -x $X11BASE/wmsetbg ] && wmsetbg -b black -a -S -d &
Fo' shizzle i tried many terminals, of which only standart xterm, wterm and mrxvt worth mentioning.
Nice article, but the page
Nice article, but the page is running ads from Micro$oft for Window$ Vi$ta...
Thanks for notice that, I
Thanks for notice that, I will look for it and try to ovoid :)
Guillermo Garron
There are also some very
There are also some very nice terminal emulators projects going on like bterm (www.bterm.org) or terminal replacement like Hotwire (http://code.google.com/p/hotwire-shell/). Looks promising!
Post new comment