How can I reduce the number of TTYs?
I don't need 7 TTYs (or do I?). So how do I reduce this number to 3?
The way I recommend would be:
Run:
sudoedit /etc/default/console-setup
Find the line that says: ACTIVE_CONSOLES="/dev/tty[1-6]"Change it to the amount of tty you want. For 3 you do: ACTIVE_CONSOLES="/dev/tty[1-3]"
Save the file and go to /etc/init/:
cd /etc/init/
then typels
to see the tty files.
They should look like tty1.conf, tty2.conf, tty3.conf....-
Rename all the tty that you do not want. In your case you would rename the last 3 tty:
sudo mv tty4.conf tty4.conf.bck
sudo mv tty5.conf tty5.conf.bck
sudo mv tty6.conf tty6.conf.bck
-
Reboot and test
- A couple of tips. Even if you eliminate the tty4-6 X will still be in CTRL+ALT+F7
- tty4 to tty6 will appear blank (black, no blink login waiting)
You can delete/move the tty#.conf files in /etc/init that you don't want. I don't know why you'd want to do this, though.
This is on 10.04.