Re: configuring grub[SOLVED]

2013-08-19 Thread Darac Marjal
On Sat, Aug 17, 2013 at 12:58:00PM +0200, François Patte wrote:
 Le 16/08/2013 11:15, Darac Marjal a écrit :
  On Fri, Aug 16, 2013 at 11:02:20AM +0200, François Patte wrote:
  Bonjour,
 
  I tried to change the screen resolution and the splash screen in grub:
 
  1- edited /etc/default/grub
  GRUB_GFXMODE=1280x1024
  That should work.
 
 In /etc/default/grub
 
 GRUB_GFXMODE=1280x1024
 
 Then in /etc/grub.d/00_header:
 
   set gfxmode=${GRUB_GFXMODE}
   set gfxpayload=keep  add
   load_video
   insmod gfxterm
 
 update-grub
 
 It's done. 

Yes, but A) that will get lost when you update the grub package and B) I
thought you were unable to even get 1280x1024 in grub so keeping the low
resolution shouldn't be much help?

The proper way to do what you've added is to add
GRUB_GFXPAYLOAD_LINUX=keep to /etc/default/grub and re-run
update-grub.



signature.asc
Description: Digital signature


Re: configuring grub[SOLVED]

2013-08-17 Thread François Patte
Le 16/08/2013 11:15, Darac Marjal a écrit :
 On Fri, Aug 16, 2013 at 11:02:20AM +0200, François Patte wrote:
 Bonjour,

 I tried to change the screen resolution and the splash screen in grub:

 1- edited /etc/default/grub
 GRUB_GFXMODE=1280x1024
 That should work.

In /etc/default/grub

GRUB_GFXMODE=1280x1024

Then in /etc/grub.d/00_header:

  set gfxmode=${GRUB_GFXMODE}
  set gfxpayload=keep  add
  load_video
  insmod gfxterm

update-grub

It's done. 



-- 
François Patte
UFR de mathématiques et informatique
Laboratoire CNRS MAP5, UMR 8145
Université Paris Descartes
45, rue des Saints Pères
F-75270 Paris Cedex 06
Tél. +33 (0)1 8394 5849
http://www.math-info.univ-paris5.fr/~patte




signature.asc
Description: OpenPGP digital signature


configuring grub

2013-08-16 Thread François Patte
Bonjour,

I tried to change the screen resolution and the splash screen in grub:

1- edited /etc/default/grub
GRUB_GFXMODE=1280x1024

GRUB_BACKGROUND=/usr/share/images/grub/Windbuchencom.tga

2- run grub-update (it says that it has found the image, then done...)

