Quote:
Originally Posted by
sreyan32
I am sorry for being blunt first of all. But what you said makes absolutely no sense to me. Why would a terminal need a serial port to function ?
In the beginning, terminals and telecommunications equipment were
always attached to serial ports; that's what they're there for. Quite a lot of features -- SIGINT on ctrl-C, EOF on ctrl-D, timeouts, line-based reading, simple translation, cleanup when the connection closes, etc etc etc -- were added to the serial port device driver to keep them simple to use. Modems and terminals had a fair amount in common, incidentally.
So, any interactive terminal program in UNIX talks to the terminal like a serial port. When you close an xterm or a PUTTY window, you expect things it was running to die with it, yes? Like a dialup teletype session would die when a modem hung up. It's the same thing.
But these days, they don't always have a serial port! Instead of rewriting everything imperfectly every time they created a new and special kind of terminal, they added a "virtual terminal" device to the UNIX standard. It's like a special kind of pipe where, if you write ctrl-C into one end, the other end
dies... It has all the other usual features UNIX terminal programs have come to expect -- and should, since it's the same device driver.
Quote:
Also I have used the terminal in both Debian and Fedora distributions. I have never made any connection to any serial port before using them !
Run 'stty' in an xterm -- it will tell you your terminal's "baud rate". Which doesn't matter for virtual terminals, but it's there for historical reasons.
Quote:
Why would I need to do so?
The serial port driver handles things like
- Should keystrokes be instantly delivered to the program, or should it wait until ENTER is pressed?
- What key is backspace?
- Should I send SIGINT on ctrl-C? Or some other key? Or not at all?
...and lots of other things. That's all in the device driver itself.
Using virtual terminals means you can run the exact same interactive program in a local terminal, remote terminal, GUI terminal, serial terminal, or whatever else and expect it to work the exact same way, right down to the weirdest bits of UNIX terminal history. (Try logging into a LINUX terminal as allcaps -- and watch the rest of the text become allcaps when it decides you're running a 6-bit terminal!)
Quote:
OSes like Windows also offer ctrl+c combination to kill the program(not that I like comparing Windows and UNIX I am just trying to get my point across).
ctrl-C is the
only serial-like feature Windows has, and
not even for serial ports. Windows actually put that feature inside each program -- but not all programs. Which means ctrl-C only works when it wants to.
Quote:
And what do you mean by it does that directly ? How can a serial port send signals to the CPU?
When you type ctrl-C, the
kernel sends SIGINT to whatever's attached to your terminal. It's not a feature of your shell.
When you type a line and hit enter, the
kernel delivers the complete line to whatever program's reading. Programs don't have to assemble each individual keystroke themselves (unless they want to.)
These and much more are features of the serial port device driver, which all interactive terminal programs in UNIX depend on.
Quote:
I am sorry but I don't understand what you are saying probably because I am starting out with UNIX. Do you think I should post a separate thread about this topic dealing with serial ports and terminal devices ? Because its getting off topic here.
Serial ports in UNIX are a complicated topic. Sure, if you want.
Quote:
If I am not mistaken you mean that you can move around partitions right ? For example I can unmount the /home partition and put it in a different hard disk all together and use it from there right ?
Depends what you mean by that.
When you mount something atop of /home/, you see the contents of that partition in it and not what was there before.
Quote:
But then why would you call it "partition nesting" ? because that sounds a partition within another partition.
Sorry for the confusion. Perhaps that was poorly worded.