All you need to do is overwrite GRUB with another boot loader
If you want to install the boot loader for Windows, run
FDISK /MBR (on Windows)
If you want to install LILO , run
/sbin/lilo (on Linux)
Printable View
All you need to do is overwrite GRUB with another boot loader
If you want to install the boot loader for Windows, run
FDISK /MBR (on Windows)
If you want to install LILO , run
/sbin/lilo (on Linux)
When I run /sbin/lilo it says /etc/lilo.conf no file present..... What do I do now ?
There's probably a better method than I'am suggesting now but either you get lilo from your CD's or the web or,
since this is a new linux install, you can also decide to begin again.
you have linux installed on a separate partition and on another HDD?
and you do not have anything else installed yet?
start all over again... leave your win like it is and reinstall the linux to your linux partition (with lilo) choose lilo to install the boot files to the super block and add in Win NT / XP loader the OS entry. Or install Lilo into the MBR and add to the lilo config the Win NT / XP entry. Your choice, since some ppl here had problems using lilo in the MBR together with XP I suggest you go for the first method, it's explained at the sites behind the links I posted before.
I hope you will have a working dual boot afterwards. ;)
succes!
I just reinstalled Linux :)
BTW How do you install .rpm files?
rpm -i <package.name>
:cool:
And compression formats too.... tar.gz, .tar.. It cant view them :(
How do you uninstall a program... Such as GAIM ?
LOL I feel so stupid...
Firstly, there's a command called man (for manual) in almost all versions of *NIX including Linux.
What you do is:
man command
For example:
man rpm
This brings up a detailed explanation of the command. It can be a bit cryptic at times but it should always be the first resource that you turn to. Also, try and get a good book on Red Hat Linux. I personally like the Unleashed series but hunt around and you maight find something better. As you're a total beginner you might want to pick up a copy of UNIX for Dummies.
Cheers,
cgkanchi
ok...tar, gz and such are handled by the "tar" command...do "man tar " from the command line ..
on the rpm command as posted earlier...if the package is already installed and u are upgrading it...u will have to use "rpm -Uvh package name also recommend you read "man rpm"
If you are a GUI type...RH comes with a couple of X-based package managers.
Also..to try to solve ur LILO/GRUB problems....use "linuxconf" look for the boot settings page and don't feel bad about using the help buttons...they are sometimes useful.
one last recommend for ya....www.linuxnewbie.org
good luck.
to uncompress a tar.gz, type tar zxvf <filename>
to erase an rpm package use rpm -e <package>
to uninstall an application that was installed uncompressed from a tarball, you will need to delete each file manually.