Testing daily amd64 G of 1 April 2012 in Virtualbox 4.1.10 & 4.1.12
Installer exception while formatting virtual drive (set to 12 GB)
Exception message exceeded maximum length for forum, and as attachment, so here's a pastebin:
http://pastebin.com/EEfSPxKf
anaconda exception formatting drives
Moderator: Moderators
Re: anaconda exception formatting drives
problem exists, as well, on Sabayon_Linux_DAILY_amd64_G.iso of 2012-04-04
checked install from desktop, graphical installer from boot, and text installer from boot. same exception
checked install from desktop, graphical installer from boot, and text installer from boot. same exception
Re: anaconda exception formatting drives
per the bug report (but line 94 not 98) changing the following works:
/usr/lib/python2.7/whichdb.py
line 94
- if magic == 0x13579ace:
+ if magic in (0x13579ace, 0x13579acd, 0x13579acf):
/usr/lib/python2.7/whichdb.py
line 94
- if magic == 0x13579ace:
+ if magic in (0x13579ace, 0x13579acd, 0x13579acf):
Re: anaconda exception formatting drives
The daily of 2012-04-11 has the following:
if magic == (0x13579ace, 0x13579acd, 0x13579acf):
That doesn't work -- yields an exception.
On the other hand:
if magic in (0x13579ace, 0x13579acd, 0x13579acf):
still works
if magic == (0x13579ace, 0x13579acd, 0x13579acf):
That doesn't work -- yields an exception.
On the other hand:
if magic in (0x13579ace, 0x13579acd, 0x13579acf):
still works