4

I updated my Ubuntu from 10.4 to 11.10. (Huge mistake, I know.) I am unable to view my virtual consoles ttyS1- ttyS6

This happens inside VirtualBox and gdm is running in the background.

I'm not sure what caused this issue. And I'm not sure why it's persistent.

huge text in small blue window

That's ttyS1; you can barely see it.

Thanks for your time.

BTW, This problem occurs with fresh install of 11.10 on virtualbox too.

Zanna
  • 70,465
kal
  • 41
  • 2

1 Answers1

1
  1. Upgrade VirtualBox to 4.1.6. using the procedure described in How do I install VirtualBox 4.1?

  2. Download VirtualBox 4.1.6 Oracle VM VirtualBox Extension Pack and install it (just double click on the file).

  3. Start your virtual machine and open a terminal.

  4. Install your VirtualBox Guest Additions.

    sudo /etc/init.d/vboxadd setup
    

    Restart your guest.

    sudo apt-get purge virtualbox-guest-utils
    
  5. The guest kernel is updated using the command:

    sudo /etc/init.d/vboxadd setup
    

    Restart your guest.

  6. This package provides the X11 guest utilities for VirtualBox. These utilities are meant to be run inside the virtual machine.

    sudo apt-get install virtualbox-guest-utils
    sudo /etc/init.d/vboxadd setup
    

    Restart your guest.

  7. Install VirtualBox Guest Additions

    sudo /etc/init.d/vboxadd setup
    

    Restart...

P.S : I recommend do it step by step and test with CTRL + F1. If something gord wrong just purge the package install in that step do it again. That is how I fixed in my own machine...

virtual console working

Zanna
  • 70,465
hhlp
  • 42,002