Uninstall Ubuntu 10.04 no Windows XP install CD
Tags:
Last response: in Linux/Free BSD
Ok, i am sick of having to scroll down and choose windows xp every single time im going to use it. IS there a way to change the list order, or uninstall Ubuntu? I'd love to get the hard drive space back. I do have the ubuntu 10.04 Live CD, but NOT a Windows XP install/recovery disk.. because we got the computer delivered with Windows.. But it may be i have the CD, i Dont know, because its an old PC... So is there any way to uninstall or at least change the boot order for WIndows XP and Ubuntu without the XP CD? Please help
More about : uninstall ubuntu windows install
Related ressources
- uninstall ubuntu from ubuntu netbook and instal windows xp netbook without cd w - Forum
- HOW TO UNINSTALL LINUX UBUNTU 10 04 - Forum
- Ubuntu 10.04 Nvidia Graphics Driver for 8800GTS issues - Forum
- Ubuntu/Windows XP issue - Forum
- Uninstall ubuntu windows 7 - Forum
Hehe, no i won't... Yes, Windows 7 is great, but it costs a hecka lot of money here, and besides i think XP is better at some areas.... But i do indeed like ubuntu, but it keeps annoying me, that when i turn my PC and is going in XP and i walk away for a drink, and when i return it has booted into Ubuntu... It gets annoying. And if somebody ELSE is going to use my computer, lol, they wont understand a thing, and boot into ubuntu....
I think this is what you want - Right click on Computer (This is My Computer in XP) then click on Properties. On System Properties dialog you can see Tabs their, click on Advanced then below that you will see Start up and Recovery then click on Settings button, here you can choose what OS you want to boot by default. Hope that fix it.
dEAne said:
I think this is what you want - Right click on Computer (This is My Computer in XP) then click on Properties. On System Properties dialog you can see Tabs their, click on Advanced then below that you will see Start up and Recovery then click on Settings button, here you can choose what OS you want to boot by default. Hope that fix it.Does XP understand GRUB? That would seem strange
Or are you expecting it to overwrite GRUB and give XP as the only option?
dEAne said:
I think this is what you want - Right click on Computer (This is My Computer in XP) then click on Properties. On System Properties dialog you can see Tabs their, click on Advanced then below that you will see Start up and Recovery then click on Settings button, here you can choose what OS you want to boot by default. Hope that fix it.No, good idea but it only recognises windows XP, and it already is default.. With no other options. But it does show a "edit the startup options file manually" or something like that, and when i click edit, this comes up in notepad:
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(2)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Home Edition" /noexecute=optin /fastdete
Can anything be changed heer?
This thread is someone asking the same question you are. I particularly like the looks of jimonyzang's solution, though I'm not running a version of linux with GRUB2 so I can't try it. Basically, he wants you to open the file /etc/default/grub with root privileges, and edit it so that the line which starts "GRUB_DEFAULT" is set to the number in the menu of the OS you want as default. It looks like this number is counted from zero, so to find which number your windows option is, try starting the computer and counting how many times you hit the down key to select it. This would be the number to enter. If it is wrong, no harm will be done. After this, he wants you to run the command update-grub with root privileges (i.e., type sudo in front of it). Hope this works.
edit: if this is confusing, I'm just trying to explain what each command he gives does. You can just copy and paste them into the terminal, and they will work. The only hard part for you is finding the line "GRUB_DEFAULT" in the config file and entering the right number in it.
edit: if this is confusing, I'm just trying to explain what each command he gives does. You can just copy and paste them into the terminal, and they will work. The only hard part for you is finding the line "GRUB_DEFAULT" in the config file and entering the right number in it.
eilif said:
Ok, i am sick of having to scroll down and choose windows xp every single time im going to use it. IS there a way to change the list order, or uninstall Ubuntu? I'd love to get the hard drive space back. I do have the ubuntu 10.04 Live CD, but NOT a Windows XP install/recovery disk.. because we got the computer delivered with Windows.. But it may be i have the CD, i Dont know, because its an old PC... So is there any way to uninstall or at least change the boot order for WIndows XP and Ubuntu without the XP CD? Please help
Yes, u can easily modify the list. Goto /boot/grub. Here, u can see one file with the name grub.cfg Not go to terminal and type " sudo gedit /boot/grub/grub.cfg " (without qoutes)
Scroll down and there you can see
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows Professional XP2 (on /dev/sdb1)" {
insmod ntfs
set root='(hd1,1)'
search --no-floppy --fs-uuid --set fe3cfb353cfae813
drivemap -s (hd0) ${root}
chainloader +1
Copy the above format thing from grub.cfg and paste it right after
### 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 ###
That's it. Next time when u login, windows will be in first position.
eilif said:
IS this grub cfg stuff potentially dangerous if i do anything wrong? i didnt quite understand what srikantgundaz meantAs long as you're careful it will be fine. If you screw up, it won't boot, but you will still be able to fix it by other means.
I'll do my best to re-explain what srikantgundaz said in a slightly more understandable manner.
Open a terminal.
Enter the following:
sudo gedit /boot/grub/grub.cfg
This will allow you to edit the grub configuration file in the /boot/grub/ directory.
Scroll down until you see the following (or similar) text:
### BEGIN /etc/grub.d/30_os-prober ### menuentry "Microsoft Windows Professional XP2 (on /dev/sdb1)" { insmod ntfs set root='(hd1,1)' search --no-floppy --fs-uuid --set fe3cfb353cfae813 drivemap -s (hd0) ${root} chainloader +1
Copy the above lines below the following lines in the grub.cfg file.
### 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 ###
This should place Windows in the first location on the boot menu.
srikanthgundaz said:
Yes, u can easily modify the list. Goto /boot/grub. Here, u can see one file with the name grub.cfg Not go to terminal and type " sudo gedit /boot/grub/grub.cfg " (without qoutes) Scroll down and there you can see
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows Professional XP2 (on /dev/sdb1)" {
insmod ntfs
set root='(hd1,1)'
search --no-floppy --fs-uuid --set fe3cfb353cfae813
drivemap -s (hd0) ${root}
chainloader +1
Copy the above format thing from grub.cfg and paste it right after
### 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 ###
That's it. Next time when u login, windows will be in first position.
Okay i have found where to put that stuff but to be honest i am very scared of fmessing up my computer, i know exactly what to do please can you tell me if this is potentially harmful or not as the grub.cfg file says in the top DO NOT EDIT THIS FILE if i edit it wong, will my machine become unbootable?
This is what i found:
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Dell Utility Partition (on /dev/sda1)" {
insmod fat
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 07d6-0c0d
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry "Microsoft Windows XP Home Edition (on /dev/sda2)" {
insmod ntfs
set root='(hd0,2)'
search --no-floppy --fs-uuid --set ceec7f5dec7f3eb1
drivemap -s (hd0) ${root}
chainloader +1
WHat can i do with it?
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Dell Utility Partition (on /dev/sda1)" {
insmod fat
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 07d6-0c0d
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry "Microsoft Windows XP Home Edition (on /dev/sda2)" {
insmod ntfs
set root='(hd0,2)'
search --no-floppy --fs-uuid --set ceec7f5dec7f3eb1
drivemap -s (hd0) ${root}
chainloader +1
WHat can i do with it?
I would advise the following. Copy the grub.cfg file that you are using at the moment to a pen drive or such like. Also make a copy as locally, name it something like grub.original then go and make the edits.
IF you make a mistake you can boot from a live CD and copy back over the backup file. That way you can make the change and worst case scenario all you have to do is copy back a file to get back to where you started.
So long as you have a live CD to hand that you can boot from to a desktop there is very little risk, you will just confuse the boot loader which can be fixed by replacing the config file, you would have to be very cack handed to actually cause serious damage.
Another think that I spotted is that you have a boot option for the dell system utilities. You might want to try booting that and seeing if you get the option to create an XP install CD. Dell don't ship install cd media but sometimes you can make a disk from the image they create when the image the HD.
IF you make a mistake you can boot from a live CD and copy back over the backup file. That way you can make the change and worst case scenario all you have to do is copy back a file to get back to where you started.
So long as you have a live CD to hand that you can boot from to a desktop there is very little risk, you will just confuse the boot loader which can be fixed by replacing the config file, you would have to be very cack handed to actually cause serious damage.
Another think that I spotted is that you have a boot option for the dell system utilities. You might want to try booting that and seeing if you get the option to create an XP install CD. Dell don't ship install cd media but sometimes you can make a disk from the image they create when the image the HD.
Just copy it to your desktop or home directory, something out of the way and easily accessible. It's not really important where you make your copy. You can even just do it in the /boot/grub/ directory as long as you name is something else, if you wish.
There shouldn't be any issues. I think you're making this into more of a big deal than it is. Just trust us, it will work
And in the very rare case it doesn't, you will have made your backup, and we'll be able to advise you on how to fix it.
There shouldn't be any issues. I think you're making this into more of a big deal than it is. Just trust us, it will work
And in the very rare case it doesn't, you will have made your backup, and we'll be able to advise you on how to fix it.
Ok so i shall just put this;
1.### BEGIN /etc/grub.d/30_os-prober ###
2.menuentry "Microsoft Windows Professional XP2 (on /dev/sdb1)" {
3.insmod ntfs
4.set root='(hd1,1)'
5.search --no-floppy --fs-uuid --set fe3cfb353cfae813
6.drivemap -s (hd0) ${root}
7.chainloader +1
Right below
1.### BEGIN /etc/grub.d/05_debian_theme ###
2.set menu_color_normal=white/black
3.set menu_color_highlight=black/light-gray
4.### END /etc/grub.d/05_debian_theme ###
This in the .cfg file?
1.### BEGIN /etc/grub.d/30_os-prober ###
2.menuentry "Microsoft Windows Professional XP2 (on /dev/sdb1)" {
3.insmod ntfs
4.set root='(hd1,1)'
5.search --no-floppy --fs-uuid --set fe3cfb353cfae813
6.drivemap -s (hd0) ${root}
7.chainloader +1
Right below
1.### BEGIN /etc/grub.d/05_debian_theme ###
2.set menu_color_normal=white/black
3.set menu_color_highlight=black/light-gray
4.### END /etc/grub.d/05_debian_theme ###
This in the .cfg file?
Related ressources:
- ForumUninstall ubuntu 10 04 and install xp
- ForumUbuntu 10.04 issues with Linux/ Windows network?
- ForumUbuntu 10.04 and HP Mini 1000 -> No wireless
- ForumInstalling free dos, windows xp home, and ubuntu 10.04 on the same pc
- ForumWireless-n USB ok in WinXP but not Ubuntu 10.04
- ForumUbuntu install does not see my xp installation
- ForumFrom Ubuntu Linux to Windows XP
- ForumHow to uninstall ubuntu without windows cd ?
- ForumBoot Problems
- ForumWhat does Ubuntu one do?!
- Forum[Solved] HOW TO BOOT MY WINDOWS 7 AGAIN
- ForumUbuntu problems
- ForumUbuntu 10.10 feelings
- ForumWireless-n USB ok in WinXP but not Ubuntu 10.04
- ForumUbuntu 10.10 is here
- More resources
!
)