06-09-2002
If you want to start without loading X, edit /etc/inittab and change the default run-level to 2. Alternately you can get to a plain console login prompt by pushing Ctrl-Alt-F1 from within X. If you want to get our from console and back to X type StartX.
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
I had this problem before but it started working OK for a while. I can create a new profile but when I launch the console for that user it does not show the $ prompt. It shows for su and I tried to set the terminal but I am not sure if I did it correctly since it does not work still. The... (9 Replies)
Discussion started by: softarch
9 Replies
2. Linux
Hi...
I have installed mysql in Fedora and when i tried to start mysql the error i get was
"Asked for 196608 thread stack"
What might be the problem????
I have tried all ways but doesnt work out........ (1 Reply)
Discussion started by: arunkumar_mca
1 Replies
3. Linux
I install linux in VMWare, but Its console window is too small, Its size is 80*25, I can't change it even though I use full srceen mode in VMWare.How can I do? please help me! Thanks! (3 Replies)
Discussion started by: ChaoZhang
3 Replies
4. Linux
I really like to use linux, although I freely admit I don't know squat about it. I can install it, update it and get it to most of what I would like it to do, up to running some windows apps on it.
I am going back so to school starting on the 25th, with a declared major of Information... (1 Reply)
Discussion started by: Methal
1 Replies
5. Red Hat
Can anyone explain me the usage of momentary press, press and hold, Reset.. I usually use cold boot option which is used to boot the system.
Any help on the other options is really helpful
thanks in advance (5 Replies)
Discussion started by: rogerben
5 Replies
6. Linux
Hi all
I am application Programmer.
In my college(2 yrs back) i have learnt Unix i.e commads, shell scripts, Filesystem,I reffered to a book by "Sumitabha Das".
I want to learn Linux.
But i cant understand where should i start from and which book to refer to.
Most of the books these days eg.... (2 Replies)
Discussion started by: FullMetal
2 Replies
7. UNIX for Dummies Questions & Answers
: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
8. Red Hat
Dear All,
I have some Linux Servers in Data Center.
I can access those servers through Telent or Putty.
But If i want to work on the console I cannot do that.
How to configure Console access for my Linux Server , So that I can work on the Console if it goes in to Single User mode.
... (2 Replies)
Discussion started by: jegaraman
2 Replies
9. Fedora
Hi,
i'm currently part of an apprenticeship becoming a IT specialist.
Because I'm already an electronic technician (finished apprenticeship) I can do this one in 2 years (normally you need 3).
Thing is, in school they started out with basic unix stuff (working with the shell) in the first... (3 Replies)
Discussion started by: Dr. Nick
3 Replies
10. Homework & Coursework Questions
I need boot any images from iSCSI and I'd like to boot from linux console of a previous LiveCD booted. Is possible, without gpxe, ipxe firmware or similar? With a simple iSCSI initiator for example?
You (accidentally?) posted in the Homework-section of the forum, where special rules apply. If... (0 Replies)
Discussion started by: spark2k06
0 Replies
LEARN ABOUT LINUX
console
CONSOLE(4) Linux Programmer's Manual CONSOLE(4)
NAME
console - console terminal and virtual consoles
DESCRIPTION
A Linux system has up to 63 virtual consoles (character devices with major number 4 and minor number 1 to 63), usually called /dev/ttyn
with 1 <= n <= 63. The current console is also addressed by /dev/console or /dev/tty0, the character device with major number 4 and minor
number 0. The device files /dev/* are usually created using the script MAKEDEV, or using mknod(1), usually with mode 0622 and owner
root.tty.
Before kernel version 1.1.54 the number of virtual consoles was compiled into the kernel (in tty.h: #define NR_CONSOLES 8) and could be
changed by editing and recompiling. Since version 1.1.54 virtual consoles are created on the fly, as soon as they are needed.
Common ways to start a process on a console are: (a) tell init(1) (in inittab(5)) to start a mingetty(8) (or agetty(8)) on the console; (b)
ask openvt(1) to start a process on the console; (c) start X--it will find the first unused console, and display its output there. (There
is also the ancient doshell(8).)
Common ways to switch consoles are: (a) use Alt+Fn or Ctrl+Alt+Fn to switch to console n; AltGr+Fn might bring you to console n+12 [here
Alt and AltGr refer to the left and right Alt keys, respectively]; (b) use Alt+RightArrow or Alt+LeftArrow to cycle through the presently
allocated consoles; (c) use the program chvt(1). (The key mapping is user settable, see loadkeys(1); the above mentioned key combinations
are according to the default settings.)
The command deallocvt(1) (formerly disalloc) will free the memory taken by the screen buffers for consoles that no longer have any associ-
ated process.
Properties
Consoles carry a lot of state. I hope to document that some other time. The most important fact is that the consoles simulate vt100 ter-
minals. In particular, a console is reset to the initial state by printing the two characters ESC c. All escape sequences can be found in
console_codes(4).
FILES
/dev/console
/dev/tty*
SEE ALSO
chvt(1), deallocvt(1), init(1), loadkeys(1), mknod(1), openvt(1), console_codes(4), console_ioctl(4), tty(4), ttyS(4), charsets(7),
agetty(8), mapscrn(8), mingetty(8), resizecons(8), setfont(8)
Linux 1994-10-31 CONSOLE(4)