How to recover x86 Solaris 10 u10 boot record/grub menu overwritten by Debian 9?


 
Thread Tools Search this Thread
Operating Systems Solaris How to recover x86 Solaris 10 u10 boot record/grub menu overwritten by Debian 9?
# 1  
Old 01-07-2019
How to recover x86 Solaris 10 u10 boot record/grub menu overwritten by Debian 9?

I installed x86 Solaris 10 update 10 after Windows XP, later I removed xp and installed Debian 9 stretch on the same partition but, Debian couldn't find any other os so it deleted Solaris 10 grub or did something like that I couldn't got.

I thought I would be able to recover the lost record by editing Debian's grub but I failed due to its complicated grub so I reinstalled Solaris grub using installgrub and installgrub was successful but Debian still boots and I can't find Solaris on Debian grub menu neither Solaris boots with its grub though I see the Solaris partition through fdisk from Debian as Debian fdisk shows /dev/sda1 is linux partition and /dev/sda2 is solaris partition.

Now I'm planning to install Slackware with the hope that its lilo would detect Solaris but, I'm not sure.

How can I recover Solaris grub?
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Boot Solaris 10 U1 for x86 from DVD

Is it possible to boot an existing Solaris 10 update 1 from boot dvd that I run on p3(1 ghz -512 mb ram). I have got a dual boot sys - the other os is win xp that I need to reinstall but that removes the mbr so, is there any way to recover mbr after the installation of xp? Thanks. (3 Replies)
Discussion started by: vectrum
3 Replies

2. Solaris

Can't have the GRUB menu for solaris x86 installation

Dears, I'm trying to install solaris x86 on sun x4170 M2 I started connecting consol to the machine but when I do the reset /SYS command nothing changed I can see that the /SYS is powered on but I can get the GRUB menu to start the installation of the solaris. the solaris DVD is already... (2 Replies)
Discussion started by: engwzwz
2 Replies

3. Solaris

Solaris x86 installation using jumpstart does not local boot ( boot from hdd)

I am trying to install Solaris x86 using the Jumpstart server. I run the add_install_client command with appropriate options, and reboot my x86 Target box. The installation starts fine and unattended. After the installation completes and the target goes for a re-boot, it does not boot from the HDD... (9 Replies)
Discussion started by: hemalsid
9 Replies

4. Solaris

x86 Solaris 8 does not boot.

Hello, First of all I must say that I have 0 solaris experience and only some average linux knowledge. One of my friends came to ask for my help today with a Solaris 8 x86 station that would not boot. The system is a pentium 4 1.6 ghz, 1gb ram, 40 gb hdd. When I turn it on, I get ... (3 Replies)
Discussion started by: gogusrl
3 Replies

5. UNIX for Dummies Questions & Answers

How to get grub to launch isolinux/syslinux boot menu.

Hello, I'm trying to get a multi-boot setup going for a USB. I have different vfat-32 partitions I have copied ISOs of several linux distros. The first one I installed using unetbootin, which works great and uses syslinux, but syslinux can't boot other partitions. So, I have grub... (1 Reply)
Discussion started by: Narnie
1 Replies

6. Red Hat

Server won't boot up ... no GRUB menu

I dont know what the heck happen but one of our DBAs was working on a cluster for oracle. Rebooted the box and viola, the OS won't load. After the POST message, I get a blinking cursor on the upper left hand corner. Doesn't even say "GRUB" or anything, it just blinks. I tried going into rescue... (1 Reply)
Discussion started by: sdotsen
1 Replies

7. Solaris

Solaris X86 grub boot menu

I have a x4200 m2 that I've installed Solaris 10 on. I've created a raid 1 mirror using disk0 and disk1. I'm trying to add the mirror bootblk to the grub menu so in case of a failure of disk0, I can simply boot from the mirrored disk1. I'm looking for the syntax to add the alternate boot path to... (5 Replies)
Discussion started by: gonzotonka
5 Replies

8. Solaris

Solaris 10 x86 Installation Will Not Boot From CD Disks

Problem: Am trying to install Solaris 10 x86 on a desktop PC (PC details unspecified) from downloaded iso images (5 in all) on 5 CD disks. These were downloaded from the Sun website and unzipped. I install Disk 1of 5 into the CD drive and then restart the machine, thinkng that it will launch... (5 Replies)
Discussion started by: RobSand
5 Replies

9. UNIX for Dummies Questions & Answers

Grub Loader entry overwritten

Hello, One of my frend had a problem. He had Windows XP installed on his system. Then he installed Red Hat Linux 8.0 in one of the partitions. After some time his XP got corrupt and then he reinstalled Windows XP. This over wrote the Grub loader entry, and due to this the grub loader is not... (2 Replies)
Discussion started by: rahulrathod
2 Replies
Login or Register to Ask a Question
update-grub(8)						      System Manager's Manual						    update-grub(8)

NAME
update-grub - program to generate GRUB's menu.lst file SYNOPSIS
update-grub DESCRIPTION
update-grub is a program used to generate the menu.lst file used by the grub bootloader. It works by looking in /boot for all files which start with "vmlinuz-". They will be treated as kernels, and grub menu entries will be created for each. It will also create the initial menu.lst if none exists, after prompting the user. It will also add initrd lines for ramdisk images found with the same version as kernels found. e.g. /boot/vmlinuz-2.4.5 and /boot/initrd-2.4.5 will cause a line of "initrd=/boot/initrd-2.4.5 or similar to be added for the ker- nel entry in the menu.lst. After update-grub has been run for the first time, the user is required to edit the generated menu.lst. The user must set the two options update-grub uses. Then re-run the update-grub script to update the menu.lst file using the default's that have been set. These are the options passed to the linux kernel: # kopt=root=/dev/hda1 ro Everything after "kopt=" is passed to the kernel as parameters. See bootparam(7) for more information. This is the grub device from which grub loads the kernel: # groot=(hd0,1) (hd0,1) is a partition in grub notation. See grub(8) for more information. This option controls if grub should create the alternative boot options in the menu entries # alternative=true # alternative=false This option controls if grub should lock the alternative boot options see grub(8) for more information. # lockalternative=true # lockalternative=false This option controls if grub should lock the old kernels. # lockold=true # lockold=false This options controls what is used for the alternative boot options, multiple altoptions lines are allowed. # altoptions=(some description) some kernel command line options # altoptions=(recovery option) single The description is placed in '()' and the kernel command line options follow that. # updatedefault=true # updatedefault=false This option controls if grub should update the default entry to keep booting the same kernel even if a new one is installed. The update-grub script can be ran automagically from the /etc/kernel-img.conf file by adding the following lines: postinst_hook = update-grub postrm_hook = update-grub do_bootloader = no For further information related to /etc/kernel-img.conf, see the manpage kernel-img.conf(5). SEE ALSO
grub(8), grub-install(8), kernel-img.conf(5) (contained in the kernel-package package), bootparam(7). The full documentation for grub is maintained as a Texinfo manual in the grub-legacy-doc package. If the info and grub programs are prop- erly installed at your site, the command info grub should give you access to the complete manual. AUTHOR
This manual page was written by Jason Thomas <jason@debian.org>, for the Debian GNU/Linux system (but may be used by others). Jason Thomas June 18, 2001 update-grub(8)