3- rebooted and. nothing has changed! Resolution is still ugly and
no splashscreen (the splashscreen is for fun, I don't need it) But I
want to change the resolution (it is the default resolution of my screens)

4- I had a look to the file  /boot/grub/grub.cfg
The location of the image had been wrongly written:
share/images/grub/Windbuchencom.tga but the resolution is correctly set.

What to do?

In /etc/default/grub it is recommended to check the resolution using
vbeinfo, I have no vbeinfo program and I cannot find one, what is the
package with this program?

Thanks.

-- 
François Patte
UFR de mathématiques et informatique
Laboratoire CNRS MAP5, UMR 8145
Université Paris Descartes
45, rue des Saints Pères
F-75270 Paris Cedex 06
Tél. +33 (0)1 8394 5849
http://www.math-info.univ-paris5.fr/~patte


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520dea9c.60...@mi.parisdescartes.fr



Re: configuring grub

2013-08-16 Thread Jerome BENOIT
Hello,

On 16/08/13 11:02, François Patte wrote:
 In /etc/default/grub it is recommended to check the resolution using
 vbeinfo, I have no vbeinfo program and I cannot find one, what is the
 package with this program?


You can paly with hwinfo instead:

http://askubuntu.com/questions/67236/is-there-a-way-to-save-the-output-of-vbeinfo

hth,
Jerome


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520dec4e.7050...@rezozer.net



Re: configuring grub

2013-08-16 Thread Darac Marjal
On Fri, Aug 16, 2013 at 11:02:20AM +0200, François Patte wrote:
 Bonjour,
 
 I tried to change the screen resolution and the splash screen in grub:
 
 1- edited /etc/default/grub
 GRUB_GFXMODE=1280x1024

That should work.

 
 GRUB_BACKGROUND=/usr/share/images/grub/Windbuchencom.tga
 
 2- run grub-update (it says that it has found the image, then done...)

The correct command is update-grub or update-grub2 (they're
essentially the same).

 
 3- rebooted and. nothing has changed! Resolution is still ugly and
 no splashscreen (the splashscreen is for fun, I don't need it) But I
 want to change the resolution (it is the default resolution of my screens)

It's possible that grub can't switch to the resolution. Many graphics
cards allow access to the basic VGA, SuperVGA etc modes (640x480,
800x600, 1024x768) through the VESA BIOS. To get higher resolutions
(including, perhaps, the native mode of an LCD panel) requires the full
driver.

 
 4- I had a look to the file  /boot/grub/grub.cfg
 The location of the image had been wrongly written:
 share/images/grub/Windbuchencom.tga but the resolution is correctly set.

share/images... probably indicates you've got /usr on a separate
partition. Remember that grub doesn't use a full unix-style tree, but
uses a forest (a bit more like Windows, really) of individual
partitions. So the TGA file would likely be in (hd1,2)share/images... or
similar.

 
 What to do?
 
 In /etc/default/grub it is recommended to check the resolution using
 vbeinfo, I have no vbeinfo program and I cannot find one, what is the
 package with this program?

That would be the grub-pc or equivalent package. Basically, the
instruction is to boot into grub press 'c' at the menu (to give you a
command line) then enter set pager=1 (return) vbeinfo (return).

 


signature.asc
Description: Digital signature


Re: configuring grub

2013-08-16 Thread François Patte



 Message original 
Sujet:  Re: configuring grub
Date :  Fri, 16 Aug 2013 11:45:09 +0200
De :François Patte francois.pa...@mi.parisdescartes.fr
Pour :  Darac Marjal mailingl...@darac.org.uk



Le 16/08/2013 11:15, Darac Marjal a écrit :
 On Fri, Aug 16, 2013 at 11:02:20AM +0200, François Patte wrote:
 Bonjour,

 I tried to change the screen resolution and the splash screen in grub:

 1- edited /etc/default/grub
 GRUB_GFXMODE=1280x1024
 That should work.

 GRUB_BACKGROUND=/usr/share/images/grub/Windbuchencom.tga

 2- run grub-update (it says that it has found the image, then done...)
 The correct command is update-grub or update-grub2 (they're
 essentially the same).

 3- rebooted and. nothing has changed! Resolution is still ugly and
 no splashscreen (the splashscreen is for fun, I don't need it) But I
 want to change the resolution (it is the default resolution of my screens)
 It's possible that grub can't switch to the resolution. Many graphics
 cards allow access to the basic VGA, SuperVGA etc modes (640x480,
 800x600, 1024x768) through the VESA BIOS. To get higher resolutions
 (including, perhaps, the native mode of an LCD panel) requires the full
 driver.

 4- I had a look to the file  /boot/grub/grub.cfg
 The location of the image had been wrongly written:
 share/images/grub/Windbuchencom.tga but the resolution is correctly set.
 share/images... probably indicates you've got /usr on a separate
 partition. Remember that grub doesn't use a full unix-style tree, but
 uses a forest (a bit more like Windows, really) of individual
 partitions. So the TGA file would likely be in (hd1,2)share/images... or
 similar.

Thanks for your answer. Yes /usr is on a separate partition; shall put
(hd1,2)share/images... in /etc/default/grub? And how to find the correct
numbers? /usr is on /dev/sda2, but it is a a raid array, is grub able to
read that?
 What to do?

 In /etc/default/grub it is recommended to check the resolution using
 vbeinfo, I have no vbeinfo program and I cannot find one, what is the
 package with this program?
 That would be the grub-pc or equivalent package. Basically, the
 instruction is to boot into grub press 'c' at the menu (to give you a
 command line) then enter set pager=1 (return) vbeinfo (return).

OK, that was useful, 1280x1024 is lIsted, but it does not work, I tried
1024x768 without any success. And of course I made a typo in the mail, I
ran update-grub (and not grub-update).



-- 
François Patte
UFR de mathématiques et informatique
Laboratoire CNRS MAP5, UMR 8145
Université Paris Descartes
45, rue des Saints Pères
F-75270 Paris Cedex 06
Tél. +33 (0)1 8394 5849
http://www.math-info.univ-paris5.fr/~patte




-- 
François Patte
UFR de mathématiques et informatique
Laboratoire CNRS MAP5, UMR 8145
Université Paris Descartes
45, rue des Saints Pères
F-75270 Paris Cedex 06
Tél. +33 (0)1 8394 5849
http://www.math-info.univ-paris5.fr/~patte





signature.asc
Description: OpenPGP digital signature


Re: configuring grub

2013-08-16 Thread Jerome BENOIT
Hello,

On 16/08/13 12:20, François Patte wrote:
 
 
 
  Message original 
 Sujet:Re: configuring grub
 Date :Fri, 16 Aug 2013 11:45:09 +0200
 De :  François Patte francois.pa...@mi.parisdescartes.fr
 Pour :Darac Marjal mailingl...@darac.org.uk
 
 
 
 Le 16/08/2013 11:15, Darac Marjal a écrit :
 On Fri, Aug 16, 2013 at 11:02:20AM +0200, François Patte wrote:
 Bonjour,

 I tried to change the screen resolution and the splash screen in grub:

 1- edited /etc/default/grub
 GRUB_GFXMODE=1280x1024
 That should work.

 GRUB_BACKGROUND=/usr/share/images/grub/Windbuchencom.tga

 2- run grub-update (it says that it has found the image, then done...)
 The correct command is update-grub or update-grub2 (they're
 essentially the same).

 3- rebooted and. nothing has changed! Resolution is still ugly and
 no splashscreen (the splashscreen is for fun, I don't need it) But I
 want to change the resolution (it is the default resolution of my screens)
 It's possible that grub can't switch to the resolution. Many graphics
 cards allow access to the basic VGA, SuperVGA etc modes (640x480,
 800x600, 1024x768) through the VESA BIOS. To get higher resolutions
 (including, perhaps, the native mode of an LCD panel) requires the full
 driver.

 4- I had a look to the file  /boot/grub/grub.cfg
 The location of the image had been wrongly written:
 share/images/grub/Windbuchencom.tga but the resolution is correctly set.
 share/images... probably indicates you've got /usr on a separate
 partition. Remember that grub doesn't use a full unix-style tree, but
 uses a forest (a bit more like Windows, really) of individual
 partitions. So the TGA file would likely be in (hd1,2)share/images... or
 similar.
 
 Thanks for your answer. Yes /usr is on a separate partition; shall put
 (hd1,2)share/images... in /etc/default/grub? And how to find the correct
 numbers? /usr is on /dev/sda2, but it is a a raid array, is grub able to
 read that?

I would put the image in the /boot partition, where the grub material is put:
see /boot/grub .
You may also customize the grub machinery to put the image
somewhere in the /boot partition: see /etc/grub.d material.


 What to do?

 In /etc/default/grub it is recommended to check the resolution using
 vbeinfo, I have no vbeinfo program and I cannot find one, what is the
 package with this program?
 That would be the grub-pc or equivalent package. Basically, the
 instruction is to boot into grub press 'c' at the menu (to give you a
 command line) then enter set pager=1 (return) vbeinfo (return).
 
 OK, that was useful, 1280x1024 is lIsted, but it does not work, I tried
 1024x768 without any success. And of course I made a typo in the mail, I
 ran update-grub (and not grub-update).

have you tried the following command ?

hwinfo --framebuffer


Keep in mind that grub is sometime capricious.

hth,
Jerome

 
 
 
 -- 
 François Patte
 UFR de mathématiques et informatique
 Laboratoire CNRS MAP5, UMR 8145
 Université Paris Descartes
 45, rue des Saints Pères
 F-75270 Paris Cedex 06
 Tél. +33 (0)1 8394 5849
 http://www.math-info.univ-paris5.fr/~patte
 
 
 
 
 -- 
 François Patte
 UFR de mathématiques et informatique
 Laboratoire CNRS MAP5, UMR 8145
 Université Paris Descartes
 45, rue des Saints Pères
 F-75270 Paris Cedex 06
 Tél. +33 (0)1 8394 5849
 http://www.math-info.univ-paris5.fr/~patte
 
 
 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520e1180.2020...@rezozer.net



Re: Help configuring grub-pc

2011-02-18 Thread Charles Kroeger
 Please help ... this is kinda scary because it seems
 like I could break something if I pick the  wrong one!
 
 Thanks!
 
 Erin

It has been some time since you wrote this so I assume all is well and
you've chosen wisely.  However, when things go wrong with grub-pc or
in my case, grub2-pc as it were, I always get good results from
editing /boot/grub/grub.cfg  That's the one that says, DO NOT EDIT THIS
FILE.

There is also a good read in /usr/share/grub/ and more interesting:

/etc/default/grub the one you might want to edit also after reading the
document that will appear after the command:

#  info -f grub -n 'Simple configuration'

That will take you into the Grub Manual to menu item 5.1 Simple
configuration handling,  If you can endure reading longish manuals ,
you can start at the beginning that is the top of the file where it
says: GNU GRUB manual  
   **
-- 

CK

INGREDIENTS:  Bleached Wheat Flour, Sugar, Salt, Water, Vegetable Oil,
Soybean Lecithin, Sodium Bicarbonate, High Fructose Corn Syrup,
Cyamopsis Tetragonoloba, Cellulose, Natural and Artificial Flavor
(Vanilla), and Food Colors (FDC Yellow #5  Red #40)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/8s8m69fn9...@mid.individual.net



Re: Help configuring grub-pc

2011-02-16 Thread Stephen Powell
On Tue, 15 Feb 2011 00:24:59 -0500 (EST), Charles Kroeger wrote:
 
 If you have grub2 then use Rescatux..doesn't everyone use grub2 anyway?

Everyone most assuredly does *not* use grub2.  There's grub-legacy,
extlinux, lilo, and others.  I don't use grub2.  As for a rescue disk,
for as often as I need one, which isn't often, the Debian installer
in rescue mode has generally sufficed for me.  There are fancier alternatives.
But d-i works well enough for me.

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1191828606.872239.1297912342214.javamail.r...@md01.wow.synacor.com



Help configuring grub-pc

2011-02-14 Thread Erin Brinkley
Ok, I lied!

As part of the Lenny to Squeeze upgrade, I guess
there's a whole new grub boot process!

It tells you that when your system settles down,
you should run upgrade-from-grub-legacy ... ok,
I just did that now and I am STUCK!

I guess I have to pick out what device that
grub-install will be automatically run for, but 
I don't understand what that means!

I have two hard drives, /dev/sda and /dev/sdb.

My / (root) partition is /dev/sda1. The /dev/sda
has other partitions too. I use /dev/sdb 
exclusively for my /home partition, /dev/sdb1.

So what do I pick for this, /dev/sda or /dev/sda1?

Here is what's on the screen:

-
The grub-pc package is being upgraded. This
menu allows you to select which devices
you'd like grub-install to be automatically
run for, if any.

Running grub-install automatically is
recommended in most situations, to prevent
the installed GRUB core image from getting
out of sync with GRUB modules or grub.cfg.

If you're unsure which drive is designated
as boot drive by your BIOS, it is often a
good idea to install GRUB to all of them.

Note: it is possible to install GRUB to
partition boot records as well, and some
appropriate partitions are offered here.
However, this forces GRUB to use the
blocklist mechanism, which makes it less
reliable, and therefore is not recommended.

GRUB install devices:

   [*] /dev/sda (250059 MB; WDC_WD2500JS-64ABC2)
   [ ] - /dev/sda1 (1998 MB; /)
   [ ] /dev/sdb (1000204 MB; WDC_WD1001FBFF-40D402)

--


Please help ... this is kinda scary because it seems
like I could break something if I pick the  wrong one!

Thanks!

Erin


  


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/735805.62365...@web114609.mail.gq1.yahoo.com



Re: Help configuring grub-pc

2011-02-14 Thread Greg Madden


On Monday 14 February 2011 09:06:51 am Erin Brinkley wrote:
 Ok, I lied!

 As part of the Lenny to Squeeze upgrade, I guess
 there's a whole new grub boot process!

 It tells you that when your system settles down,
 you should run upgrade-from-grub-legacy ... ok,
 I just did that now and I am STUCK!

 I guess I have to pick out what device that
 grub-install will be automatically run for, but
 I don't understand what that means!

 I have two hard drives, /dev/sda and /dev/sdb.

 My / (root) partition is /dev/sda1. The /dev/sda
 has other partitions too. I use /dev/sdb
 exclusively for my /home partition, /dev/sdb1.

 So what do I pick for this, /dev/sda or /dev/sda1?

 Here is what's on the screen:

 -
 The grub-pc package is being upgraded. This
 menu allows you to select which devices
 you'd like grub-install to be automatically
 run for, if any.

 Running grub-install automatically is
 recommended in most situations, to prevent
 the installed GRUB core image from getting
 out of sync with GRUB modules or grub.cfg.

 If you're unsure which drive is designated
 as boot drive by your BIOS, it is often a
 good idea to install GRUB to all of them.

 Note: it is possible to install GRUB to
 partition boot records as well, and some
 appropriate partitions are offered here.
 However, this forces GRUB to use the
 blocklist mechanism, which makes it less
 reliable, and therefore is not recommended.

 GRUB install devices:

[*] /dev/sda (250059 MB; WDC_WD2500JS-64ABC2)
[ ] - /dev/sda1 (1998 MB; /)
[ ] /dev/sdb (1000204 MB; WDC_WD1001FBFF-40D402)

 --


 Please help ... this is kinda scary because it seems
 like I could break something if I pick the  wrong one!

 Thanks!

 Erin

The default suggestion , sda, works for most people , If you don't know  you 
want 
grub installed in another place. sda is the same as the older 'mbr' question.

Don't worry, you can always boot the install media and use the rescue mode to 
install grub else where.
-- 
Peace,

Greg


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201102140924.43365.gomadtr...@gci.net



Re: Help configuring grub-pc

2011-02-14 Thread Erin Brinkley
Greg Madden gomadtr...@gci.net wrote:

 The default suggestion , sda, works for most people , If you don't know  
 you want grub installed in another place. sda is the same as the older 
 'mbr' question.

Ok, this makes sense. I know the /boot dir is in /dev/sda1. I'll try the 
default now.


 Don't worry, you can always boot the install media and use the rescue mode 
 to install grub else where.

I installed over the net with apt! So basically I have no install media.

Should I be making some kind of emergency disk before trying this??

Erin



  


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/431723.54534...@web114604.mail.gq1.yahoo.com



Re: Help configuring grub-pc

2011-02-14 Thread Andrei Popescu
On Lu, 14 feb 11, 10:06:51, Erin Brinkley wrote:
 Ok, I lied!

:)
 
 So what do I pick for this, /dev/sda or /dev/sda1?

Maybe a bit of snipping might help ;)
 
 Here is what's on the screen:
...
 If you're unsure which drive is designated
 as boot drive by your BIOS, it is often a
 good idea to install GRUB to all of them.

Regards,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: Help configuring grub-pc

2011-02-14 Thread Greg Madden


On Monday 14 February 2011 09:49:29 am Erin Brinkley wrote:
snip
 I installed over the net with apt! So basically I have no install media.

 Should I be making some kind of emergency disk before trying this??

Not sure what you mean by  'no install media'  AFAIK, you have to have one of 
the 
several modes of install media to proceed.
1. netintall iso: has base system, but needs a repository for the rest of the 
packages. Minimal system but can stand alone.
2. businesscard iso, has only enough to boot the system and set up the network 
and 
configure apt. Needs a mirror or package repo or you can't proceed.
3. Cd's and DVD's with a full desktop environment .

All the install media have 'rescue' mode included. If what yo say is true, grab 
one of the small iso's just  for the rescue mode.

ps: There is another, PXE, which I am not familiar with, I think it can be used 
to 
install without local media.
-- 
Peace,

Greg


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201102141416.32497.gomadtr...@gci.net



Re: Help configuring grub-pc

2011-02-14 Thread Rob Owens
On Mon, Feb 14, 2011 at 10:49:29AM -0800, Erin Brinkley wrote:
 Greg Madden gomadtr...@gci.net wrote:
 
  The default suggestion , sda, works for most people , If you don't know  
  you want grub installed in another place. sda is the same as the older 
  'mbr' question.
 
 Ok, this makes sense. I know the /boot dir is in /dev/sda1. I'll try the 
 default now.
 
 
  Don't worry, you can always boot the install media and use the rescue mode 
  to install grub else where.
 
 I installed over the net with apt! So basically I have no install media.
 
 Should I be making some kind of emergency disk before trying this??
 
I like this one:  http://www.supergrubdisk.org/

-Rob


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110215015003.gb12...@aurora.owens.net



Re: Help configuring grub-pc

2011-02-14 Thread Charles Kroeger
 I like this one:  http://www.supergrubdisk.org/

If you have grub2 then use Rescatux..doesn't everyone use grub2 anyway?

I had to use Rescatux just recently after an upgrade whilst avoiding 
dist-upgrade until the nvidia-glx 260 driver moves into unstable.

 After one of those 'upgrade' solutions I got nothing but the black
 screen after a reboot. I don't know why grub was wiped out but it was
 handy to get it back with the Rescatux boot disk, so..highly
 recommended for those shocking grub2 moments.

C.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/8ruh15f56...@mid.individual.net



Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-27 Thread Leonardo Ruoso
I've tried a lot of grub-pc, grub-install, grub-probe and finally upgraded
to 2.0.36... After all it worked Thanks

Atenciosamente,

Leonardo Ruoso (CE1921JP)
leona...@oktiva.com.br - (85) 8787-0312
Marketing, Comunicação Social e Tecnologia



Sent from Fortaleza, CE, Brasil


2010/1/26 Geraldo Netto geraldone...@gmail.com

 Hi guys,

 i would try

 apt-get -f install

 maybe there is something broken on the way...

 See ya,

 Geraldo
 Sapere Aude = Non dvcor, dvco
 São Paulo, Brasil, -3gmt
 site: http://exdev.sf.net/
 msn: geraldo_b...@hotmail.com
 skype: geraldo-netto
 icq: 145-061-456



 2010/1/26 Thierry Chatelet tchate...@free.fr:
  On Tuesday 26 January 2010 17:13:27 Leonardo Ruoso wrote:
  leona...@yuri:~$ df -h
  Sist. Arq.Tam   Usad Disp  Uso% Montado em
  /dev/sda1 144G   72G   66G  53% /
  tmpfs 505M 0  505M   0% /lib/init/rw
  udev   10M  216K  9,8M   3% /dev
  tmpfs 505M  156K  505M   1% /dev/shm
  10.0.0.155:/home  136G  124G  5,0G  97% /home
  leona...@yuri:~$
 
 
  Then you have to look at something else. Sorry I can't help you more.
  Good luck
  Thierry
 
 
  --
  To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
  with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 
 


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org




Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-27 Thread Mark
On Wed, Jan 27, 2010 at 8:27 AM, Leonardo Ruoso 
leonardo.ru...@gmail.comwrote:

 I've tried a lot of grub-pc, grub-install, grub-probe and finally upgraded
 to 2.0.36... After all it worked Thanks


It's a lot more work and headache than editing menu.lst, ain't it?  :(


Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-27 Thread Stephen Powell
On Wed, 27 Jan 2010 11:27:12 -0500, Leonardo Ruoso wrote:
 I've tried a lot of grub-pc, grub-install, grub-probe and finally upgraded
 to 2.0.36... After all it worked Thanks

I'm glad you finally got it working!  I have nothing personal against any
grub2 developers who may listening, but I'm happier than ever that
I went back to lilo.  ;-)
It's reliable, stable, and does everything I want it to do.
But to each his own.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-27 Thread Leonardo Ruoso
Recently I've got a problem on a server... after editing menu.lst the
machine boots, but running an apt-get upgrade that got a new kernel image, i
lost all my edition... '/' was at /dev/sda2, but the upgrade changed it to
/dev/sda1, which is the swap partition. Upgrading to grub2 correct this
issue...

Atenciosamente,

Leonardo Ruoso (CE1921JP)
http://lattes.cnpq.br/2719086566536387
leona...@oktiva.com.br - (85) 8787-0312
Marketing, Comunicação Social e Tecnologia



Sent from Fortaleza, CE, Brasil


2010/1/27 Mark mamar...@gmail.com

 On Wed, Jan 27, 2010 at 8:27 AM, Leonardo Ruoso leonardo.ru...@gmail.com
  wrote:

 I've tried a lot of grub-pc, grub-install, grub-probe and finally
 upgraded to 2.0.36... After all it worked Thanks


 It's a lot more work and headache than editing menu.lst, ain't it?  :(



apt-get upgrade - Configuring grub-pc never ends

2010-01-26 Thread Leonardo Ruoso
I've upgraded my desktop, but it never ends grub-pc configuration. It's a
squeeze box.

The syslog shows a message showing some process being blocked for more than
120 seconds.

Any idea?

Atenciosamente,

Leonardo Ruoso (CE1921JP)
leona...@oktiva.com.br - (85) 8787-0312
Marketing, Comunicação Social e Tecnologia


Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-26 Thread Thierry Chatelet
On Tuesday 26 January 2010 16:41:58 Leonardo Ruoso wrote:
 I've upgraded my desktop, but it never ends grub-pc configuration. It's a
 squeeze box.
 
 The syslog shows a message showing some process being blocked for more than
 120 seconds.
 
 Any idea?
 
 Atenciosamente,
 
 Leonardo Ruoso (CE1921JP)
 leona...@oktiva.com.br - (85) 8787-0312
 Marketing, Comunicação Social e Tecnologia
 

How much space there is left on various partition?
Thierry 


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-26 Thread Leonardo Ruoso
leona...@yuri:~$ df -h
Sist. Arq.Tam   Usad Disp  Uso% Montado em
/dev/sda1 144G   72G   66G  53% /
tmpfs 505M 0  505M   0% /lib/init/rw
udev   10M  216K  9,8M   3% /dev
tmpfs 505M  156K  505M   1% /dev/shm
10.0.0.155:/home  136G  124G  5,0G  97% /home
leona...@yuri:~$


Here the message:

Depois desta operação, 0B adicionais de espaço em disco serão usados.
Configurando grub-pc (1.98~20100101-1) ...


Atenciosamente,

Leonardo Ruoso (CE1921JP)
leona...@oktiva.com.br - (85) 8787-0312
Marketing, Comunicação Social e Tecnologia



Sent from Fortaleza, CE, Brasil


2010/1/26 Thierry Chatelet tchate...@free.fr

 On Tuesday 26 January 2010 16:41:58 Leonardo Ruoso wrote:
  I've upgraded my desktop, but it never ends grub-pc configuration. It's a
  squeeze box.
 
  The syslog shows a message showing some process being blocked for more
 than
  120 seconds.
 
  Any idea?
 
  Atenciosamente,
 
  Leonardo Ruoso (CE1921JP)
  leona...@oktiva.com.br - (85) 8787-0312
  Marketing, Comunicação Social e Tecnologia
 

 How much space there is left on various partition?
 Thierry


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org




Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-26 Thread Leonardo Ruoso
leona...@yuri:~$ df -h
Sist. Arq.Tam   Usad Disp  Uso% Montado em
/dev/sda1 144G   72G   66G  53% /
tmpfs 505M 0  505M   0% /lib/init/rw
udev   10M  216K  9,8M   3% /dev
tmpfs 505M  156K  505M   1% /dev/shm
10.0.0.155:/home  136G  124G  5,0G  97% /home
leona...@yuri:~$


Atenciosamente,

Leonardo Ruoso (CE1921JP)
leona...@oktiva.com.br - (85) 8787-0312
Marketing, Comunicação Social e Tecnologia



Sent from Fortaleza, CE, Brasil


2010/1/26 Thierry Chatelet tchate...@free.fr

 On Tuesday 26 January 2010 16:41:58 Leonardo Ruoso wrote:
  I've upgraded my desktop, but it never ends grub-pc configuration. It's a
  squeeze box.
 
  The syslog shows a message showing some process being blocked for more
 than
  120 seconds.
 
  Any idea?
 
  Atenciosamente,
 
  Leonardo Ruoso (CE1921JP)
  leona...@oktiva.com.br - (85) 8787-0312
  Marketing, Comunicação Social e Tecnologia
 

 How much space there is left on various partition?
 Thierry


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org




Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-26 Thread Thierry Chatelet
On Tuesday 26 January 2010 17:13:27 Leonardo Ruoso wrote:
 leona...@yuri:~$ df -h
 Sist. Arq.Tam   Usad Disp  Uso% Montado em
 /dev/sda1 144G   72G   66G  53% /
 tmpfs 505M 0  505M   0% /lib/init/rw
 udev   10M  216K  9,8M   3% /dev
 tmpfs 505M  156K  505M   1% /dev/shm
 10.0.0.155:/home  136G  124G  5,0G  97% /home
 leona...@yuri:~$
 

Then you have to look at something else. Sorry I can't help you more.
Good luck
Thierry


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: apt-get upgrade - Configuring grub-pc never ends

2010-01-26 Thread Geraldo Netto
Hi guys,

i would try

apt-get -f install

maybe there is something broken on the way...

See ya,

Geraldo
Sapere Aude = Non dvcor, dvco
São Paulo, Brasil, -3gmt
site: http://exdev.sf.net/
msn: geraldo_b...@hotmail.com
skype: geraldo-netto
icq: 145-061-456



2010/1/26 Thierry Chatelet tchate...@free.fr:
 On Tuesday 26 January 2010 17:13:27 Leonardo Ruoso wrote:
 leona...@yuri:~$ df -h
 Sist. Arq.            Tam   Usad Disp  Uso% Montado em
 /dev/sda1             144G   72G   66G  53% /
 tmpfs                 505M     0  505M   0% /lib/init/rw
 udev                   10M  216K  9,8M   3% /dev
 tmpfs                 505M  156K  505M   1% /dev/shm
 10.0.0.155:/home      136G  124G  5,0G  97% /home
 leona...@yuri:~$


 Then you have to look at something else. Sorry I can't help you more.
 Good luck
 Thierry


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Trouble configuring GRUB to dual boot Win2k

2005-06-08 Thread Mr Mike

The problem is win2k is on third ide disk.

  hd0 is 160gig ide with debian
  hd1 is DVD-RW
  hd2 is 60gig ide with Win2k on hdc1  mdk 9.0 hdc6.
  hd3 is CD-RW

I've put together the following Grub statments from reading Grub Docs  
and tried them in menu.lst but it didn't work...  Can anyone give me a  
little help?  I'd settle for a 'good howto' url as long as it plainly  
addresses the issue of doe$ booting from any drive OTHER than the first  
disk...


title Win2k
map (hd0) (hd2)
map (hd2) (hd0)
unhide (hd0,0)
hide (hd0,1)
rootnoverify (hd0,0)
chainloader +1
makeactive
boot

btw:  I've tried various other forms of this like leaving out the  
hide/unhide etc... and it still doesn't want to boot the Win2k  
partition..



TIA ..
mike..


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]