#1 Le 05/01/2012, à 12:20
- malbo
Tentative d'installation par Wubi sur disque dur dynamique
Le but de ce fil est d'examiner les cas où on peut installer Ubuntu par Wubi dans un disque dur dynamique. Comme on ne peut pas faire une installation classique de Ubuntu (sur partitions Linux) dans un disque dur dynamique (voir ce Howto ), ça vaut le coup d'étudier un peu la chose.
Je viens de faire une installation de Ubuntu 11.10 dans C: dans le cas d'une installation de Win7 qui utilise une partition de démarrage (dans mon cas, Win7 l'a nommée "disque D:" ) distincte de la partition système ( disque C: )
Après installation, Ubuntu est bien fonctionnel mais j'ai dû faire une réparation du démarrage de Win7 qui a visiblement souffert dans l'opération. Après tout ça, voici le Boot Info Script obtenu à partir de Boot-repair :
Boot Info Script 0.60 from 17 May 2011
============================= Boot Info Summary: ===============================
=> Windows is installed in the MBR of /dev/sda.
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7
Boot sector info: According to the info in the boot sector, sda1 starts
at sector 2048. But according to the info from fdisk,
sda1 starts at sector 63. The info in the boot sector
on the starting sector of the MFT Mirror is wrong.
According to the info in the boot sector, sda1 has
204799 sectors, but according to the info from fdisk,
it has 1984 sectors.
Operating System:
Boot files: /bootmgr /Boot/BCD /wubildr
sda2: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7
Boot sector info: According to the info in the boot sector, sda2 starts
at sector 206848. But according to the info from
fdisk, sda2 starts at sector 2048. The info in the
boot sector on the starting sector of the MFT Mirror
is wrong. According to the info in the boot sector,
sda2 has 45055999 sectors, but according to the info
from fdisk, it has 204799 sectors.
Operating System: Windows 7
Boot files: /Windows/System32/winload.exe /wubildr
/ubuntu/winboot/wubildr /wubildr.mbr
/ubuntu/winboot/wubildr.mbr /ubuntu/disks/root.disk
/ubuntu/disks/swap.disk
sda2/Wubi: _____________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 11.10
Boot files: /boot/grub/grub.cfg /etc/fstab
sda3: __________________________________________________________________________
File system:
Boot sector type: Unknown
Boot sector info:
Mounting failed: mount: unknown filesystem type ''
sda4: __________________________________________________________________________
File system:
Boot sector type: Unknown
Boot sector info:
Mounting failed: mount: unknown filesystem type ''
mount: unknown filesystem type ''
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 32.1 GB, 32115785728 bytes
255 heads, 63 sectors/track, 3904 cylinders, total 62726144 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 63 2,047 1,985 42 SFS
/dev/sda2 * 2,048 206,847 204,800 42 SFS
/dev/sda3 206,848 45,262,847 45,056,000 42 SFS
/dev/sda4 45,262,848 62,724,095 17,461,248 42 SFS
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/loop0 e4635099-89df-4538-8a43-cefac4a53b3b ext3
/dev/sda1 6897A00841906534 ntfs boot
/dev/sda2 0595ADBC10A3554C ntfs win7
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/loop0 / ext3 (rw,commit=0,commit=0)
/dev/sda2 /host fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
======================== sda2/Wubi/boot/grub/grub.cfg: =========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
}
insmod part_msdos
insmod ntfs
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set=root 0595ADBC10A3554C
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=auto
load_video
insmod gfxterm
insmod part_msdos
insmod ntfs
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set=root 0595ADBC10A3554C
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
set locale_dir=($root)/boot/grub/locale
set lang=
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30; then
clear
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/10_lupin ###
if [ ${recordfail} != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
if [ "$linux_gfx_mode" != "text" ]; then load_video; fi
menuentry 'Ubuntu, with Linux 3.0.0-12-generic' --class ubuntu --class gnu-linux --class gnu --class os {
set gfxpayload=$linux_gfx_mode
insmod part_msdos
insmod ntfs
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set=root 0595ADBC10A3554C
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-3.0.0-12-generic root=UUID=0595ADBC10A3554C loop=/ubuntu/disks/root.disk ro quiet splash vt.handoff=7
initrd /boot/initrd.img-3.0.0-12-generic
}
menuentry 'Ubuntu, with Linux 3.0.0-12-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
set gfxpayload=$linux_gfx_mode
insmod part_msdos
insmod ntfs
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set=root 0595ADBC10A3554C
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
echo 'Loading Linux 3.0.0-12-generic ...'
linux /boot/vmlinuz-3.0.0-12-generic root=UUID=0595ADBC10A3554C loop=/ubuntu/disks/root.disk ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.0.0-12-generic
}
### END /etc/grub.d/10_lupin ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
if [ "x${timeout}" != "x-1" ]; then
if keystatus; then
if keystatus --shift; then
set timeout=-1
else
set timeout=0
fi
else
if sleep --interruptible 3 ; then
set timeout=0
fi
fi
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------
============================= sda2/Wubi/etc/fstab: =============================
--------------------------------------------------------------------------------
# UNCONFIGURED FSTAB FOR BASE SYSTEM
/host/ubuntu/disks/swap.disk none swap sw 0 0
--------------------------------------------------------------------------------
================= sda2/Wubi: Location of files loaded by Grub: =================
GiB - GB File Fragment(s)
4.333013535 = 4.652537856 boot/grub/grub.cfg 1
2.224943161 = 2.389014528 boot/initrd.img-3.0.0-12-generic 68
1.301356316 = 1.397320704 boot/vmlinuz-3.0.0-12-generic 20
2.224943161 = 2.389014528 initrd.img 68
1.301356316 = 1.397320704 vmlinuz 20
======================== Unknown MBRs/Boot Sectors/etc: ========================
Unknown BootLoader on sda3
Unknown BootLoader on sda4
=============================== StdErr Messages: ===============================
hexdump: /dev/sda3: No such file or directory
hexdump: /dev/sda3: No such file or directory
hexdump: /dev/sda4: No such file or directory
hexdump: /dev/sda4: No such file or directory
Dans la partie "Drive/Partition Info" du Boot Info Script, on peut voir une partition sda4 qui est en fait une zone non allouée du disque dur dynamique alors qu'on pourrait croire qu'elle est occupée :
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 32.1 GB, 32115785728 bytes
255 heads, 63 sectors/track, 3904 cylinders, total 62726144 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 63 2,047 1,985 42 SFS
/dev/sda2 * 2,048 206,847 204,800 42 SFS
/dev/sda3 206,848 45,262,847 45,056,000 42 SFS
/dev/sda4 45,262,848 62,724,095 17,461,248 42 SFS
On peut noter aussi que ça patauge dans le repérage des partitions :
- la partition de démarrage est vue comme "sda1" au début du Boot Info Script alors qu'elle est vue comme "sda2" ci-dessus
- la partition Système de Win7 est vue comme "sda2" au début du Boot Info Script alors qu'elle est vue comme "sda3" ci-dessus
Ci-dessous, le fichier d'installation visible dans c:\users\malbo\appdata\local\temp\wubi-11.10-rev245.log
01-05 09:08 INFO root: === wubi 11.10 rev245 ===
01-05 09:08 DEBUG root: Logfile is c:\users\malbo\appdata\local\temp\wubi-11.10-rev245.log
01-05 09:08 DEBUG root: sys.argv = ['main.pyo', '--exefile="C:\\Users\\malbo\\Downloads\\wubi-r245-signed.exe"']
01-05 09:08 DEBUG CommonBackend: data_dir=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\data
01-05 09:08 DEBUG WindowsBackend: 7z=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\bin\7z.exe
01-05 09:08 DEBUG WindowsBackend: startup_folder=C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
01-05 09:08 DEBUG CommonBackend: Fetching basic info...
01-05 09:08 DEBUG CommonBackend: original_exe=C:\Users\malbo\Downloads\wubi-r245-signed.exe
01-05 09:08 DEBUG CommonBackend: platform=win32
01-05 09:08 DEBUG CommonBackend: osname=nt
01-05 09:08 DEBUG CommonBackend: language=fr_FR
01-05 09:08 DEBUG CommonBackend: encoding=cp1252
01-05 09:08 DEBUG WindowsBackend: arch=amd64
01-05 09:08 DEBUG CommonBackend: Parsing isolist=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\data\isolist.ini
01-05 09:08 DEBUG CommonBackend: Adding distro Xubuntu-i386
01-05 09:08 DEBUG CommonBackend: Adding distro Xubuntu-amd64
01-05 09:08 DEBUG CommonBackend: Adding distro Kubuntu-amd64
01-05 09:08 DEBUG CommonBackend: Adding distro Mythbuntu-i386
01-05 09:08 DEBUG CommonBackend: Adding distro Ubuntu-amd64
01-05 09:08 DEBUG CommonBackend: Adding distro Ubuntu-i386
01-05 09:08 DEBUG CommonBackend: Adding distro Mythbuntu-amd64
01-05 09:08 DEBUG CommonBackend: Adding distro Kubuntu-i386
01-05 09:08 DEBUG WindowsBackend: Fetching host info...
01-05 09:08 DEBUG WindowsBackend: registry_key=Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi
01-05 09:08 DEBUG WindowsBackend: windows version=vista
01-05 09:08 DEBUG WindowsBackend: windows_version2=Windows 7 Home Premium
01-05 09:08 DEBUG WindowsBackend: windows_sp=None
01-05 09:08 DEBUG WindowsBackend: windows_build=7601
01-05 09:08 DEBUG WindowsBackend: gmt=1
01-05 09:08 DEBUG WindowsBackend: country=FR
01-05 09:08 DEBUG WindowsBackend: timezone=Europe/Paris
01-05 09:08 DEBUG WindowsBackend: windows_username=malbo
01-05 09:08 DEBUG WindowsBackend: user_full_name=malbo
01-05 09:08 DEBUG WindowsBackend: user_directory=C:\Users\malbo
01-05 09:08 DEBUG WindowsBackend: windows_language_code=1036
01-05 09:08 DEBUG WindowsBackend: windows_language=French
01-05 09:08 DEBUG WindowsBackend: processor_name=AMD Phenom(tm) 9500 Quad-Core Processor
01-05 09:08 DEBUG WindowsBackend: bootloader=vista
01-05 09:08 DEBUG WindowsBackend: system_drive=Drive(C: hd 13560.2148438 mb free ntfs)
01-05 09:08 DEBUG WindowsBackend: drive=Drive(C: hd 13560.2148438 mb free ntfs)
01-05 09:08 DEBUG WindowsBackend: drive=Drive(D: hd 71.87109375 mb free ntfs)
01-05 09:08 DEBUG WindowsBackend: drive=Drive(F: cd 0.0 mb free )
01-05 09:08 DEBUG WindowsBackend: uninstaller_path=None
01-05 09:08 DEBUG WindowsBackend: previous_target_dir=None
01-05 09:08 DEBUG WindowsBackend: previous_distro_name=None
01-05 09:08 DEBUG WindowsBackend: keyboard_id=67896332
01-05 09:08 DEBUG WindowsBackend: keyboard_layout=fr
01-05 09:08 DEBUG WindowsBackend: keyboard_variant=
01-05 09:08 DEBUG CommonBackend: python locale=('fr_FR', 'cp1252')
01-05 09:08 DEBUG CommonBackend: locale=fr_FR.UTF-8
01-05 09:08 DEBUG WindowsBackend: total_memory_mb=1023.5546875
01-05 09:08 DEBUG CommonBackend: Searching ISOs on USB devices
01-05 09:08 DEBUG CommonBackend: Searching for local CDs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Ubuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Ubuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Kubuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Kubuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Xubuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Xubuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Mythbuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Mythbuntu CD
01-05 09:08 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Ubuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Ubuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Kubuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Kubuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Xubuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Xubuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Mythbuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether D:\ is a valid Mythbuntu CD
01-05 09:08 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Ubuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Ubuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Kubuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Kubuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Xubuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Xubuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Mythbuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 DEBUG Distro: checking whether F:\ is a valid Mythbuntu CD
01-05 09:08 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:08 INFO root: Running the installer...
01-05 09:08 DEBUG WindowsFrontend: __init__...
01-05 09:08 DEBUG WindowsFrontend: on_init...
01-05 09:08 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\translations, languages=['fr_FR', 'fr']
01-05 09:08 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\translations, languages=['fr_FR', 'fr']
01-05 09:09 DEBUG WinuiInstallationPage: target_drive=C:, installation_size=5000MB, distro_name=Ubuntu, language=fr_FR, locale=fr_FR.UTF-8, username=malbo
01-05 09:09 INFO root: Received settings
01-05 09:09 DEBUG CommonBackend: Searching for local CD
01-05 09:09 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp is a valid Ubuntu CD
01-05 09:09 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\casper\filesystem.squashfs
01-05 09:09 DEBUG Distro: checking whether D:\ is a valid Ubuntu CD
01-05 09:09 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 09:09 DEBUG Distro: checking whether F:\ is a valid Ubuntu CD
01-05 09:09 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 09:09 DEBUG CommonBackend: Searching for local ISO
01-05 09:09 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\translations, languages=['fr_FR', 'fr']
01-05 09:09 DEBUG TaskList: # Running tasklist...
01-05 09:09 DEBUG TaskList: ## Running select_target_dir...
01-05 09:09 INFO WindowsBackend: Installing into C:\ubuntu
01-05 09:09 DEBUG TaskList: ## Finished select_target_dir
01-05 09:09 DEBUG TaskList: ## Running create_dir_structure...
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu\disks
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu\install
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu\install\boot
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu\disks\boot
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu\disks\boot\grub
01-05 09:09 DEBUG CommonBackend: Creating dir C:\ubuntu\install\boot\grub
01-05 09:09 DEBUG TaskList: ## Finished create_dir_structure
01-05 09:09 DEBUG TaskList: ## Running create_uninstaller...
01-05 09:09 DEBUG WindowsBackend: Copying uninstaller C:\Users\malbo\Downloads\wubi-r245-signed.exe -> C:\ubuntu\uninstall-wubi.exe
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi UninstallString C:\ubuntu\uninstall-wubi.exe
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi InstallationDir C:\ubuntu
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi DisplayName Ubuntu
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi DisplayIcon C:\ubuntu\Ubuntu.ico
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi DisplayVersion 11.10-rev245
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi Publisher Ubuntu
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi URLInfoAbout http://www.ubuntu.com
01-05 09:09 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi HelpLink http://www.ubuntu.com/support
01-05 09:09 DEBUG TaskList: ## Finished create_uninstaller
01-05 09:09 DEBUG TaskList: ## Running create_preseed_diskimage...
01-05 09:09 DEBUG TaskList: ## Finished create_preseed_diskimage
01-05 09:09 DEBUG TaskList: ## Running get_diskimage...
01-05 09:09 DEBUG TaskList: New task download
01-05 09:09 DEBUG TaskList: ### Running download...
01-05 09:09 DEBUG downloader: downloading http://releases.ubuntu.com/11.10/ubuntu-11.10-wubi-amd64.tar.xz > C:\ubuntu\disks\ubuntu-11.10-wubi-amd64.tar.xz
01-05 09:09 DEBUG downloader: Download start filename=C:\ubuntu\disks\ubuntu-11.10-wubi-amd64.tar.xz, url=http://releases.ubuntu.com/11.10/ubuntu-11.10-wubi-amd64.tar.xz, basename=ubuntu-11.10-wubi-amd64.tar.xz, length=507143012, text=None
01-05 09:40 DEBUG TaskList: ### Finished download
01-05 09:40 DEBUG downloader: download finished (read 507143012 bytes)
01-05 09:40 DEBUG TaskList: ## Finished get_diskimage
01-05 09:40 DEBUG TaskList: ## Running extract_diskimage...
01-05 09:42 DEBUG TaskList: ## Finished extract_diskimage
01-05 09:42 DEBUG TaskList: ## Running choose_disk_sizes...
01-05 09:42 DEBUG WindowsBackend: total size=5000
root=4744
swap=256
home=0
usr=0
01-05 09:42 DEBUG TaskList: ## Finished choose_disk_sizes
01-05 09:42 DEBUG TaskList: ## Running expand_diskimage...
01-05 09:43 DEBUG TaskList: ## Finished expand_diskimage
01-05 09:43 DEBUG TaskList: ## Running create_swap_diskimage...
01-05 09:43 DEBUG TaskList: ## Finished create_swap_diskimage
01-05 09:43 DEBUG TaskList: ## Running modify_bootloader...
01-05 09:43 DEBUG TaskList: New task modify_bcd
01-05 09:43 DEBUG TaskList: ### Running modify_bcd...
01-05 09:43 DEBUG WindowsBackend: modify_bcd Drive(C: hd 13560.2148438 mb free ntfs)
01-05 09:43 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi VistaBootDrive {3580fae4-3767-11e1-b490-9f90167c53bf}
01-05 09:43 DEBUG TaskList: ### Finished modify_bcd
01-05 09:43 DEBUG TaskList: New task modify_bcd
01-05 09:43 DEBUG TaskList: ### Running modify_bcd...
01-05 09:43 DEBUG WindowsBackend: modify_bcd Drive(D: hd 71.87109375 mb free ntfs)
01-05 09:43 DEBUG WindowsBackend: BCD has already been modified
01-05 09:43 DEBUG TaskList: ### Finished modify_bcd
01-05 09:43 DEBUG TaskList: ## Finished modify_bootloader
01-05 09:43 DEBUG TaskList: ## Running diskimage_bootloader...
01-05 09:43 DEBUG WindowsBackend: Copying C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\winboot -> C:\ubuntu\winboot
01-05 09:43 DEBUG TaskList: ## Finished diskimage_bootloader
01-05 09:43 DEBUG TaskList: # Finished tasklist
01-05 09:43 INFO root: Almost finished installing
01-05 09:43 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pyl5FAC.tmp\translations, languages=['fr_FR', 'fr']
01-05 09:45 INFO root: Finished installation
01-05 09:45 INFO root: Rebooting
01-05 09:45 DEBUG TaskList: # Running tasklist...
01-05 09:45 DEBUG TaskList: ## Running reboot...
01-05 09:45 DEBUG TaskList: ## Finished reboot
01-05 09:45 DEBUG TaskList: # Finished tasklist
01-05 09:45 DEBUG root: application.quit
01-05 09:45 DEBUG WindowsFrontend: frontend.quit
01-05 09:45 DEBUG WindowsFrontend: frontend.on_quit
01-05 09:45 DEBUG root: application.on_quit
01-05 09:45 INFO root: sys.exit
Dernière modification par malbo (Le 11/01/2012, à 11:24)
Hors ligne
#2 Le 05/01/2012, à 15:01
- malbo
Re : Tentative d'installation par Wubi sur disque dur dynamique
Dans ce post, je tente une installation de Ubuntu 11.10 par Wubi dans une autre partition que la partition système de Win7. J'ai créé une partition en fin de disque dynamique (elle est vue comme disque E: par Win7) et j'essaie d'installer Ubuntu dedans. L'installation ne s'est pas terminée comme il conviendrait : normalement, il y a une fenêtre qui s'ouvre et qui invite à redémarrer immédiatement, alors que là, rien ne s'est passé. On verra que le rapport d'installation donne des explications sur cela. Toujours est-il que j'ai dû ruser pour réparer le démarrage de Ubuntu (je détaillerai plus tard) mais au final, j'ai bien un Ubuntu fonctionnel.
Résultat du Boot Info Script après installation :
Boot Info Script 0.60 from 17 May 2011
============================= Boot Info Summary: ===============================
=> Windows is installed in the MBR of /dev/sda.
sda1: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7
Boot sector info: According to the info in the boot sector, sda1 starts
at sector 2048. But according to the info from fdisk,
sda1 starts at sector 63. The info in the boot sector
on the starting sector of the MFT Mirror is wrong.
According to the info in the boot sector, sda1 has
204799 sectors, but according to the info from fdisk,
it has 1984 sectors.
Operating System:
Boot files: /bootmgr /Boot/BCD
sda2: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7
Boot sector info: According to the info in the boot sector, sda2 starts
at sector 206848. But according to the info from
fdisk, sda2 starts at sector 2048. The info in the
boot sector on the starting sector of the MFT Mirror
is wrong. According to the info in the boot sector,
sda2 has 45055999 sectors, but according to the info
from fdisk, it has 204799 sectors.
Operating System: Windows 7
Boot files: /NST/menu.lst /Windows/System32/winload.exe /wubildr
/wubildr.mbr
sda3: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7
Boot sector info: According to the info in the boot sector, sda3 starts
at sector 45262848. But according to the info from
fdisk, sda3 starts at sector 206848. According to the
info in the boot sector, sda3 has 17459199 sectors,
but according to the info from fdisk, it has 45055999
sectors.
Operating System:
Boot files: /ubuntu/disks/root.disk /ubuntu/disks/swap.disk
sda3/Wubi: _____________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 11.10
Boot files: /etc/fstab
sda4: __________________________________________________________________________
File system:
Boot sector type: Unknown
Boot sector info:
Mounting failed: mount: unknown filesystem type ''
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 32.1 GB, 32115785728 bytes
255 heads, 63 sectors/track, 3904 cylinders, total 62726144 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 63 2,047 1,985 42 SFS
/dev/sda2 * 2,048 206,847 204,800 42 SFS
/dev/sda3 206,848 45,262,847 45,056,000 42 SFS
/dev/sda4 45,262,848 62,724,095 17,461,248 42 SFS
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/loop0 e4635099-89df-4538-8a43-cefac4a53b3b ext3
/dev/sda1 6897A00841906534 ntfs boot
/dev/sda2 0595ADBC10A3554C ntfs win7
/dev/sda3 BA74C46A74C42AC9 ntfs Data
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/loop0 / ext3 (rw,commit=0,commit=0)
/dev/sda3 /host fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
============================== sda2/NST/menu.lst: ==============================
--------------------------------------------------------------------------------
# NeoSmart NeoGrub Bootloader Configuration File
#
# This is the NeoGrub configuration file, and should be located at C:\NST\menu.lst
# Please see the EasyBCD Documentation for information on how to create/modify entries:
# http://neosmart.net/wiki/display/EBCD/
--------------------------------------------------------------------------------
=================== sda2: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
?? = ?? NST/menu.lst 0
============================= sda3/Wubi/etc/fstab: =============================
--------------------------------------------------------------------------------
# UNCONFIGURED FSTAB FOR BASE SYSTEM
--------------------------------------------------------------------------------
================= sda3/Wubi: Location of files loaded by Grub: =================
GiB - GB File Fragment(s)
= boot/initrd.img-3.0.0-12-generic 55
= boot/vmlinuz-3.0.0-12-generic 20
= initrd.img 55
= vmlinuz 20
======================== Unknown MBRs/Boot Sectors/etc: ========================
Unknown BootLoader on sda4
=============================== StdErr Messages: ===============================
awk: cmd. line:36: Math support is not compiled in
awk: cmd. line:36: Math support is not compiled in
awk: cmd. line:36: Math support is not compiled in
awk: cmd. line:36: Math support is not compiled in
hexdump: /dev/sda4: No such file or directory
hexdump: /dev/sda4: No such file or directory
Et le contenu du rapport d'installation de Ubuntu qui se trouve dans C:\users\malbo\appdata\local\temp\wubi-11.10-rev245.log :
01-05 13:06 INFO root: === wubi 11.10 rev245 ===
01-05 13:06 DEBUG root: Logfile is c:\users\malbo\appdata\local\temp\wubi-11.10-rev245.log
01-05 13:06 DEBUG root: sys.argv = ['main.pyo', '--exefile="C:\\Users\\malbo\\Downloads\\wubi-r245-signed.exe"']
01-05 13:06 DEBUG CommonBackend: data_dir=C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\data
01-05 13:06 DEBUG WindowsBackend: 7z=C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\bin\7z.exe
01-05 13:06 DEBUG WindowsBackend: startup_folder=C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
01-05 13:06 DEBUG CommonBackend: Fetching basic info...
01-05 13:06 DEBUG CommonBackend: original_exe=C:\Users\malbo\Downloads\wubi-r245-signed.exe
01-05 13:06 DEBUG CommonBackend: platform=win32
01-05 13:06 DEBUG CommonBackend: osname=nt
01-05 13:06 DEBUG CommonBackend: language=fr_FR
01-05 13:06 DEBUG CommonBackend: encoding=cp1252
01-05 13:06 DEBUG WindowsBackend: arch=amd64
01-05 13:06 DEBUG CommonBackend: Parsing isolist=C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\data\isolist.ini
01-05 13:06 DEBUG CommonBackend: Adding distro Xubuntu-i386
01-05 13:06 DEBUG CommonBackend: Adding distro Xubuntu-amd64
01-05 13:06 DEBUG CommonBackend: Adding distro Kubuntu-amd64
01-05 13:06 DEBUG CommonBackend: Adding distro Mythbuntu-i386
01-05 13:06 DEBUG CommonBackend: Adding distro Ubuntu-amd64
01-05 13:06 DEBUG CommonBackend: Adding distro Ubuntu-i386
01-05 13:06 DEBUG CommonBackend: Adding distro Mythbuntu-amd64
01-05 13:06 DEBUG CommonBackend: Adding distro Kubuntu-i386
01-05 13:06 DEBUG WindowsBackend: Fetching host info...
01-05 13:06 DEBUG WindowsBackend: registry_key=Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi
01-05 13:06 DEBUG WindowsBackend: windows version=vista
01-05 13:06 DEBUG WindowsBackend: windows_version2=Windows 7 Home Premium
01-05 13:06 DEBUG WindowsBackend: windows_sp=None
01-05 13:06 DEBUG WindowsBackend: windows_build=7601
01-05 13:06 DEBUG WindowsBackend: gmt=1
01-05 13:06 DEBUG WindowsBackend: country=FR
01-05 13:06 DEBUG WindowsBackend: timezone=Europe/Paris
01-05 13:06 DEBUG WindowsBackend: windows_username=malbo
01-05 13:06 DEBUG WindowsBackend: user_full_name=malbo
01-05 13:06 DEBUG WindowsBackend: user_directory=C:\Users\malbo
01-05 13:06 DEBUG WindowsBackend: windows_language_code=1036
01-05 13:06 DEBUG WindowsBackend: windows_language=French
01-05 13:06 DEBUG WindowsBackend: processor_name=AMD Phenom(tm) 9500 Quad-Core Processor
01-05 13:06 DEBUG WindowsBackend: bootloader=vista
01-05 13:06 DEBUG WindowsBackend: system_drive=Drive(C: hd 13381.4765625 mb free ntfs)
01-05 13:06 DEBUG WindowsBackend: drive=Drive(C: hd 13381.4765625 mb free ntfs)
01-05 13:06 DEBUG WindowsBackend: drive=Drive(D: hd 71.86328125 mb free ntfs)
01-05 13:06 DEBUG WindowsBackend: drive=Drive(E: hd 8454.359375 mb free ntfs)
01-05 13:06 DEBUG WindowsBackend: drive=Drive(F: cd 0.0 mb free )
01-05 13:06 DEBUG WindowsBackend: uninstaller_path=None
01-05 13:06 DEBUG WindowsBackend: previous_target_dir=None
01-05 13:06 DEBUG WindowsBackend: previous_distro_name=None
01-05 13:06 DEBUG WindowsBackend: keyboard_id=67896332
01-05 13:06 DEBUG WindowsBackend: keyboard_layout=fr
01-05 13:06 DEBUG WindowsBackend: keyboard_variant=
01-05 13:06 DEBUG CommonBackend: python locale=('fr_FR', 'cp1252')
01-05 13:06 DEBUG CommonBackend: locale=fr_FR.UTF-8
01-05 13:06 DEBUG WindowsBackend: total_memory_mb=1023.5546875
01-05 13:06 DEBUG CommonBackend: Searching ISOs on USB devices
01-05 13:06 DEBUG CommonBackend: Searching for local CDs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether D:\ is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether E:\ is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Ubuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Kubuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Xubuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 DEBUG Distro: checking whether F:\ is a valid Mythbuntu CD
01-05 13:06 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:06 INFO root: Running the installer...
01-05 13:06 DEBUG WindowsFrontend: __init__...
01-05 13:06 DEBUG WindowsFrontend: on_init...
01-05 13:06 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\translations, languages=['fr_FR', 'fr']
01-05 13:06 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\translations, languages=['fr_FR', 'fr']
01-05 13:07 DEBUG WinuiInstallationPage: target_drive=E:, installation_size=5000MB, distro_name=Ubuntu, language=fr_FR, locale=fr_FR.UTF-8, username=malbo
01-05 13:07 INFO root: Received settings
01-05 13:07 DEBUG CommonBackend: Searching for local CD
01-05 13:07 DEBUG Distro: checking whether C:\Users\malbo\AppData\Local\Temp\pylF575.tmp is a valid Ubuntu CD
01-05 13:07 DEBUG Distro: does not contain C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\casper\filesystem.squashfs
01-05 13:07 DEBUG Distro: checking whether D:\ is a valid Ubuntu CD
01-05 13:07 DEBUG Distro: does not contain D:\casper\filesystem.squashfs
01-05 13:07 DEBUG Distro: checking whether E:\ is a valid Ubuntu CD
01-05 13:07 DEBUG Distro: does not contain E:\casper\filesystem.squashfs
01-05 13:07 DEBUG Distro: checking whether F:\ is a valid Ubuntu CD
01-05 13:07 DEBUG Distro: does not contain F:\casper\filesystem.squashfs
01-05 13:07 DEBUG CommonBackend: Searching for local ISO
01-05 13:07 INFO WinuiPage: appname=wubi, localedir=C:\Users\malbo\AppData\Local\Temp\pylF575.tmp\translations, languages=['fr_FR', 'fr']
01-05 13:07 DEBUG TaskList: # Running tasklist...
01-05 13:07 DEBUG TaskList: ## Running select_target_dir...
01-05 13:07 INFO WindowsBackend: Installing into E:\ubuntu
01-05 13:07 DEBUG TaskList: ## Finished select_target_dir
01-05 13:07 DEBUG TaskList: ## Running create_dir_structure...
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu\disks
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu\install
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu\install\boot
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu\disks\boot
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu\disks\boot\grub
01-05 13:07 DEBUG CommonBackend: Creating dir E:\ubuntu\install\boot\grub
01-05 13:07 DEBUG TaskList: ## Finished create_dir_structure
01-05 13:07 DEBUG TaskList: ## Running create_uninstaller...
01-05 13:07 DEBUG WindowsBackend: Copying uninstaller C:\Users\malbo\Downloads\wubi-r245-signed.exe -> E:\ubuntu\uninstall-wubi.exe
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi UninstallString E:\ubuntu\uninstall-wubi.exe
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi InstallationDir E:\ubuntu
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi DisplayName Ubuntu
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi DisplayIcon E:\ubuntu\Ubuntu.ico
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi DisplayVersion 11.10-rev245
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi Publisher Ubuntu
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi URLInfoAbout http://www.ubuntu.com
01-05 13:07 DEBUG registry: Setting registry key -2147483646 Software\Microsoft\Windows\CurrentVersion\Uninstall\Wubi HelpLink http://www.ubuntu.com/support
01-05 13:07 DEBUG TaskList: ## Finished create_uninstaller
01-05 13:07 DEBUG TaskList: ## Running create_preseed_diskimage...
01-05 13:07 DEBUG TaskList: ## Finished create_preseed_diskimage
01-05 13:07 DEBUG TaskList: ## Running get_diskimage...
01-05 13:07 DEBUG TaskList: New task download
01-05 13:07 DEBUG TaskList: ### Running download...
01-05 13:07 DEBUG downloader: downloading http://releases.ubuntu.com/11.10/ubuntu-11.10-wubi-amd64.tar.xz > E:\ubuntu\disks\ubuntu-11.10-wubi-amd64.tar.xz
01-05 13:07 DEBUG downloader: Download start filename=E:\ubuntu\disks\ubuntu-11.10-wubi-amd64.tar.xz, url=http://releases.ubuntu.com/11.10/ubuntu-11.10-wubi-amd64.tar.xz, basename=ubuntu-11.10-wubi-amd64.tar.xz, length=507143012, text=None
01-05 13:38 DEBUG TaskList: ### Finished download
01-05 13:38 DEBUG downloader: download finished (read 507143012 bytes)
01-05 13:38 DEBUG TaskList: ## Finished get_diskimage
01-05 13:38 DEBUG TaskList: ## Running extract_diskimage...
01-05 13:41 DEBUG TaskList: ## Finished extract_diskimage
01-05 13:41 DEBUG TaskList: ## Running choose_disk_sizes...
01-05 13:41 DEBUG WindowsBackend: total size=5000
root=4744
swap=256
home=0
usr=0
01-05 13:41 DEBUG TaskList: ## Finished choose_disk_sizes
01-05 13:41 DEBUG TaskList: ## Running expand_diskimage...
01-05 13:41 DEBUG TaskList: ## Finished expand_diskimage
01-05 13:41 DEBUG TaskList: ## Running create_swap_diskimage...
01-05 13:41 DEBUG TaskList: ## Finished create_swap_diskimage
01-05 13:41 DEBUG TaskList: ## Running modify_bootloader...
01-05 13:41 DEBUG TaskList: New task modify_bcd
01-05 13:41 DEBUG TaskList: ### Running modify_bcd...
01-05 13:41 DEBUG WindowsBackend: modify_bcd Drive(C: hd 13381.4765625 mb free ntfs)
01-05 13:41 ERROR TaskList: Error executing command
>>command=C:\Windows\sysnative\bcdedit.exe /set {3580fae5-3767-11e1-b490-9f90167c53bf} device partition=E:
>>retval=1
>>stderr=Une erreur s'est produite lors de la d‚finition de l'‚l‚ment de donn‚es.
Cette demande n'est pas prise en charge.
>>stdout=
Traceback (most recent call last):
File "\lib\wubi\backends\common\tasklist.py", line 197, in __call__
File "\lib\wubi\backends\win32\backend.py", line 692, in modify_bcd
File "\lib\wubi\backends\common\utils.py", line 66, in run_command
Exception: Error executing command
>>command=C:\Windows\sysnative\bcdedit.exe /set {3580fae5-3767-11e1-b490-9f90167c53bf} device partition=E:
>>retval=1
>>stderr=Une erreur s'est produite lors de la d‚finition de l'‚l‚ment de donn‚es.
Cette demande n'est pas prise en charge.
>>stdout=
01-05 13:41 DEBUG TaskList: # Cancelling tasklist
01-05 13:41 DEBUG TaskList: New task modify_bcd
01-05 13:41 ERROR root: Error executing command
>>command=C:\Windows\sysnative\bcdedit.exe /set {3580fae5-3767-11e1-b490-9f90167c53bf} device partition=E:
>>retval=1
>>stderr=Une erreur s'est produite lors de la d‚finition de l'‚l‚ment de donn‚es.
Cette demande n'est pas prise en charge.
>>stdout=
Traceback (most recent call last):
File "\lib\wubi\application.py", line 58, in run
File "\lib\wubi\application.py", line 132, in select_task
File "\lib\wubi\application.py", line 158, in run_installer
File "\lib\wubi\backends\common\tasklist.py", line 197, in __call__
File "\lib\wubi\backends\win32\backend.py", line 692, in modify_bcd
File "\lib\wubi\backends\common\utils.py", line 66, in run_command
Exception: Error executing command
>>command=C:\Windows\sysnative\bcdedit.exe /set {3580fae5-3767-11e1-b490-9f90167c53bf} device partition=E:
>>retval=1
>>stderr=Une erreur s'est produite lors de la d‚finition de l'‚l‚ment de donn‚es.
Cette demande n'est pas prise en charge.
>>stdout=
On voit bien à la fin du rapport d'installation que bcdedit.exe, le machin qui doit mettre à jour le démarrage de Win7, n'arrive pas à faire le boulot. C'est la raison pour laquelle la phase d'installation ne s'est pas terminée normalement comme je l'ai expliqué plus haut. Du coup, j'ai dû mettre en oeuvre un technique miteuse : j'ai installé EasyBCD, j'ai créé une entrée pour NeoGrub et j'ai fait les manips suivantes :
- renommage de C:\NST\NeoGrub.mbr en C:\NST\NeoGrub_mbr (pour que ce fichier d'origine de NeoGrub ne soit plus utilisable)
- copie de C:\wubildr.mbr dans C:\NST\wubildr.mbr
- renommage de C:\NST\wubildr.mbr en C:\NST\NeoGrub.mbr
Le but de ce petit tripatouillage étant de remplacer le lanceur de NeoGrub par la lanceur de Ubuntu
Après cela, au démarrage, j'ai le menu de démarrage de Win7 qui me propose une ligne pour démarrer NeoGrub mais si je la sélectionne, j'arrive à démarrer mon Ubuntu installé par Wubi.
Conclusion : en prenant aussi en compte d'autres essais que j'ai fait dans ce post : http://forum.ubuntu-fr.org/viewtopic.ph … 1#p7691431
il apparaît que Ubuntu peut être installé par Wubi dans un disque dynamique à condition d'installer Ubuntu dans le disque C: et pas dans une autre partition. En effet, l'installation dans une autre partition (genre partition de stockage en NTFS) est ratée et même si c'est réparable, cette réparation n'est pas à la portée d'un novice.
Dernière modification par malbo (Le 05/01/2012, à 16:08)
Hors ligne