4

I am using vSphere and would like to change to a virtual console in the guest OS.

The problem is that when I press CTRL-ALT-F1 my desktop (Ubuntu) changes virtual console and not the guest OS in vSphere.

Does anyone know to do this?

chicks
  • 3,793
  • 10
  • 27
  • 36
Sandra
  • 10,303
  • 38
  • 112
  • 165

2 Answers2

4

Type Alt-F1, Alt-F2 , etc. to obtain the other virtual consoles.

Edit:

Oh, you're accessing VMWare from a non-Windows machine?

I would just disable virtual console switching on your Ubuntu system. For Xorg, it'll be something like the following in the Xorg config file:

Section "ServerFlags"
    Option "DontVTSwitch" "true"
EndSection
chicks
  • 3,793
  • 10
  • 27
  • 36
ewwhite
  • 197,159
  • 92
  • 443
  • 809
  • 1
    If the Linux guest is running in console mode, `Alt-Fx` will only switch the guest and not her local machine. – MikeyB Sep 25 '12 at 16:03
  • @mikeyb Let's hope that the VMWare guest is in console mode :) Good point, though. – ewwhite Sep 25 '12 at 16:04
0

There is a way this can be done:

http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1006012

Press CTRL + ALT + Space , press the F1 key (or desired Function key) while still holding down CTRL + ALT

You could also possibly run chcon to change the console, which I've also occassionally found useful before I learned the trick above.

Cameron Kerr
  • 4,069
  • 19
  • 25