GRUB error 29
Hi, I installed the Debian 4.0r2 onto my laptop where Win XP has already been there. After the installation, I'm able to boot Debian from GRUB menu but not for Win XP and GRUB error 29 is appearing on the screen, saying error 29: Disk write error press any key to continue When I follow the above instruction, it brings me back to the GRUB boot menu and I lost from there Could anyone please diagnose what's wrong with the GRUB installation? Thanks
Debian error database.....
Has anyone know if it exists on the internet like Microsoft error db?
Re: Debian error database.....
Similar to the ones in the following http://service1.symantec.com/SUPPORT/powerquest.nsf/31c3099514a5cd2788256e97004c7b22/082f16ef9cb0572f88256e75007cae52?OpenDocument http://msdn.microsoft.com/en-us/library/ms681386(VS.85).aspx >From my understanding is that MS OS backbone errors are standardised coding but the solution varies from one application client to another. On 5/26/08, Kent West <[EMAIL PROTECTED]> wrote: > > Debian Linux wrote: > >> Has anyone know if it exists on the internet like Microsoft error db? >> > > A general google for any issues usually turns up whatever answers are > needed. > > A searchable archive of this mailing list is maintained at > http://lists.debian.org/search.html which essentially functions like the > Microsoft Knowledge Database does for Windows issues. I'm afraid I'm > unfamiliar with a "Microsoft error db", if that's something different, so > can't really address your question. > > -- > Kent West > Westing Peacefully - http://kentwest.blogspot.com > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a > subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > >
Re: GRUB error 29
My GRUB version is 0.97 On 5/26/08, Kent West <[EMAIL PROTECTED]> wrote: > > Debian Linux wrote: > >> Hi, >> >> I installed the Debian 4.0r2 onto my laptop where Win XP has already been >> there. After the installation, I'm able to boot Debian from GRUB menu but >> not for Win XP and GRUB error 29 is appearing on the screen, saying >> >> error 29: Disk write error >> press any key to continue >> >> When I follow the above instruction, it brings me back to the GRUB boot >> menu and I lost from there >> >> Could anyone please diagnose what's wrong with the GRUB installation? >> Thanks >> > > These links look promising: > http://ubuntuforums.org/showthread.php?t=87736 > > http://lists.freebsd.org/pipermail/freebsd-questions/2005-February/076226.html > > The first one basically says: > >> I had the same problem. In my case it was caused by the bootable flag >> being disabled on XP's partition. >> >> - run 'sudo cfdisk ' (In my case, XP is installed on /dev/hda so >> would be that) >> - enable the bootable flag for the NTFS partition >> - write changes >> - quit >> - reboot >> >> Hopefully this fixes it for you. >> > > The second one basically says: > > On Thu, Feb 10, 2005 at 06:07:10PM +0400, Rakhesh Sasidharan wrote: >> >/ I did a brief check on the net, and it seems to be bug that has been >> />/ fixed. What version of GRUB are you using? The bug was that GRUB wasn't >> />/ mounting the disks read-write. >> />/ />/ Alternatively, maybe you want to make a GRUB boot disk, and then >> try />/ installing from that? >> />/ /I am using grub 0.95. >> This was exactly my point as I don't own a floppy drive. Anyway the >> solution i found after some searching was to use grub-install /dev/hda >> instead of using the grub cli. Anyway grub-install worked just fine :) >> Thank you for your time. >> > > -- > Kent West > Westing Peacefully - http://kentwest.blogspot.com > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a > subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > >
Re: GRUB error 29
Hi Kent, Would you please be able to provide me the detailed info on how to use grub-install and not to use grub cli I have had the similar problem with unbunto 7.10 and I think it is the backbone problem On 5/26/08, Kent West <[EMAIL PROTECTED]> wrote: > > This was exactly my point as I don't own a floppy drive. Anyway the > solution i found after some searching was to use grub-install /dev/hda > instead of using the grub cli. Anyway grub-install worked just fine :) > Thank you for your time. > > > -- > Kent West > Westing Peacefully - http://kentwest.blogspot.com > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a > subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > >
Re: How to set Xserver resolution
You could set up an alias. HTH Curt [EMAIL PROTECTED] On Sun, Oct 01, 2000 at 09:00:07PM +0200, Philipp Lehman wrote: > On Sun, 1 Oct 2000, William Jensen <[EMAIL PROTECTED]> wrote: > >On Sun, Oct 01, 2000 at 01:38:36PM -0400, Wayne Topa wrote: > >> > >> startx -bpp 16 -dpi 120 > >> > >> Would be one way. > > Is there a way to make that permanent as well? Something in > XF86Config? > > -- > Philipp Lehman <[EMAIL PROTECTED]> > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null >
HELP: removed /var/lib/dpkg...
Hi, due to an damn' typo i removed my complete /var tree, including the dpkg files. I created /var/lib/dpkg/status by hand and did a deselect update to recreate the dpkg database. But when i do a 'dpkg -l' it shows nothing although lots of packages are installed. Is there any way to recreate the list of installed packages? --Heinric Heinrich Rebehn "Have disk - will travel" University of Bremen Physics / Electrical and Electronics Engineering - Department of Telecommunications - E-mail: mailto:[EMAIL PROTECTED] Phone : +49/421/218-4664 Fax :-3341
Re: Time taken by a script
Ron Rademaker wrote: > I've written a cgi script in perl an I would like to know how long > (exactly, 10th of second) it takes to execute the script, how can I do > this? > > Ron > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null addendum: you can run CGI scripts in offline mode and feed them their form variables through standard intput or command line args. so do something like $bash>time foo.cgi key=value&key1=value and that will spit back some execution times. Do that alot for an average. Justin
Re: Time taken by a script
Ron Rademaker wrote: > I've written a cgi script in perl an I would like to know how long > (exactly, 10th of second) it takes to execute the script, how can I do > this? > > Ron > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null Since Perl is an interpreted language, there are no assurances as to how long it will take to run your script, because it highly dependent on how Perl "decides" to process your instructions. CGI scripts typically are under their own process anyhow, so it also depends on when the OS decides to schedule your script for execution. Since Linux is not a "Real Time" OS there are no assurances on either front. The point being that you can get a pretty good average (down to a tenth of a second) in testing, but execution time may widly vary under a heavy system load. Solution: Average time under a heavy load and feel comfortable with an average. Justin
Re: Web Browser
On Mon, Apr 10, 2000 at 08:45:27AM -0800, Dan Hutchinson wrote: > Does anyone know of a web browser that displays jpg and gif images? > I like the speed of lynx and don't like netscape. I am looking for something > as fast as lynx that allows frames, gif images, etc.. > I agree about lynx, but for graphical browsers, I have to admit that I like the new netscape browser, Netscape 6. Have you tried it? It is fairly small and quick on my little box, a 450 Mhz. celeron with 64 M. Ram. -- Gary Dolan Debian GNU/Linux, Kernel 2.2.14
Problems leaving computer on overnight
On Thu, Apr 27, 2000 at 10:41:00AM -0700, Dan Hutchinson wrote: > I have been doing the same test at work with a Micron PC. I would second > the sluggishness and I am finding it wierd that the clock works for some > time then stops updating until I move my mouse. I thought perhaps I was a bit daft, but I also have had the same experience with the clock one day. I unfortunately did not note the setup I had at the time. I use a variety of X window managers (sawmill, icewm, uwm, enlightenment) and gnome with several of these, and this problem occurred with whatever I had that day.
kernel 2.2.14 and PS/2 mice
On Fri, Mar 10, 2000 at 08:22:38AM -1000, Jason Christensen wrote: > I have no problems with a PS/2 mouse & 2.2.14. > > On 10 Mar 2000, Joachim Trinkwitz wrote: > > > The boot messages tell me that a PS/2 mouse port is found, but the > > cursor doesn't follow the mouse at all. > > Under what circumstances are you talking about, X or console? If you're > talking about the console, make sure you're running gpm. > > > > > Is there a trick, some other kernel options as in older kernels ...? > > > > No trick for me. You may want to review your kernel configuration. It's > possible that your old config file has some slight differences to configs > for 2.2.14 regarding PS/2 mice. I have the same problem, in the x console. I thought perhaps it might be XF86 3.3.6 that is the problem. I re-compiled kernel 2.2.14, and the problem persists. Basically, the ps2 mouse is frozen in the x window; i.e., it reacts much like the old bus mouse problem. So now I kill gpm when invoking x, then use startx gpm -R -m /dev/psaux -t ps2 and the mouse works fine in x.