64 bit guest in seamless mode

Discussions related to using VirtualBox on Linux hosts.
Post Reply
drb1
Posts: 4
Joined: 9. Mar 2009, 17:32

64 bit guest in seamless mode

Post by drb1 »

I have a 64 bit debian based host and have no issues with virtualbox 2.1.4 with a 32 bit debian guest and a 32 bit windows xp guest . . . but when I install a 64 bit debian guest I can not get it to operate in seamless mode (greyed out in menu). Is this a general issue or am I doing something 'wrong'. As I say, 32 bit debian guest has no issues running seamlessly
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

Re: 64 bit guest in seamless mode

Post by Sasquatch »

Check if your xorg.conf is exactly the same as your 32 bit Guest. If you don't have Seamless, it also means you don't have dynamic resizing. And if you don't have that, the GA are either not installed properly, or your xserver is not configured properly (dynamic resizing is disabled when a resolution is found since 2.1.4 GA).
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.
drb1
Posts: 4
Joined: 9. Mar 2009, 17:32

Re: 64 bit guest in seamless mode

Post by drb1 »

Thanks Sasquatch - there are differences in the xorg.conf for the two installs : does this indicate the problem? What should I change to get seamless, dynamic sizing?

Regards,

drb1

32 bit :

Code: Select all

ection "InputDevice"
	Identifier	"VBoxMouse 0"
	Driver		"vboxmouse"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"Auto"
	Option		"CorePointer"
EndSection
64 bit :

Code: Select all

Section "InputDevice"
	Identifier	"ImExPS/2 Generic Explorer Mouse 0"
	Driver		"mouse"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"Auto"
	Option          "Emulate3Buttons"       "true"
	Option		"CorePointer"
and video modes - 32 bit :

Code: Select all

ection "Device"
	Identifier	"Device 0"
	Driver		"vboxvideo"
	BoardName	"InnoTek Systemberatung GmbH VirtualBox Graphics Adapter"
	BusID		"PCI:0:2:0"
EndSection

Section "Monitor"	
	Identifier	"Monitor 0"
	ModelName	"Default Monitor"
EndSection

Section "Screen"
	Identifier	"Screen 0"
	Monitor		"Monitor 0"
	DefaultColorDepth 24
	SubSection "Display"
		Depth	8
	EndSubSection
	SubSection "Display"
		Depth	15
	EndSubSection
	SubSection "Display"
		Depth	16
	EndSubSection
	SubSection "Display"
		Depth	24
	EndSubSection
EndSection
and 64 bit :

Code: Select all

	Identifier	"Device 0"
	Driver		"vesa"
	BoardName	"InnoTek Systemberatung GmbH VirtualBox Graphics Adapter"
	BusID		"PCI:0:2:0"
EndSection

Section "Monitor"	
	Identifier	"Monitor 0"
	ModelName	"Default Monitor"
	HorizSync	28-96
	VertRefresh	50-75
	# 640x350 @ 85.00 Hz (GTF) hsync: 31.28 kHz; pclk: 25.02 MHz
	Modeline "640x350"  25.02  640 656 720 800  350 351 354 368  -HSync +Vsync
	# 640x400 @ 85.00 Hz (GTF) hsync: 35.78 kHz; pclk: 29.20 MHz
	Modeline "640x400"  29.20  640 664 728 816  400 401 404 421  -HSync +Vsync
etc
etc
etc
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

Re: 64 bit guest in seamless mode

Post by Sasquatch »

First is the mouse. The 64 bit Guest doesn't use the vboxmouse driver. That prevents seamless mouse to work, so you have to click inside the Guest to grab the mouse and hit the Host key to release it. The easiest way to get this working properly, is to copy the xorg.conf file to the Host using Shared Folders and then transfer it the same way to the other Guest. Or if you use Host Interface, you can use SSH scp (available if you have OpenSSH-server on one of them, or both) feature to copy it directly.
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