|
[Sponsors] |
correction of Grub after installing Windows XP and 8 |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
December 2, 2013, 15:54 |
correction of Grub after installing Windows XP and 8
|
#1 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Hi all after a while!
I've read many instructions about correcting boot list after installing Windows after Linux(here Ubuntu 12.04) like this link:http://www.dedoimedo.com/computers/grub.html but in doing this command: Code:
I want to know where boot loader file is on the hard disk(whats the number of partition exactly) this is the error: Code:
grub> find /boot/grub/stage1 find /boot/grub/stage1 Error 15: File not found grub>
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. Last edited by wyldckat; December 8, 2013 at 15:56. Reason: removed text format of whited-out code |
|
December 8, 2013, 16:15 |
|
#2 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
Why didn't you install Windows XP and 8 first and Ubuntu as the last one? It would have avoided having this problem. Anyway, I guess it's too late now. OK, so lets try and fix this. In theory, since you are using Ubuntu 12.04, you are no longer using Grub version 1, you are using Grub version 2. Therefore, that page is not the correct one to follow, it's the other one that it refers to at the beginning. Problem is that the other page is really complex to follow. Therefore, you should follow these instructions: http://howtoubuntu.org/how-to-repair...ubuntu-live-cd Best regards, Bruno |
|
December 12, 2013, 09:17 |
|
#3 | |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Quote:
in the site a software is mentioned as above,but has not described how to use it.I'm worry about choosing an incorrect partition and some problems originate again. -------------------- I installed Grarted and used all the directions, but now only Ubuntu boots not the windows's,how to correct grub now?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
||
December 15, 2013, 11:03 |
|
#5 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Hi Bruno,
its the content of the file grub.cfg Code:
# # 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,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 if loadfont /usr/share/grub/unicode.pf2 ; then set gfxmode=auto load_video insmod gfxterm insmod part_msdos insmod ext2 set root='(hd0,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 set locale_dir=($root)/boot/grub/locale set lang=en_US 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, with Linux 3.2.0-54-generic' --class ubuntu --class gnu-linux --class gnu --class os { recordfail gfxmode $linux_gfx_mode insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 linux /boot/vmlinuz-3.2.0-54-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro quiet splash $vt_handoff initrd /boot/initrd.img-3.2.0-54-generic } menuentry 'Ubuntu, with Linux 3.2.0-54-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 echo 'Loading Linux 3.2.0-54-generic ...' linux /boot/vmlinuz-3.2.0-54-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.2.0-54-generic } submenu "Previous Linux versions" { menuentry 'Ubuntu, with Linux 3.2.0-23-generic' --class ubuntu --class gnu-linux --class gnu --class os { recordfail gfxmode $linux_gfx_mode insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 linux /boot/vmlinuz-3.2.0-23-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro quiet splash $vt_handoff initrd /boot/initrd.img-3.2.0-23-generic } menuentry 'Ubuntu, with Linux 3.2.0-23-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 echo 'Loading Linux 3.2.0-23-generic ...' linux /boot/vmlinuz-3.2.0-23-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.2.0-23-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,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 linux16 /boot/memtest86+.bin } menuentry "Memory test (memtest86+, serial console 115200)" { insmod part_msdos insmod ext2 set root='(hd0,msdos11)' search --no-floppy --fs-uuid --set=root caa220a7-7659-4617-abd8-5ee58b348d10 linux16 /boot/memtest86+.bin console=ttyS0,115200n8 } ### END /etc/grub.d/20_memtest86+ ### ### BEGIN /etc/grub.d/30_os-prober ### menuentry "Windows 8 (loader) (on /dev/sda1)" --class windows --class os { insmod part_msdos insmod ntfs set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 5000034600033310 drivemap -s (hd0) ${root} chainloader +1 } ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### ### END /etc/grub.d/30_uefi-firmware ### ### 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 ###
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
December 15, 2013, 12:02 |
|
#6 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
You should at least be able to see an option in the boot menu, called "Windows 8 (loader) (on /dev/sda1)". That option should be able to boot Windows 8.
As for Windows XP, the grub updater was not able to pick it up. More specifically "/etc/grub.d/30_os-prober" was not able to see Windows XP. This seems to be related to the other situation you mentioned before: http://www.cfd-online.com/Forums/lou...-boundary.html Problem is that I'm too tired to search and imagine which solution will work best. All I know is that this kind of problem is not something completely new. |
|
December 19, 2013, 09:46 |
|
#7 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Hi Bruno,
It hasn't resolved yet
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
January 1, 2014, 17:01 |
|
#8 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
Let's see if this will work:
Now, since there is a very high probability that either one of the Windows versions might not boot, here's what I've done to get the Windows 8 installation up and running again. Partial reference: http://askubuntu.com/a/263931
Best regards, Bruno Last edited by wyldckat; January 1, 2014 at 17:26. Reason: Done writing down what I know and tested. |
|
January 2, 2014, 13:12 |
|
#9 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
dear Bruno thanks for your valuable effort and help,but I think it be better to work as this way and manage to correct the boot list without need to super grub CD after my work finished.I don't need another bad chance again.:|
I'll test those later. thanks a lot.
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
January 3, 2014, 12:35 |
|
#10 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Dear Bruno, I like to correct the boot menu now. but a little question.I have forgotten how to open the text files like 40_custom for editing in sudo mode
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
January 4, 2014, 20:27 |
|
#11 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
You can use nano: Code:
nano /etc/grub.d/40_custom Then use Ctrl+X to exit, which it will ask if you want to save or not, to which you use the "y" key for Yes and "n" key for No. If "y", it will ask to which file, where you simply have to press the Enter key for it to save to the current file. Best regards, Bruno |
|
January 5, 2014, 07:16 |
|
#12 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
dear bruno,
is this OK? Code:
#!/bin/sh exec tail -n +3 $0 # 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. menuentry "Microsoft Windows XP 32-bit (on /dev/sda1)" --class windows --class $ insmod part_msdos insmod ntfs set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root F84026334025F8D0 drivemap -s (hd0) ${root} chainloader +1 } menuentry "Microsoft Windows 8 (on /dev/sda4)" --class windows --class $ insmod part_msdos insmod ntfs set root='(hd0,msdos4)' search --no-floppy --fs-uuid --set=root 4E4C5FC94C5FAA8B drivemap -s (hd0) ${root} chainloader +1 } ----------------------------------------------------------- dear Bruno,I did it and boot from hard disk,but only linux booted automatically and the list for boot didn't displayed at all.what may be wrong?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
January 5, 2014, 08:52 |
|
#13 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
Two details:
Then check the content of the file "/boot/grub/grub.cfg" and search for the block of code that starts with: Code:
### BEGIN /etc/grub.d/40_custom ### Best regards, Bruno |
|
January 5, 2014, 14:05 |
|
#14 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
dear Bruno its a part of grub.cfg contains the line you said,it seems that grub isn't updated:
Code:
### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### ### END /etc/grub.d/30_uefi-firmware ### ### 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 ### --class os { you are right.I copied it from the terminal. this is the output of update-grub Code:
Searching for GRUB installation directory ... found: /boot/grub Searching for default file ... found: /boot/grub/default Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst Searching for splash image ... none found, skipping ... Found kernel: /boot/vmlinuz-3.2.0-54-generic Found kernel: /boot/vmlinuz-3.2.0-23-generic Found GRUB 2: /boot/grub/core.img Found kernel: /boot/memtest86+.bin Updating /boot/grub/menu.lst ... done
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. Last edited by wyldckat; January 5, 2014 at 15:28. |
|
January 5, 2014, 15:36 |
|
#15 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
It took me some considerable time to test the steps I wrote on the other post and to review them to ensure that everything was correctly tested and written. Please do not make unnecessary adjustments to the instructions I carefully wrote
Check the contents of the file "/boot/grub/menu.lst", as indicated by update-grub. It might be different from the file I told you to look at, namely "/boot/grub/grub.cfg", even though they should be identical. In addition, double-check what those two files are, by running as root: Code:
ls -l /boot/grub/grub.cfg ls -l /boot/grub/menu.lst Best regards, Bruno |
|
January 5, 2014, 16:46 |
|
#16 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
dear Bruno,its the contents of menu.lst file:
Code:
# menu.lst - See: grub(8), info grub, update-grub(8) # grub-install(8), grub-floppy(8), # grub-md5-crypt, /usr/share/doc/grub # and /usr/share/doc/grub-legacy-doc/. ## default num # Set the default entry to the entry number NUM. Numbering starts from 0, and # the entry number 0 is the default if the command is not used. # # You can specify 'saved' instead of a number. In this case, the default entry # is the entry saved with the command 'savedefault'. # WARNING: If you are using dmraid do not use 'savedefault' or your # array will desync and will not let you boot your system. default 0 ## timeout sec # Set a timeout, in SEC seconds, before automatically booting the default entry # (normally the first entry defined). timeout 3 ## hiddenmenu # Hides the menu by default (press ESC to see the menu) hiddenmenu # Pretty colours #color cyan/blue white/blue ## password ['--md5'] passwd # If used in the first section of a menu file, disable all interactive editing # control (menu entry editor and command-line) and entries protected by the # command 'lock' # e.g. password topsecret # password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/ # password topsecret # # examples # # title Windows 95/98/NT/2000 # root (hd0,0) # makeactive # chainloader +1 # # title Linux # root (hd0,1) # kernel /vmlinuz root=/dev/hda2 ro # # # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST ### BEGIN AUTOMAGIC KERNELS LIST ## lines between the AUTOMAGIC KERNELS LIST markers will be modified ## by the debian update-grub script except for the default options below ## DO NOT UNCOMMENT THEM, Just edit them to your needs ## ## Start Default Options ## ## default kernel options ## default kernel options for automagic boot options ## If you want special options for specific kernels use kopt_x_y_z ## where x.y.z is kernel version. Minor versions can be omitted. ## e.g. kopt=root=/dev/hda1 ro ## kopt_2_6_8=root=/dev/hdc1 ro ## kopt_2_6_8_2_686=root=/dev/hdc2 ro # kopt=root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro ## default grub root device ## e.g. groot=(hd0,0) # groot=caa220a7-7659-4617-abd8-5ee58b348d10 ## should update-grub create alternative automagic boot options ## e.g. alternative=true ## alternative=false # alternative=true ## should update-grub lock alternative automagic boot options ## e.g. lockalternative=true ## lockalternative=false # lockalternative=false ## additional options to use with the default boot option, but not with the ## alternatives ## e.g. defoptions=vga=791 resume=/dev/hda5 # defoptions=quiet splash ## should update-grub lock old automagic boot options ## e.g. lockold=false ## lockold=true # lockold=false ## Xen hypervisor options to use with the default Xen boot option # xenhopt= ## Xen Linux kernel options to use with the default Xen boot option # xenkopt=console=tty0 ## altoption boot targets option ## multiple altoptions lines are allowed ## e.g. altoptions=(extra menu suffix) extra boot options ## altoptions=(recovery) single # altoptions=(recovery mode) single ## controls how many kernels should be put into the menu.lst ## only counts the first occurence of a kernel, not the ## alternative kernel options ## e.g. howmany=all ## howmany=7 # howmany=all ## specify if running in Xen domU or have grub detect automatically ## update-grub will ignore non-xen kernels when running in domU and vice versa ## e.g. indomU=detect ## indomU=true ## indomU=false # indomU=detect ## should update-grub create memtest86 boot option ## e.g. memtest86=true ## memtest86=false # memtest86=true ## should update-grub adjust the value of the default booted system ## can be true or false # updatedefaultentry=false ## should update-grub add savedefault to the default options ## can be true or false # savedefault=false ## ## End Default Options ## title Ubuntu 12.04.3 LTS, kernel 3.2.0-54-generic uuid caa220a7-7659-4617-abd8-5ee58b348d10 kernel /boot/vmlinuz-3.2.0-54-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro quiet splash initrd /boot/initrd.img-3.2.0-54-generic quiet title Ubuntu 12.04.3 LTS, kernel 3.2.0-54-generic (recovery mode) uuid caa220a7-7659-4617-abd8-5ee58b348d10 kernel /boot/vmlinuz-3.2.0-54-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro single initrd /boot/initrd.img-3.2.0-54-generic title Ubuntu 12.04.3 LTS, kernel 3.2.0-23-generic uuid caa220a7-7659-4617-abd8-5ee58b348d10 kernel /boot/vmlinuz-3.2.0-23-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro quiet splash initrd /boot/initrd.img-3.2.0-23-generic quiet title Ubuntu 12.04.3 LTS, kernel 3.2.0-23-generic (recovery mode) uuid caa220a7-7659-4617-abd8-5ee58b348d10 kernel /boot/vmlinuz-3.2.0-23-generic root=UUID=caa220a7-7659-4617-abd8-5ee58b348d10 ro single initrd /boot/initrd.img-3.2.0-23-generic title Chainload into GRUB 2 root caa220a7-7659-4617-abd8-5ee58b348d10 kernel /boot/grub/core.img title Ubuntu 12.04.3 LTS, memtest86+ uuid caa220a7-7659-4617-abd8-5ee58b348d10 kernel /boot/memtest86+.bin title Windows Xp rootnoverify (hd0,0) makeactive chainloader +1 quiet ### END DEBIAN AUTOMAGIC KERNELS LIST I corrected ntfs to fat and did update-grub.
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
January 5, 2014, 17:26 |
|
#17 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Oh no, I completely forgot that you might have changed the grub version installed in the system.
I thought that you had the default version, which is 1.99 or 2.0... but it's very likely that you have got grub 1.5 installed instead... OK, if I'm not mistaken:
|
|
January 5, 2014, 17:42 |
|
#18 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
dear Bruno I didn't change the default grub,but it seems is very old (0.97 ??)
Code:
ehsan@Ehsan:/media/Education/WR_kOmegaSST$ grub-install -v grub-install (GNU GRUB 0.97)
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
January 5, 2014, 17:44 |
|
#19 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
No, no need to install a new one. I probably got confused with the version numbers. 0.97 pretty much refers to Grub 1.0 and 1.99 refers to 2.0.
Simply follow the steps that I wrote for 1.5, from the previous post. |
|
January 5, 2014, 18:16 |
|
#20 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Hi Bruno, it worked fine in showing the list but the time is very low about 1 or 2 seconds when showing the list,how can increase it.
and I want to have grub 2,how can upgrade to it?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
|
|