On Thursday 27 February 2003 20:43, Prashant Parab wrote:
Hi Group, I am planning to use some applications which works only on top of red hat linux 6.2. Is it possible for me to keep red hat linux 8.0 and 6.2 on the same machine? I am interested in keeping glibc-2.1.3 on my machine which comes with red hat linux 6.2. So this implementation should consider that point.
Youc can have any number of distros / os. I have debian woody 2 installations, rh6.2 (dunno why it's here). and debian sid (incomplete). Create seperate partitions and install. Use grub to boot. Install grub on the mbr with the menu.lst file in the boot partition of the first installation (/dev/hda4 - grub numbers partitions from 0. so 4 is 5 - in my case). Edit this file when you create a new installation. No need to re install grub.
rgds jtdsouza@softhome.net
How do i change my output device when typing from screen to Printer? This is the scenario I have written a simple addition program in C and ask for the input when i execute a.out the input i give should be redirected to the printer as well as on the screen. Presently I am using # ./a.out > /dev/lp0 which displays the input on screen. and gives the output to printer.
=====
Geek by Nature
Linux by choice
If Linux doesn't have the solution, you have the wrong problem
mailto: varunop@yahoo.com
website: http://varunop.blogspot.com
__________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/
How do i change my output device when typing from screen to Printer? This is the scenario I have written a simple addition program in C and ask for the input when i execute a.out the input i give should be redirected to the printer as well as on the screen. Presently I am using # ./a.out > /dev/lp0
*snip* You use the shell's I/O redirection faclities outside your main program. This isn't exactly elegant.You must examine the dup2() call.
Regards,
-ah