What keypress will take me to tty13? help me? [duplicate]
up vote
0
down vote
favorite
This question already has an answer here:
What keypress will take me to tty13?
5 answers
I've exhaustively tried every option presented to me in dpkg-reconfigure
console-setup, the best I've been able to manage thus far has been to have both Alt keys behave the same (LeftAlt+F1 and RightAlt+F1 both going to tty1).
Please note that using GNU screen is not considered a valid response to the question - this is specifically about how to get the keyboard to behave properly with multiple consoles under Ubuntu. The crazy thing is that every other distro I've tried just handles this correctly, including Debian Lenny
command-line shortcut-keys tty
marked as duplicate by Sergiy Kolodyazhnyy
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 at 5:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
This question already has an answer here:
What keypress will take me to tty13?
5 answers
I've exhaustively tried every option presented to me in dpkg-reconfigure
console-setup, the best I've been able to manage thus far has been to have both Alt keys behave the same (LeftAlt+F1 and RightAlt+F1 both going to tty1).
Please note that using GNU screen is not considered a valid response to the question - this is specifically about how to get the keyboard to behave properly with multiple consoles under Ubuntu. The crazy thing is that every other distro I've tried just handles this correctly, including Debian Lenny
command-line shortcut-keys tty
marked as duplicate by Sergiy Kolodyazhnyy
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 at 5:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
What keypress will take me to tty13?
5 answers
I've exhaustively tried every option presented to me in dpkg-reconfigure
console-setup, the best I've been able to manage thus far has been to have both Alt keys behave the same (LeftAlt+F1 and RightAlt+F1 both going to tty1).
Please note that using GNU screen is not considered a valid response to the question - this is specifically about how to get the keyboard to behave properly with multiple consoles under Ubuntu. The crazy thing is that every other distro I've tried just handles this correctly, including Debian Lenny
command-line shortcut-keys tty
This question already has an answer here:
What keypress will take me to tty13?
5 answers
I've exhaustively tried every option presented to me in dpkg-reconfigure
console-setup, the best I've been able to manage thus far has been to have both Alt keys behave the same (LeftAlt+F1 and RightAlt+F1 both going to tty1).
Please note that using GNU screen is not considered a valid response to the question - this is specifically about how to get the keyboard to behave properly with multiple consoles under Ubuntu. The crazy thing is that every other distro I've tried just handles this correctly, including Debian Lenny
This question already has an answer here:
What keypress will take me to tty13?
5 answers
command-line shortcut-keys tty
command-line shortcut-keys tty
edited Nov 23 at 4:59
Sergiy Kolodyazhnyy
68k9141301
68k9141301
asked Nov 23 at 4:03
mrlee
61
61
marked as duplicate by Sergiy Kolodyazhnyy
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 at 5:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Sergiy Kolodyazhnyy
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 23 at 5:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
Mostly, virtual consoles tty8 through tty63 are unused and unassigned. There's no applications running on them, and they're not assigned to any keypress. However, you still can open an application on it as described in one of my older answers:
- Make your user the owner of that console:
sudo chown "$USER":tty /dev/tty13
- Run
openvt -c 13 -l
oropenvt -c 13 -s "bash"
- If you return to TTY1 or any other tty that has assigned keyboard shortcut, and want to go back to the TTY13 that you've opened, use
sudo chvt 13
for that ( and if I'm not mistaken - if you're added totty
group you should not needsudo
for that ).
If you add yourself to tty
group, you can later skip the step #1 and assign the command in step #2 as keyboard shortcut
Please also note that proper combination is Ctrl+Alt+F1 and not Left Alt+F1 indicated in the question body. For virtual machines in Virtual Box, that's slightly different - it's Left Ctrl+F1.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Mostly, virtual consoles tty8 through tty63 are unused and unassigned. There's no applications running on them, and they're not assigned to any keypress. However, you still can open an application on it as described in one of my older answers:
- Make your user the owner of that console:
sudo chown "$USER":tty /dev/tty13
- Run
openvt -c 13 -l
oropenvt -c 13 -s "bash"
- If you return to TTY1 or any other tty that has assigned keyboard shortcut, and want to go back to the TTY13 that you've opened, use
sudo chvt 13
for that ( and if I'm not mistaken - if you're added totty
group you should not needsudo
for that ).
If you add yourself to tty
group, you can later skip the step #1 and assign the command in step #2 as keyboard shortcut
Please also note that proper combination is Ctrl+Alt+F1 and not Left Alt+F1 indicated in the question body. For virtual machines in Virtual Box, that's slightly different - it's Left Ctrl+F1.
add a comment |
up vote
2
down vote
Mostly, virtual consoles tty8 through tty63 are unused and unassigned. There's no applications running on them, and they're not assigned to any keypress. However, you still can open an application on it as described in one of my older answers:
- Make your user the owner of that console:
sudo chown "$USER":tty /dev/tty13
- Run
openvt -c 13 -l
oropenvt -c 13 -s "bash"
- If you return to TTY1 or any other tty that has assigned keyboard shortcut, and want to go back to the TTY13 that you've opened, use
sudo chvt 13
for that ( and if I'm not mistaken - if you're added totty
group you should not needsudo
for that ).
If you add yourself to tty
group, you can later skip the step #1 and assign the command in step #2 as keyboard shortcut
Please also note that proper combination is Ctrl+Alt+F1 and not Left Alt+F1 indicated in the question body. For virtual machines in Virtual Box, that's slightly different - it's Left Ctrl+F1.
add a comment |
up vote
2
down vote
up vote
2
down vote
Mostly, virtual consoles tty8 through tty63 are unused and unassigned. There's no applications running on them, and they're not assigned to any keypress. However, you still can open an application on it as described in one of my older answers:
- Make your user the owner of that console:
sudo chown "$USER":tty /dev/tty13
- Run
openvt -c 13 -l
oropenvt -c 13 -s "bash"
- If you return to TTY1 or any other tty that has assigned keyboard shortcut, and want to go back to the TTY13 that you've opened, use
sudo chvt 13
for that ( and if I'm not mistaken - if you're added totty
group you should not needsudo
for that ).
If you add yourself to tty
group, you can later skip the step #1 and assign the command in step #2 as keyboard shortcut
Please also note that proper combination is Ctrl+Alt+F1 and not Left Alt+F1 indicated in the question body. For virtual machines in Virtual Box, that's slightly different - it's Left Ctrl+F1.
Mostly, virtual consoles tty8 through tty63 are unused and unassigned. There's no applications running on them, and they're not assigned to any keypress. However, you still can open an application on it as described in one of my older answers:
- Make your user the owner of that console:
sudo chown "$USER":tty /dev/tty13
- Run
openvt -c 13 -l
oropenvt -c 13 -s "bash"
- If you return to TTY1 or any other tty that has assigned keyboard shortcut, and want to go back to the TTY13 that you've opened, use
sudo chvt 13
for that ( and if I'm not mistaken - if you're added totty
group you should not needsudo
for that ).
If you add yourself to tty
group, you can later skip the step #1 and assign the command in step #2 as keyboard shortcut
Please also note that proper combination is Ctrl+Alt+F1 and not Left Alt+F1 indicated in the question body. For virtual machines in Virtual Box, that's slightly different - it's Left Ctrl+F1.
edited Nov 23 at 4:56
answered Nov 23 at 4:40
Sergiy Kolodyazhnyy
68k9141301
68k9141301
add a comment |
add a comment |