Indonesian Back|Track Team
brub opensuse dan backtrack - Printable Version

+- Indonesian Back|Track Team (https://www.indonesianbacktrack.or.id/forum)
+-- Forum: Penetration Testing Os (https://www.indonesianbacktrack.or.id/forum/forum-170.html)
+--- Forum: Backtrack (https://www.indonesianbacktrack.or.id/forum/forum-171.html)
+---- Forum: BackTrack 5 (https://www.indonesianbacktrack.or.id/forum/forum-74.html)
+----- Forum: Backtrack 5 Tanya Jawab (https://www.indonesianbacktrack.or.id/forum/forum-86.html)
+----- Thread: brub opensuse dan backtrack (/thread-1026.html)



brub opensuse dan backtrack - kentank - 10-26-2011

sob mau tanya nih, cara biar grub opensuse 11.4 n backtrack 5 bisa ada di kernel n jalan dengan normal gmn caranya ya?? ane udah cuba dengan cara grub walaupun kernel nya udah ada tapi system opensuse ndak bisa dijalanin, alias stak pass booting n ga nyampe ke loginnya?? ini sourcecode dari menu.lst n grub.cfg, caranya benerinnya gmn mohon bantuannya

Code:
menu.lst]



# Modified by YaST2. Last modification on Fri Oct  7 10:24:49 WIT 2011
# THIS FILE WILL BE PARTIALLY OVERWRITTEN by perl-Bootloader
# Configure custom boot parameters for updated kernels in /etc/sysconfig/bootloader

default 0
timeout 8
##YaST - generic_mbr
gfxmenu (hd0,5)/boot/message
##YaST - activate

###Don't change this comment - YaST2 identifier: Original name: linux###
title openSUSE 11.4 - 2.6.37.1-1.2
    root (hd0,5)
    kernel /boot/vmlinuz-2.6.37.1-1.2-default root=/dev/sda6 splash=silent quiet showopts vga=0x317
    initrd /boot/initrd-2.6.37.1-1.2-default

###Don't change this comment - YaST2 identifier: Original name: failsafe###
title Failsafe -- openSUSE 11.4 - 2.6.37.1-1.2
    root (hd0,5)
    kernel /boot/vmlinuz-2.6.37.1-1.2-default root=/dev/sda6 showopts apm=off noresume nosmp maxcpus=0 edd=off powersaved=off nohz=off highres=off processor.max_cstate=1 nomodeset x11failsafe vga=0x317
    initrd /boot/initrd-2.6.37.1-1.2-default

###Don't change this comment - YaST2 identifier: Original name: windows###
title Windows
    rootnoverify (hd0,0)
    chainloader +1

Code:
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
}
insmod ext2
set root='(hd0,3)'
search --no-floppy --fs-uuid --set 510596e2-1458-4ef0-ab52-a0e7853098a3
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=1024x768
  set gfxpayload=keep
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,3)'
search --no-floppy --fs-uuid --set 510596e2-1458-4ef0-ab52-a0e7853098a3
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.39.4' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,3)'
    search --no-floppy --fs-uuid --set 510596e2-1458-4ef0-ab52-a0e7853098a3
    linux    /boot/vmlinuz-2.6.39.4 root=UUID=510596e2-1458-4ef0-ab52-a0e7853098a3 ro   text splash vga=791
    initrd    /boot/initrd.img-2.6.39.4
}
menuentry 'Ubuntu, with Linux 2.6.39.4 (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,3)'
    search --no-floppy --fs-uuid --set 510596e2-1458-4ef0-ab52-a0e7853098a3
    echo    'Loading Linux 2.6.39.4 ...'
    linux    /boot/vmlinuz-2.6.39.4 root=UUID=510596e2-1458-4ef0-ab52-a0e7853098a3 ro single
    echo    'Loading initial ramdisk ...'
    initrd    /boot/initrd.img-2.6.39.4
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
    insmod ext2
    set root='(hd0,3)'
    search --no-floppy --fs-uuid --set 510596e2-1458-4ef0-ab52-a0e7853098a3
    linux16    /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod ext2
    set root='(hd0,3)'
    search --no-floppy --fs-uuid --set 510596e2-1458-4ef0-ab52-a0e7853098a3
    linux16    /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Professional (on /dev/sda1)" {
    insmod ntfs
    set root='(hd0,1)'
    search --no-floppy --fs-uuid --set 4034677434676C3A
    drivemap -s (hd0) ${root}
    chainloader +1
}
menuentry "openSUSE 11.4 - 2.6.37.1-1.2 (on /dev/sda5)" {
    insmod ext2
    set root='(hd0,5)'
    search --no-floppy --fs-uuid --set c16a1938-55da-4514-878a-69785b8de681
    linux /boot/vmlinuz-2.6.37.1-1.2-default root=/dev/sda6 splash=silent quiet showopts vga=0x317
    initrd /boot/initrd-2.6.37.1-1.2-default
}
menuentry "Failsafe -- openSUSE 11.4 - 2.6.37.1-1.2 (on /dev/sda5)" {
    insmod ext2
    set root='(hd0,5)'
    search --no-floppy --fs-uuid --set c16a1938-55da-4514-878a-69785b8de681
    linux /boot/vmlinuz-2.6.37.1-1.2-default root=/dev/sda6 showopts apm=off noresume nosmp maxcpus=0 edd=off powersaved=off nohz=off highres=off processor.max_cstate=1 nomodeset x11failsafe vga=0x317
    initrd /boot/initrd-2.6.37.1-1.2-default
}
### 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 ###

mohon bantuannya kawan2 sekalian


RE: brub opensuse dan backtrack - iKONspirasi - 10-26-2011

ketik di konsole update-grub2


RE: brub opensuse dan backtrack - kentank - 10-26-2011

ga ngepek sob


RE: brub opensuse dan backtrack - kentank - 10-26-2011

opensuse 11.4 ga ada livenya bukan???


RE: brub opensuse dan backtrack - jurank_dankkal - 10-26-2011

opensuse ada livecd kq bro...


RE: brub opensuse dan backtrack - Junior Riau - 11-06-2011

bisa dibikin kok livecd/usb nya,ane pernah buat waktu belajar SOD Tongue

CMIIW


RE: brub opensuse dan backtrack - cassaprodigy - 11-07-2011

btw ini bukan fixes tapi question