Virtual Console Article Index for
Virtual
Articles about
Virtual Console
Website Links For
Virtual
 

Information About

Virtual Console




boot messages]]
In some Operating System s such as UnixWare , Linux and BSD , a virtual console ('''VC''', sometimes '''virtual terminal''', '''VT''') is a conceptual combination of the keyboard and the display for a User Interface . The concrete combination is the System Console of the computer, where the user can switch between the virtual consoles to access multiple unrelated user interfaces. Usually in Linux, the first six virtual consoles provide a Text Terminal with a Login Prompt to a Unix Shell . The graphical X Window System starts in the seventh virtual console.

In Linux, the switching is performed with a key combination of ''Alt'' plus a function key -- for example ''Alt+F1'' to access the virtual console number 1. ''Alt+Left arrow'' changes to the previous virtual console and ''Alt+Right arrow'' to the next virtual console. To switch from the X Window System, ''Ctrl+Alt+function key'' works. These are the default key combinations, as they can be redefined.

The need for virtual consoles has lessened now that most applications work in the graphical framework of the X Window System, where each program has a window and the text mode programs can be run in Terminal Emulator windows. Several X sessions might be desired though, such as in the case of Fast User Switching or when debugging X programs from another X server, and in those cases each X session runs in a separate virtual console. GNU Screen is a program that can change between several text-mode programs in one textual login. There are also other graphical frameworks such as FrameBuffer UI , Y Window System , and Fresco .


INTERFACE


The virtual consoles are represented by Device Special File s /dev/tty1, /dev/tty2 etc. There are also special files /dev/console, /dev/tty and /dev/tty0. The virtual consoles can be configured in the file /etc/inittab read by '' Init '' -- typically it starts the text mode Login process ''getty'' for several virtual consoles. X Window System can be configured in /etc/inittab or by an X Display Manager .

The programs used to access the virtual consoles typically include ''chvt'' to switch the current virtual console, ''openvt'' to run a program on a new virtual console, and ''deallocvt'' to close a currently unused virtual console. The program '' Startx '' starts the X Window System on a new virtual console. There are also other graphical programs that can start from the console, such as LinuxTV and MPlayer .

Programs can access the virtual consoles by the device special files. In text mode, writing to the file displays text on the virtual console and reading from the file returns text the user writes to the virtual console. As with other Text Terminal s, there are also special Escape Sequence s, Control Character s and termios Function s that a program can use, most easily via a library such as '' Ncurses ''. For more complex operations, the programs can use console and terminal special '' Ioctl '' system calls. Graphical programs can use libraries such as DirectFB , DRI , SDL or the earlier SVGALib .


WORKSTATIONS

Unix workstations, like these manufactured by Sun or Silicon Graphics , did not include virtual consoles. The only purpose of console would be fixing the system so that graphical environment could start.


SEE ALSO



REFERENCES



EXTERNAL LINKS