Difference between console and ttys


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Difference between console and ttys
Prev   Next
# 1  
Old 06-17-2009
Difference between console and ttys

Sometimes when I open up the terminal (like just now) it says

Last login: Wed Jun 17 07:29:25 on console

sometimes it says ttys (like when I exit and open a new window/tab). What's the difference? and is something fishy going on?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Difference between system console and ILOM .

HI Guru's Can any one explain me the difference between a system console and a ILOM (SC). Thanks in Advance. RK :) (4 Replies)
Discussion started by: rama krishna
4 Replies

2. UNIX for Dummies Questions & Answers

Difference between console and Terminal.

I see these terms used all the time with hardly any distinction between the two. Any clarification would be appreciated!:) I could only get emacs to open in console so I was also wondering what are the common applications to use in console.:wall: (7 Replies)
Discussion started by: theKbStockpiler
7 Replies

3. Solaris

Difference between the desktop session and console session

what is the difference between desktop session and console session in solaris as i am wondering we use option -text for the former and -nowin for the later (1 Reply)
Discussion started by: kishanreddy
1 Replies

4. UNIX for Dummies Questions & Answers

Windows to Linux remote console using VNC brings up blank console screen with only mouse pointer

:confused:Hi This was installed on the Linux box a few weeks back by a guy that no longer works for us. All worked fine until last week. Now when we connect its just a blank screen with no icons. I get a whole bunch of errors when starting the service too: Tue Feb 23 14:29:45 2010 ... (1 Reply)
Discussion started by: wbdevilliers
1 Replies

5. AIX

all pseudo ttys busy, AIX 5.2

I have several users connecting via a Windows-based SSH\telnet client. The previous sysadmin used FacetTerm to allow certain users to switch between multiple "windows." I'm told there are AIX-native ways to do this but I work with what I inherited. Originally, many users were still connecting... (3 Replies)
Discussion started by: lacroix
3 Replies

6. Programming

What is the difference between console-based and xwindow-based application?

Hi everyone, What is the difference between console-based and Xwindow-based application? Can I say the application working well in Xwindows can work in console? Can I say the application working well in console cann't work in Xwindow perhaps. Eg, ncurses is console-based and Imlib2 is... (4 Replies)
Discussion started by: liuyan03
4 Replies

7. AIX

Difference between tty and console devices ?

Hi, What is the diference between these two ? thanks Vilius (3 Replies)
Discussion started by: vilius
3 Replies

8. UNIX for Advanced & Expert Users

Dead pseudo-ttys

We are having a problem on an AIX 4.3 system, whereby users somehow exit the system in a way such that their process continues to run. In the who listing, the user may or may not be listed. Processes are still listed in ps, and are still assigned to the pseudo-tty. Processes continue to... (1 Reply)
Discussion started by: markat2k
1 Replies

9. Programming

what difference between "terminal" and "console"

1 . Thank you for reading the post first. 2 . what difference between "terminal" and "console" (1 Reply)
Discussion started by: chenhao_no1
1 Replies

10. UNIX for Dummies Questions & Answers

ttys.. i must be doing something wrong..

SCO Unix OpenServer 5 I have this old impact printer that prints invoices, after about 15 pages it becomes misaligned. ditty -a ttya04 shows -ixon -ixoff -ixany, which is not the right setting.. so, i type ditty /dev/ttya04 ixon ixoff -ixany when i ditty -a ttya04 again, the... (2 Replies)
Discussion started by: LowOrderBit
2 Replies
Login or Register to Ask a Question
TTYS(5) 							File Formats Manual							   TTYS(5)

NAME
ttys - terminal initialization data DESCRIPTION
The ttys file contains information that is used by various routines to initialize and control the use of terminal special files. This information is read with the getttyent(3) library routines. There is one line in the ttys file per special file. Fields are separated by tabs and/or spaces. Some fields may contain more than one word and should be enclosed in double quotes. Blank lines and comments can appear anywhere in the file; comments are delimited by `#' and new line. Unspecified fields default to null. The first field is the termi- nal's entry in the device directory, /dev. The second field of the file is the command to execute for the line, typically getty(8), which performs such tasks as baud-rate recognition, reading the login name, and calling login(1). It can be, however, any desired command, for example the start up for a window system terminal emulator or some other daemon process, and can contain multiple words if quoted. The third field is the type of terminal normally connected to that tty line, as found in the termcap(5) data base file. The remaining fields set flags in the ty_status entry (see getttyent(3)) or specify a window system process that init(8) will maintain for the terminal line. As flag values, the strings `on' and `off' specify whether init should execute the command given in the second field, while `secure' in addition to `on' allows root to login on this line. These flag fields should not be quoted. The string `window=' is followed by a quoted command string which init will execute before starting getty. If the line ends in a comment, the comment is included in the ty_comment field of the ttyent structure. Some examples: console "/usr/libexec/getty std.1200" vt100 on secure ttyd0 "/usr/libexec/getty d1200" dialup on # 555-1234 ttyh0 "/usr/libexec/getty std.9600" hp2621-nl on # 254MC ttyh1 "/usr/libexec/getty std.9600" plugboard on # John's office ttyp0 none network ttyp1 none network off ttyv0 "/usr/new/xterm -L :0" vs100 on window="/usr/new/Xvs100 0" The first example permits root login on the console at 1200 baud, the second allows dialup at 1200 baud without root login, the third and fourth allow login at 9600 baud with terminal types of "hp2621-nl" and "plugboard" respectively, the fifth and sixth line are examples of network pseudo ttys, which should not have getty enabled on them, and the last example shows a terminal emulator and window system startup entry. FILES
/etc/ttys SEE ALSO
login(1), getttyent(3), gettytab(5), init(8), getty(8) 7th Edition November 16, 1996 TTYS(5)