[Çözüldü] Ubuntuyu kaldırmak hakkında

Başlatan Farklı, 22 Mayıs 2008 - 17:26:40

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

Dilek

açılışta vista var ama seçtiğim zaman "try (hd0.0) NTFS5" diye bi hata veriyo ve tekrar grup menüsüne dönüyo tekrar giriyorum gene aynı gene aynı :(
benim bu işlemi yapmadan önceki açılışım şu şekilde;

ubuntu 8.04
ubuntu 8.04(recovery mode)
ubuntu 8.04(mem-test)
windows vista os

buradan vistayı seçip;

windows vista
ubuntu

seçeneği karşıma gelirdi.Şimdi windowsun içine gömülü olan ubuntu 10.04 açılışta en başta ve ben sadece onu kullanabiliyorum..





eribol

Galiba şu anda ubuntu grubu MBR'ye eklenmiş. Zira ben kullandığım zamanda açlışta sadece Vista ve Ubuntu vardı. Ubuntuyu seçince bu seçenekler ekrana geliyordu. Elinizde LiveCd var ise onunla sistemi açıp yeniden grub2 kurulumuna göz atabilirsiniz. Yine LiveCd ile sistemi açıp aşağıdaki çıktıları ekleyebilirseniz iyi olur.sudo blkidsudo fdisk -lcat /boot/grub/grub.cfg

Dilek

maalesef elimde cd yok başka çözüm yolları öneremez misiniz ?

eribol

Ubuntuyu açıp aynı çıktıları verebilirsiniz sanırım.

Dilek

#29
dilek@ubuntu:~$ sudo blkid
[sudo] password for dilek:
/dev/loop0: UUID="b74a1177-d9b8-4ada-a065-7740f522ada7" TYPE="ext4"
/dev/sda1: LABEL="VistaOS" UUID="7EB891AFB8916685" TYPE="ntfs"
/dev/sda5: LABEL="DATA" UUID="3AB494EEB494ADBF" TYPE="ntfs"
/dev/sda6: UUID="c7653c36-e3f0-4129-b0bf-72b9dd205786" TYPE="swap"
/dev/sda7: UUID="22bdacba-6454-4dd1-b964-4b224f5fcfcd" SEC_TYPE="ext2" TYPE="ext3"
dilek@ubuntu:~$ sudo fdisk -l

Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x4f45b6c0

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1       18241   146519040    7  HPFS/NTFS
/dev/sda2           18241       30401    97675200+   f  W95 Ext'd (LBA)
/dev/sda5           18242       27802    76798732+   7  HPFS/NTFS
/dev/sda6           27803       27933     1052226   82  Linux swap / Solaris
/dev/sda7           27934       30401    19824178+  83  Linux
dilek@ubuntu:~$ cat /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
  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
}
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 ###
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/10_lupin ###
menuentry "Ubuntu, Linux 2.6.32-23-generic" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-23-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro   quiet splash
initrd /boot/initrd.img-2.6.32-23-generic
}
menuentry "Ubuntu, Linux 2.6.32-23-generic (recovery mode)" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-23-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro single
initrd /boot/initrd.img-2.6.32-23-generic
}
menuentry "Ubuntu, Linux 2.6.32-21-generic" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-21-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro   quiet splash
initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry "Ubuntu, Linux 2.6.32-21-generic (recovery mode)" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-21-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro single
initrd /boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_lupin ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows Vista (loader) (on /dev/sda1)" {
insmod ntfs
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 7eb891afb8916685
chainloader +1
}
menuentry "Ubuntu 8.10, kernel 2.6.27-7-generic (on /dev/sda7)" {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set 22bdacba-6454-4dd1-b964-4b224f5fcfcd
linux /boot/vmlinuz-2.6.27-7-generic root=UUID=22bdacba-6454-4dd1-b964-4b224f5fcfcd ro quiet splash
initrd /boot/initrd.img-2.6.27-7-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-7-generic (recovery mode) (on /dev/sda7)" {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set 22bdacba-6454-4dd1-b964-4b224f5fcfcd
linux /boot/vmlinuz-2.6.27-7-generic root=UUID=22bdacba-6454-4dd1-b964-4b224f5fcfcd ro single
initrd /boot/initrd.img-2.6.27-7-generic
}
menuentry "Ubuntu 8.10, memtest86+ (on /dev/sda7)" {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set 22bdacba-6454-4dd1-b964-4b224f5fcfcd
linux /boot/memtest86+.bin
}
### 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 ###
dilek@ubuntu:~$

ubuntuki lilith

Uçbirim çıktılarını lütfen gülenyüzlerin üzerindeki # simgesine basınca çıkan etiketin arasına yapıştırarark iletinizi tekrar düzenler misiniz? Görüldüğü gibi iletiniz böyle çok yer kaplıyor.

Dilek

