[Solved] Kubuntu KDE 4 Intrepid Ibex - Resolution Issue

Discussions related to using VirtualBox on Windows hosts.
Post Reply
SpikoPath
Posts: 5
Joined: 27. Sep 2008, 15:24

[Solved] Kubuntu KDE 4 Intrepid Ibex - Resolution Issue

Post by SpikoPath »

I am a little lost with this

I have managed to get Ubuntu with guest additions installed and with a little help from a xorg.conf file, I get maximum resolution. This is running on a Dell Latitude D610 and Windows XP.

When I install Kubuntu as a guest OS, I install guest additions and they work as expected, the mouse integration works and other things, all apart from the resolution which is set a 800x600. if I use the same xorg.conf file for kubuntu as I have for ubuntu, it doesn't resolve the issue and it doesn't display the login screen (black screen login prompt).

Is there something I'm not doing? Has anyone else had this same problem?
Last edited by SpikoPath on 15. Oct 2008, 23:44, edited 1 time in total.
SpikoPath
Posts: 5
Joined: 27. Sep 2008, 15:24

Post by SpikoPath »

*Bump*
mala88
Posts: 4
Joined: 3. Oct 2008, 02:50

Post by mala88 »

I am getting the exact same problem with the Ubuntu Intrepid beta on a Vista host. I installed the guest additions without any errors but the video is only 800x600 and seamless mode does not work.

What changes did you make to your Ubuntu xorg.conf file? Did you get seamless mode working?
Sasquatch
Volunteer
Posts: 17798
Joined: 17. Mar 2008, 13:41
Primary OS: Debian other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: Windows XP, Windows 7, Linux
Location: /dev/random

Post by Sasquatch »

Check if it mentions a driver for your video card. It should list vboxvideo as driver. Add it if needed.
Read the Forum Posting Guide before opening a topic.
VirtualBox FAQ: Check this before asking questions.
Online User Manual: A must read if you want to know what we're talking about.
Howto: Install Linux Guest Additions
Howto: Use Shared Folders on Linux Guest
See the Tutorials and FAQ section at the top of the Forum for more guides.
Try searching the forums first with Google and add the site filter for this forum.
E.g. install guest additions site:forums.virtualbox.org

Retired from this Forum since OSSO introduction.
SpikoPath
Posts: 5
Joined: 27. Sep 2008, 15:24

Post by SpikoPath »

To resolve the ubuntu issue I simply copied this code into my xorg.conf file

Code: Select all

# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "vboxmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "Device"
Identifier "Generic Video Card"
Driver "vboxvideo"
BusID "PCI:0:2:0"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Modes "1280×800" "1024×768" "800×600"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"

# Uncomment if you have a wacom tablet
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection
to access your xorg.conf file, type this code into a terminal window

Code: Select all

sudo gedit /etc/X11/xorg.conf
Delete all the text within this xorg.conf file and replace it with the code above, save then reboot.

Also, please ensure you have installed the virtualbox guest addons

I have now managed to get this to work Kubuntu using the same method above
Sasquatch
Volunteer
Posts: 17798
Joined: 17. Mar 2008, 13:41
Primary OS: Debian other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: Windows XP, Windows 7, Linux
Location: /dev/random

Post by Sasquatch »

As it's for KDE, use kate instead of gedit, or any editor from a terminal like nano or vi.
Last edited by Sasquatch on 16. Oct 2008, 20:33, edited 1 time in total.
Read the Forum Posting Guide before opening a topic.
VirtualBox FAQ: Check this before asking questions.
Online User Manual: A must read if you want to know what we're talking about.
Howto: Install Linux Guest Additions
Howto: Use Shared Folders on Linux Guest
See the Tutorials and FAQ section at the top of the Forum for more guides.
Try searching the forums first with Google and add the site filter for this forum.
E.g. install guest additions site:forums.virtualbox.org

Retired from this Forum since OSSO introduction.
SpikoPath
Posts: 5
Joined: 27. Sep 2008, 15:24

Post by SpikoPath »

Thanks for that

use the code below depending on the version you are using

Ubuntu

Code: Select all

sudo gedit /etc/X11/xorg.conf
Kubuntu

Code: Select all

sudo kate /etc/X11/xorg.conf
For either if nano is installed

Code: Select all

sudo nano /etc/X11/xorg.conf
Sasquatch
Volunteer
Posts: 17798
Joined: 17. Mar 2008, 13:41
Primary OS: Debian other
VBox Version: VirtualBox+Oracle ExtPack
Guest OSses: Windows XP, Windows 7, Linux
Location: /dev/random

Post by Sasquatch »

And if you use Xfce (like me ;)), use mousepad.

Code: Select all

sudo mousepad /etc/X11/xorg.conf
Read the Forum Posting Guide before opening a topic.
VirtualBox FAQ: Check this before asking questions.
Online User Manual: A must read if you want to know what we're talking about.
Howto: Install Linux Guest Additions
Howto: Use Shared Folders on Linux Guest
See the Tutorials and FAQ section at the top of the Forum for more guides.
Try searching the forums first with Google and add the site filter for this forum.
E.g. install guest additions site:forums.virtualbox.org

Retired from this Forum since OSSO introduction.
Post Reply