Custom Query (16363 matches)
Results (1696 - 1698 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #9127 | obsolete | gluBuild2DMipmaps crash | ||
| Description |
My setup information:
Host: Windows 7
Guest: Ubuntu Lucid
Video card: NVidia 8700M GT
Test case:
#include <GL/glew.h>
#include <GL/glu.h>
#include <GL/glfw.h>
int main(int c, char** v)
{
glfwInit();
glfwOpenWindow(100, 100, 0, 0, 0, 0, 16, 0, GLFW_WINDOW);
GLuint iGLId;
glGenTextures(1, &iGLId);
glBindTexture(GL_TEXTURE_2D, iGLId);
unsigned char iData[256*256*4];
for (int i = 0; i < 256*256*4; i++)
iData[i] = 255;
gluBuild2DMipmaps(GL_TEXTURE_2D,
4,
256,
256,
GL_RGBA,
GL_UNSIGNED_BYTE,
&iData[0]);
glBindTexture(GL_TEXTURE_2D, 0);
}
(Requires GLFW - "apt-get install libglfw-dev")
Crash stack trace:
0 0x003066e3 in __printf_fp () from /lib/tls/i686/cmov/libc.so.6
#1 0x003012a8 in vfprintf () from /lib/tls/i686/cmov/libc.so.6
#2 0x0032170c in vsprintf () from /lib/tls/i686/cmov/libc.so.6
#3 0x0030a1db in sprintf () from /lib/tls/i686/cmov/libc.so.6
#4 0x008b8d19 in packspu_GetString () from /usr/lib/VBoxOGLpackspu.so
#5 0x007904f3 in cr_glGetString () from /usr/lib/dri/vboxvideo_dri.so
#6 0x0042bb16 in ?? () from /usr/lib/libGLU.so.1
#7 0x00433e38 in gluBuild2DMipmaps () from /usr/lib/libGLU.so.1
#8 0x08048912 in main ()
|
|||
| #9128 | obsolete | fail to install extension pack because of VERR_NOT_SAME_DEVICE | ||
| Description |
When trying to install a new version of the Oracle VM Virtualbox Extension Pack, I get the following error: Progress state: NS_ERROR_FAILURE VBoxManage: error: Failed to uninstall "Oracle VM VirtualBox Extension Pack": The installer failed with exit code 1: VBoxExtPackHelperApp: error: Failed to rename the extension pack directory: VERR_NOT_SAME_DEVICE VBoxManage: error: rcExit=1 Progress state: NS_ERROR_FAILURE VBoxManage: error: Failed to install "/usr/share/virtualbox/extensions/Oracle_VM_VirtualBox_Extension_Pack-4.0.10.vbox-extpack": Extension pack 'Oracle VM VirtualBox Extension Pack' is already installed. In case of a reinstallation, please uninstall it first I have /usr on a different partition than the rest of my system, I assume it is calling a rename() and getting errno = EXDEV. This should be handled properly instead of crashing. |
|||
| #9133 | obsolete | Starting any VM fails with VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED | ||
| Description |
After upgrading from virtualbox-3.2_3.2.12-68302~Debian~squeeze_i386.deb to virtualbox-4.0_4.0.10-72479~Debian~lenny_i386.deb the VMs no longer start. An error is displayed about "symlinks not permitted". In fact /usr is a symlink to another directory (on another disk) in my system, and it must remain so because of requirements wrt partition sizing and encryption. I've never had any other software complain about that, so why doesn't VirtualBox like it (while it was ok in 3.2)? See also http://www.linux-archive.org/gentoo-user/532273-virtualbox-update-v4-0-8-trouble.html where another user has run into the same problem and got away with a workaround (which I cannot use). |
|||

