kne image plus persistence means that the iso size is too large I believe
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Release Notes for Ubuntu |
Fix Released
|
Undecided
|
Unassigned | ||
Wubi |
Confirmed
|
Medium
|
Unassigned |
Bug Description
(08:56:46 AM) evand: I think our best bet is to release note this, tell users to use --force if on a usb disk, and fix it properly in lucid
(08:57:14 AM) xivulon: I agree this is not critical, and it will not justify a respin
(08:57:39 AM) xivulon: even if we had a proper patch, which we don't at the moment
Release note:
Users who wish to run Wubi from a USB disk that has persistent storage enabled will need to run it with the --force-wubi option from the Windows command line.
Original report follows:
The current kne size is +700 mb plus the default minimum persistence of 128mb and the install inside windows option is missing from the menu. However by switching off persistence this drops the iso size and install inside windows option becomes available again.
I believe this is to do with the option in wubi for max_iso_size (but could be horribly wrong)
Changed in wubi: | |
assignee: | nobody → Evan Dandrea (evand) |
description: | updated |
Changed in wubi: | |
status: | New → Confirmed |
importance: | Undecided → Medium |
tags: | added: iso-testing |
Changed in wubi: | |
assignee: | Evan Dandrea (ev) → nobody |
tags: | added: precise |
The check in /home/src/ wubi/trunk/ src/wubi/ frontends/ win32/cd_ menu_page. py (line 63) is too restrictive, that was in place to discriminate against DVD. A quick fix is to remove the upper bound
if self.info. force_wubi or \
self.info. cd_distro. min_iso_ size < used:
DVDs will still be discriminated when the user is online since the MD5 check will fail, but DVDs will go through when offline and in this case the free space check is inappropriate as we check for regular ISO size. In short removing the upper bound is an issue if the user is using a DVD, offline, and with low disk space.
A proper DVD check would be a bit too invasive at this stage.