εχω 1 partition στο δισκο μου με win 7,οταν τα επιλεγω μεσω grub δεν εμφανιζεται τιποτα στην οθονη μου
οταν κοιταω το δισκο μου μεσω gparted εχει διαφορες πληροφοριες και τι λεξη ΜΗ ΠΡΟΣΑΡΤΙΜΣΜΕΝΟ χρειαζεται να κανω κατι;

sudo fdisk -l
sudo parted -l
sudo lshw -businfo | grep scsi
cat /boot/grub/grub.cfgΤον κώδικα τον βάζουμε μέσα σε [cοde]κώδικας[/cοde]. Επιλέγουμε το κείμενο και πατάμε το κουμπάκι
.
sudo update-grub
Learner έγραψε:
Ίσως απλά χρειάζεται να τρέξεις έναγια να διορθωθεί.
- Κώδικας: Επιλογή όλων
sudo update-grub

δυστυχώς πριν παρω την απαντηση σας εκανα επανεγκατασταση προφανως ειχε διαγραφει το grub
επειδη εχω 3 λειτουργικα οταν μπαινω στο μενου του grub κατα την εκκινηση και επιλεγω αλλο λειτουργικο δεν μου το φορτωνει
το καθε λειτουργικο θελει ξεχωριστο bootloader; η ενας bootloader για ολα τα λειτουργικα;
τα εχω μπερδεψει με αυτο το θεμα 
Τον κώδικα βάζουμε ανάμεσα σε [code] , όχι τις δημοσιεύσεις @hgf
Δηλαδή , εντολές τερματικού , αποτελέσματα τερματικού κλπ.

Learner έγραψε:cat /boot/grub/grub.cfg
hlias@fou:~$ sudo fdisk -l
[sudo] password for hlias:
Sorry, try again.
[sudo] password for hlias:
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x17df17de
Device Boot Start End Blocks Id System
/dev/sda1 63 16370234 8185086 1b Hidden W95 FAT32
/dev/sda2 * 16370235 83967999 33798882+ 7 HPFS/NTFS/exFAT
/dev/sda3 83970046 287088639 101559297 5 Extended
/dev/sda5 83970048 91782547 3906250 83 Linux
/dev/sda6 123031552 210919423 43943936 83 Linux
/dev/sda7 210921472 214824959 1951744 82 Linux swap / Solaris
/dev/sda8 214827008 224589823 4881408 83 Linux
/dev/sda9 93736960 103501823 4882432 83 Linux
/dev/sda10 228497408 287088639 29295616 83 Linux
Partition table entries are not in disk order
hlias@fou:~$ sudo parted -l
Model: ATA ST3160815AS (scsi)
Disk /dev/sda: 160GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 32,3kB 8382MB 8382MB primary fat32 hidden
2 8382MB 43,0GB 34,6GB primary ntfs boot
3 43,0GB 147GB 104GB extended
5 43,0GB 47,0GB 4000MB logical ext4
9 48,0GB 53,0GB 5000MB logical ext4
6 63,0GB 108GB 45,0GB logical ext4
7 108GB 110GB 1999MB logical linux-swap(v1)
8 110GB 115GB 4999MB logical ext4
10 117GB 147GB 30,0GB logical ext4
hlias@fou:~$ sudo lshw -businfo | grep scsi
pci@0000:00:1f.2 scsi0 storage N10/ICH7 Family SATA Controller [IDE mode]
scsi@0:0.0.0 /dev/sda disk 160GB ST3160815AS
scsi@0:0.0.0,1 /dev/sda1 volume 7993MiB Windows FAT volume
scsi@0:0.0.0,2 /dev/sda2 volume 32GiB Windows NTFS volume
scsi@0:0.0.0,3 /dev/sda3 volume 96GiB Extended partition
scsi@0:0.1.0 /dev/cdrom disk CDDVDW SH-S223F
hlias@fou:~$ cat /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 ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root bb8d9b24-4208-4942-8d5a-6a164fe05f70
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=auto
load_video
insmod gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root bb8d9b24-4208-4942-8d5a-6a164fe05f70
set locale_dir=($root)/boot/grub/locale
set lang=el_GR
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 ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
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, με Linux 3.2.0-30-generic-pae' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root bb8d9b24-4208-4942-8d5a-6a164fe05f70
linux /boot/vmlinuz-3.2.0-30-generic-pae root=UUID=bb8d9b24-4208-4942-8d5a-6a164fe05f70 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-30-generic-pae
}
menuentry 'Ubuntu, με Linux 3.2.0-30-generic-pae (λειτουργία ανάκτησης)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root bb8d9b24-4208-4942-8d5a-6a164fe05f70
echo 'Φόρτωση Λίνουξ 3.2.0-30-generic-pae ...'
linux /boot/vmlinuz-3.2.0-30-generic-pae root=UUID=bb8d9b24-4208-4942-8d5a-6a164fe05f70 ro recovery nomodeset
echo 'Φόρτωση αρχικού εικονικού δίσκου (ramdisk) ...'
initrd /boot/initrd.img-3.2.0-30-generic-pae
}
### 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,msdos8)'
search --no-floppy --fs-uuid --set=root bb8d9b24-4208-4942-8d5a-6a164fe05f70
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root bb8d9b24-4208-4942-8d5a-6a164fe05f70
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows NT/2000/XP (loader) (on /dev/sda1)" --class windows --class os {
insmod part_msdos
insmod fat
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 44D8-5CD9
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry "Microsoft Windows XP Professional (on /dev/sda2)" --class windows --class os {
insmod part_msdos
insmod ntfs
set root='(hd0,msdos2)'
search --no-floppy --fs-uuid --set=root 01CBE287312B8870
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry "Ubuntu, με Linux 3.2.0-26-generic-pae (on /dev/sda5)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set=root a6086a09-e28f-4a8c-b8e3-d085aadb4971
linux /boot/vmlinuz-3.2.0-26-generic-pae root=UUID=a6086a09-e28f-4a8c-b8e3-d085aadb4971 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-26-generic-pae
}
menuentry "Ubuntu, με Linux 3.2.0-26-generic-pae (λειτουργία ανάκτησης) (on /dev/sda5)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set=root a6086a09-e28f-4a8c-b8e3-d085aadb4971
linux /boot/vmlinuz-3.2.0-26-generic-pae root=UUID=a6086a09-e28f-4a8c-b8e3-d085aadb4971 ro recovery nomodeset
initrd /boot/initrd.img-3.2.0-26-generic-pae
}
### 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 ###
hlias@fou:~$ cat /boot/grub/grub.cfgcat /boot/grub/grub.cfgcat /boot/grub/grub.cfg

hgf έγραψε:πριν παρω την απαντηση σας εκανα επανεγκατασταση
