PDA

View Full Version : [ubuntu] Partition Wizard and Linux?



freshmeat20
January 19th, 2011, 11:19 PM
I'm trying to change the Windows partition back to basic But can only use Ubuntu. Anything Like Partition Wizard I can use in ubuntu to convert the disk as the same in partition Wizard?

Old_Grey_Wolf
January 20th, 2011, 02:09 AM
Are you saying that you have multiple hard drives and use Microsoft's Dynamic Partition propriety format to spread the partition across multiple hard drives? The way that the Linux file system and Microsoft Windows file system work conceptually are quite different. You may need to provide a more detailed description of your partitioning. Maybe post the output of
sudo fdisk -lwill help.

freshmeat20
January 20th, 2011, 02:19 AM
no single hard drive with a 15gb linux, 2gb swap, and the rest my Windows partition. I want to convert the Windows partition from dynamic to basic so it can be booted again. I lost the key so if i lose it now I can't reinstall :{

here's my boot info script


Boot Info Script 0.55 dated February 15th, 2010

============================= Boot Info Summary: ==============================

=> Grub 2 is installed in the MBR of /dev/sda and looks on the same drive in
partition #5 for (,msdos5)/boot/grub.

sda1: __________________________________________________ _______________________

File system: vfat
Boot sector type: Dell Utility: Fat16
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files/dirs: /COMMAND.COM

sda2: __________________________________________________ _______________________

File system: Extended Partition
Boot sector type: Unknown
Boot sector info:

sda5: __________________________________________________ _______________________

File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.10
Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img

sda3: __________________________________________________ _______________________

File system:
Boot sector type: Unknown
Boot sector info:
Mounting failed:
mount: unknown filesystem type ''

sda4: __________________________________________________ _______________________

File system: swap
Boot sector type: -
Boot sector info:

=========================== Drive/Partition Info: =============================

Drive: sda ___________________ __________________________________________________ ___

Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition Boot Start End Size Id System

/dev/sda1 * 63 80,324 80,262 de Dell Utility
/dev/sda2 81,918 30,801,919 30,720,002 5 Extended
/dev/sda5 81,920 30,801,919 30,720,000 83 Linux
/dev/sda3 30,801,920 620,974,767 590,172,848 42 SFS
/dev/sda4 620,976,128 625,141,759 4,165,632 82 Linux swap / Solaris


blkid -c /dev/null: __________________________________________________ __________

Device UUID TYPE LABEL

/dev/sda1 3030-3030 vfat DellUtility
/dev/sda2: PTTYPE="dos"
/dev/sda4 ff983208-0921-45ac-84ea-e766da45e6da swap
/dev/sda5 76f4a356-2d69-43f5-9b91-c6b01520882a ext4
/dev/sda: PTTYPE="dos"

============================ "mount | grep ^/dev output: ===========================

Device Mount_Point Type Options

/dev/sda5 / ext4 (rw,errors=remount-ro,commit=0)


=========================== sda5/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 part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
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
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.35-25-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
linux /boot/vmlinuz-2.6.35-25-generic root=UUID=76f4a356-2d69-43f5-9b91-c6b01520882a ro quiet splash
initrd /boot/initrd.img-2.6.35-25-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-25-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
echo 'Loading Linux 2.6.35-25-generic ...'
linux /boot/vmlinuz-2.6.35-25-generic root=UUID=76f4a356-2d69-43f5-9b91-c6b01520882a ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-25-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-24-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
linux /boot/vmlinuz-2.6.35-24-generic root=UUID=76f4a356-2d69-43f5-9b91-c6b01520882a ro quiet splash
initrd /boot/initrd.img-2.6.35-24-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-24-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
echo 'Loading Linux 2.6.35-24-generic ...'
linux /boot/vmlinuz-2.6.35-24-generic root=UUID=76f4a356-2d69-43f5-9b91-c6b01520882a ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-24-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=76f4a356-2d69-43f5-9b91-c6b01520882a ro quiet splash
initrd /boot/initrd.img-2.6.35-22-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
echo 'Loading Linux 2.6.35-22-generic ...'
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=76f4a356-2d69-43f5-9b91-c6b01520882a ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-22-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set 76f4a356-2d69-43f5-9b91-c6b01520882a
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### 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 ###

=============================== sda5/etc/fstab: ===============================

# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda5 during installation
UUID=76f4a356-2d69-43f5-9b91-c6b01520882a / ext4 errors=remount-ro 0 1
# swap was on /dev/sda4 during installation
UUID=ff983208-0921-45ac-84ea-e766da45e6da none swap sw 0 0

=================== sda5: Location of files loaded by Grub: ===================