dilek@ubuntu:~$ sudo blkid
[sudo] password for dilek:
/dev/loop0: UUID="b74a1177-d9b8-4ada-a065-7740f522ada7" TYPE="ext4"
/dev/sda1: LABEL="VistaOS" UUID="7EB891AFB8916685" TYPE="ntfs"
/dev/sda5: LABEL="DATA" UUID="3AB494EEB494ADBF" TYPE="ntfs"
/dev/sda6: UUID="c7653c36-e3f0-4129-b0bf-72b9dd205786" TYPE="swap"
/dev/sda7: UUID="22bdacba-6454-4dd1-b964-4b224f5fcfcd" SEC_TYPE="ext2" TYPE="ext3"
dilek@ubuntu:~$ sudo fdisk -l

Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x4f45b6c0

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1       18241   146519040    7  HPFS/NTFS
/dev/sda2           18241       30401    97675200+   f  W95 Ext'd (LBA)
/dev/sda5           18242       27802    76798732+   7  HPFS/NTFS
/dev/sda6           27803       27933     1052226   82  Linux swap / Solaris
/dev/sda7           27934       30401    19824178+  83  Linux
dilek@ubuntu:~$ cat /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
  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
}
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 ###
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/10_lupin ###
menuentry "Ubuntu, Linux 2.6.32-23-generic" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-23-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro   quiet splash
initrd /boot/initrd.img-2.6.32-23-generic
}
menuentry "Ubuntu, Linux 2.6.32-23-generic (recovery mode)" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-23-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro single
initrd /boot/initrd.img-2.6.32-23-generic
}
menuentry "Ubuntu, Linux 2.6.32-21-generic" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-21-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro   quiet splash
initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry "Ubuntu, Linux 2.6.32-21-generic (recovery mode)" {
insmod ntfs
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 3ab494eeb494adbf
loopback loop0 /ubuntu/disks/root.disk
set root=(loop0)
linux /boot/vmlinuz-2.6.32-21-generic root=/dev/sda5 loop=/ubuntu/disks/root.disk ro single
initrd /boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_lupin ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows Vista (loader) (on /dev/sda1)" {
insmod ntfs
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 7eb891afb8916685
chainloader +1
}
menuentry "Ubuntu 8.10, kernel 2.6.27-7-generic (on /dev/sda7)" {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set 22bdacba-6454-4dd1-b964-4b224f5fcfcd
linux /boot/vmlinuz-2.6.27-7-generic root=UUID=22bdacba-6454-4dd1-b964-4b224f5fcfcd ro quiet splash
initrd /boot/initrd.img-2.6.27-7-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-7-generic (recovery mode) (on /dev/sda7)" {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set 22bdacba-6454-4dd1-b964-4b224f5fcfcd
linux /boot/vmlinuz-2.6.27-7-generic root=UUID=22bdacba-6454-4dd1-b964-4b224f5fcfcd ro single
initrd /boot/initrd.img-2.6.27-7-generic
}
menuentry "Ubuntu 8.10, memtest86+ (on /dev/sda7)" {
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set 22bdacba-6454-4dd1-b964-4b224f5fcfcd
linux /boot/memtest86+.bin
}
### 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 ###
dilek@ubuntu:~$

eribol

Herhangi bir sorun görünmüyor. Bu konuda benim söyleyebileceğim birşey kalmıyor maalesef. Başıma bir defa geldi ve ben format attım. Varsa bir başkasının önerisi onu beklemelisiniz.

Dilek


bytan

Şu an easybcd yapması gerekeni yapmış gibi görünüyor. Ubuntu grub'unu mbr'den kaldırıp yerine win önyükleyicisini eklemiş. Ancak bir fark var, o da wubi. Xp zamanlarında bir boot.ini dosyası olurdu ve içerisinde yazılı olanlar bu ekranda görünürdü, örneğin xp mi wubi ubuntu mu diye sorardı. Tahminim, easybcd, vista'da bulunan bu dosyada veya muadili dosyada bir düzenleme yaptı. Yapman gereken bu dosyayı bulup win seçeneğinin de ekranda görünmesini sağlamak.
Umut en büyük kötülüktür; işkenceyi uzatır. - F.N.


Bir şey ne ise odur, bu kadar. Öyleyse, iki şey arasında bağdaşıklık varsa, bu aralarında iletişim kuruyorlar demek değildir.
"... kavrayışını bilgi ile derinleştir ..."
PF @ ST

Dilek

Alıntı yapılan: bytan - 24 Temmuz 2010 - 16:38:50
Yapman gereken bu dosyayı bulup win seçeneğinin de ekranda görünmesini sağlamak.

ama ben vistaya giremiyorum ki bu dosyaya nasıl erişebilirim :(

bytan

Wubi üzerinde erişip yapardın ama biraz google'a baktım,  Vista'da boot.ini benzeri bir dosya yokmuş. İş win tarafında kaldığından pek bir şey de diyemiyorum. Bir şekilde kurtarma cd'si falan bulman ve bunu kullanman lazım.
Umut en büyük kötülüktür; işkenceyi uzatır. - F.N.


Bir şey ne ise odur, bu kadar. Öyleyse, iki şey arasında bağdaşıklık varsa, bu aralarında iletişim kuruyorlar demek değildir.
"... kavrayışını bilgi ile derinleştir ..."
PF @ ST

Dilek

kurtarma cd si var elimde onunla denicem teşekkürler...