1OPENVT(1) Linux 1.x OPENVT(1)
2
3
4
6 openvt - start a program on a new virtual terminal (VT).
7
9 openvt [-c vtnumber] [-s] [-u] [-l] [-v] [--] command command_options
10
12 openvt will find the first available VT, and run on it the given com‐
13 mand with the given command options, standard input, output and error
14 are directed to that terminal. The current search path ($PATH) is used
15 to find the requested command. If no command is specified then the
16 environment variable $SHELL is used.
17
18 OPTIONS
19 -c vtnumber
20 Use the given VT number and not the first available. Note you
21 must have write access to the supplied VT for this to work.
22
23 -f Force opening a VT without checking whether it is already in
24 use.
25
26 -e Directly execute the given command, without forking. This
27 option is meant for use in /etc/inittab.
28
29 -s Switch to the new VT when starting the command. The VT of the
30 new command will be made the new current VT.
31
32 -u Figure out the owner of the current VT, and run login as that
33 user. Suitable to be called by init. Shouldn't be used with -c
34 or -l.
35
36 -l Make the command a login shell. A - is prepended to the name of
37 the command to be executed.
38
39 -v Be a bit more verbose.
40
41 -w wait for command to complete. If -w and -s are used together
42 then openvt will switch back to the controlling terminal when
43 the command completes.
44
45 -- end of options to openvt.
46
48 If openvt is compiled with a POSIX (GNU) getopt() and you wish to set
49 options to the command to be run, then you must supply the end of
50 options -- flag before the command.
51
53 openvt can be used to start a shell on the next free VT, by using the
54 command:
55
56 openvt bash
57
58
59 To start the shell as a login shell, use:
60
61 openvt -l bash
62
63
64 To get a long listing you must supply the -- separator:
65
66 openvt -- ls -l
67
68
69
71 Earlier, openvt was called open. It was written by Jon Tombs
72 <jon@gtex02.us.es or jon@robots.ox.ac.uk>. The -w idea is from "sam".
73
74
76 chvt(1), doshell(8), login(1)
77
78
79
8019 Jul 1996 V1.4 OPENVT(1)