10.9GB: boot/grub/core.img
11.1GB: boot/grub/grub.cfg
1.2GB: boot/initrd.img-2.6.35-22-generic
1.3GB: boot/initrd.img-2.6.35-24-generic
8.9GB: boot/initrd.img-2.6.35-25-generic
11.0GB: boot/vmlinuz-2.6.35-22-generic
11.0GB: boot/vmlinuz-2.6.35-24-generic
11.1GB: boot/vmlinuz-2.6.35-25-generic
8.9GB: initrd.img
1.3GB: initrd.img.old
11.1GB: vmlinuz
11.0GB: vmlinuz.old
=========================== Unknown MBRs/Boot Sectors/etc =======================

Unknown BootLoader on sda2

00000000 3e e0 a8 ea 82 d9 cb ba 2b 53 bb 7c 73 da 71 cf |>.......+S.|s.q.|
00000010 21 c1 c9 04 93 01 1e a9 14 21 3b 1d 23 5d 95 a3 |!........!;.#]..|
00000020 e1 2c 65 bb b6 da 6e f8 68 4d 46 bb e5 28 72 a9 |.,e...n.hMF..(r.|
00000030 46 dc fd 4c 45 fb 6c e5 63 d5 84 dd 03 5f a0 cd |F..LE.l.c...._..|
00000040 5a c0 f4 b3 2f 76 23 bf 3d 05 6f b8 29 dd d5 29 |Z.../v#.=.o.)..)|
00000050 05 49 ce 33 09 14 44 83 5a 81 07 ce 14 84 74 d6 |.I.3..D.Z.....t.|
00000060 c5 21 08 51 5a 13 e2 fd 9f d1 02 a8 ce e7 4a ed |.!.QZ.........J.|
00000070 9c 19 39 b3 0b 90 9a 0a 92 72 4e ed 93 3a 8c 3d |..9......rN..:.=|
00000080 de 95 4a 60 ae 5d ba 06 c0 c0 9c 3d 08 84 3d e0 |..J`.].....=..=.|
00000090 a5 07 ba c7 da 81 6e d7 05 b9 f0 d8 3b a9 53 9c |......n.....;.S.|
000000a0 3d 00 9c 1c 27 f4 06 ee a9 c7 bd c6 6a 90 db b2 |=...'.......j...|
000000b0 de 9f fb 6c fb 1b 53 d4 2c 77 bb 39 43 f0 f8 43 |...l..S.,w.9C..C|
000000c0 df d7 70 e0 1e f2 fb 9d c7 ca 6e 28 76 c7 bb c6 |..p.......n(v...|
000000d0 6a ce 74 a7 28 eb 93 90 06 f8 67 79 c0 08 4a d1 |j.t.(.....gy..J.|
000000e0 9d f9 84 8c 00 0d 78 0a dc 72 3b 7d 35 f1 a9 e8 |......x..r;}5...|
000000f0 2c 42 ba 45 f3 2d d9 ef 14 ea d4 6e b2 12 9e d8 |,B.E.-.....n....|
00000100 5b 06 41 4e ae 47 75 03 f9 66 c2 1a 22 78 00 5d |[.AN.Gu..f.."x.]|
00000110 a8 55 19 cf 7b 55 fd ce a4 a6 66 ee 7b b5 da b3 |.U..{U....f.{...|
00000120 9c b0 1d 4e 40 77 39 4c a3 ab 23 e0 ac 18 d0 d0 |...N@w9L..#.....|
00000130 53 a9 07 96 a9 3f 15 7d d1 66 b3 80 7d cf 42 e8 |S....?.}.f..}.B.|
00000140 7a 11 dd d8 76 07 a0 c7 55 93 0c fd 55 9d 93 df |z...v...U...U...|
00000150 09 81 60 d7 50 31 5c 1e f3 22 a5 ef 79 1a 18 00 |..`.P1\.."..y...|
00000160 98 c1 76 4e a8 d1 f5 13 a4 0c b0 aa 38 dd 0e 58 |..vN........8..X|
00000170 81 18 12 b9 ae 07 14 97 d0 f0 ce e4 f8 a3 24 08 |..............$.|
00000180 0c 0d 07 98 94 89 17 e5 87 71 8a 53 aa e1 72 67 |.........q.S..rg|
00000190 01 34 ec 4f 42 fa 0b 0b e8 8f 3f 68 19 5d e1 f7 |.4.OB.....?h.]..|
000001a0 80 0a b8 7c 8d 0a d3 dd e0 b5 69 b2 1a 10 bb 4a |...|......i....J|
000001b0 bb c3 39 d2 dc ab 95 40 4f 60 58 67 41 6e 00 19 |..9....@O`XgAn..|
000001c0 15 05 83 fe ff ff 02 00 00 00 00 c0 d4 01 00 00 |................|
000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200

Unknown BootLoader on sda3

00000000 33 c0 8e d0 bc 00 7c 8e c0 8e d8 be 00 7c bf 00 |3.....|......|..|
00000010 06 b9 00 02 fc f3 a4 50 68 1c 06 cb fb b9 04 00 |.......Ph.......|
00000020 bd be 07 80 7e 00 00 7c 0b 0f 85 0e 01 83 c5 10 |....~..|........|
00000030 e2 f1 cd 18 88 56 00 55 c6 46 11 05 c6 46 10 00 |.....V.U.F...F..|
00000040 b4 41 bb aa 55 cd 13 5d 72 0f 81 fb 55 aa 75 09 |.A..U..]r...U.u.|
00000050 f7 c1 01 00 74 03 fe 46 10 66 60 80 7e 10 00 74 |....t..F.f`.~..t|
00000060 26 66 68 00 00 00 00 66 ff 76 08 68 00 00 68 00 |&fh....f.v.h..h.|
00000070 7c 68 01 00 68 10 00 b4 42 8a 56 00 8b f4 cd 13 ||h..h...B.V.....|
00000080 9f 83 c4 10 9e eb 14 b8 01 02 bb 00 7c 8a 56 00 |............|.V.|
00000090 8a 76 01 8a 4e 02 8a 6e 03 cd 13 66 61 73 1c fe |.v..N..n...fas..|
000000a0 4e 11 75 0c 80 7e 00 80 0f 84 8a 00 b2 80 eb 84 |N.u..~..........|
000000b0 55 32 e4 8a 56 00 cd 13 5d eb 9e 81 3e fe 7d 55 |U2..V...]...>.}U|
000000c0 aa 75 6e ff 76 00 e8 8d 00 75 17 fa b0 d1 e6 64 |.un.v....u.....d|
000000d0 e8 83 00 b0 df e6 60 e8 7c 00 b0 ff e6 64 e8 75 |......`.|....d.u|
000000e0 00 fb b8 00 bb cd 1a 66 23 c0 75 3b 66 81 fb 54 |.......f#.u;f..T|
000000f0 43 50 41 75 32 81 f9 02 01 72 2c 66 68 07 bb 00 |CPAu2....r,fh...|
00000100 00 66 68 00 02 00 00 66 68 08 00 00 00 66 53 66 |.fh....fh....fSf|
00000110 53 66 55 66 68 00 00 00 00 66 68 00 7c 00 00 66 |SfUfh....fh.|..f|
00000120 61 68 00 00 07 cd 1a 5a 32 f6 ea 00 7c 00 00 cd |ah.....Z2...|...|
00000130 18 a0 b7 07 eb 08 a0 b6 07 eb 03 a0 b5 07 32 e4 |..............2.|
00000140 05 00 07 8b f0 ac 3c 00 74 09 bb 07 00 b4 0e cd |......<.t.......|
00000150 10 eb f2 f4 eb fd 2b c9 e4 64 eb 00 24 02 e0 f8 |......+..d..$...|
00000160 24 02 c3 49 6e 76 61 6c 69 64 20 70 61 72 74 69 |$..Invalid parti|
00000170 74 69 6f 6e 20 74 61 62 6c 65 00 45 72 72 6f 72 |tion table.Error|
00000180 20 6c 6f 61 64 69 6e 67 20 6f 70 65 72 61 74 69 | loading operati|
00000190 6e 67 20 73 79 73 74 65 6d 00 4d 69 73 73 69 6e |ng system.Missin|
000001a0 67 20 6f 70 65 72 61 74 69 6e 67 20 73 79 73 74 |g operating syst|
000001b0 65 6d 00 00 00 63 7b 9a 73 73 69 6e 67 00 0d 0a |em...c{.ssing...|
000001c0 42 4f 4f 54 4d 47 52 20 69 73 20 63 6f 6d 70 72 |BOOTMGR is compr|
000001d0 65 73 73 65 64 00 0d 0a 50 72 65 73 73 20 43 74 |essed...Press Ct|
000001e0 72 6c 2b 41 6c 74 2b 44 65 6c 20 74 6f 20 72 65 |rl+Alt+Del to re|
000001f0 73 74 61 72 74 0d 0a 00 8c a9 be d6 00 00 55 aa |start.........U.|
00000200

psusi
January 20th, 2011, 02:21 AM
I'm trying to change the Windows partition back to basic But can only use Ubuntu. Anything Like Partition Wizard I can use in ubuntu to convert the disk as the same in partition Wizard?

You can't convert a dynamic disk back to basic ( without reformting the whole thing ).

Old_Grey_Wolf
January 20th, 2011, 02:36 AM
You can't convert a dynamic disk back to basic ( without reformting the whole thing ).

Could freshmeat20 copy the contents of the Dynamic Partition somewhere, reformat to Basic, then copy back to the Basic partition? Would it be bootable then?

Old_Grey_Wolf
January 20th, 2011, 02:42 AM
I lost the key so if i lose it now I can't reinstall :{

What key did you loose? It appears you did not keep a backup of your system, is that correct?

freshmeat20
January 24th, 2011, 08:56 PM
my windows product key. And no I Dont have a backup device.