On Thu, 15 Sep 2005, Baza wrote:
> On 15 Sep 2005, at 10:27, Eamonn Sullivan wrote:
> > On 15/09/05, Baza <[EMAIL PROTECTED]> wrote:

Hello Baza,

> > > I don't get a, 'splash screen' when I'm sure breezy has one?
> > sudo dpkg-reconfigure linux-image-`uname -r`
> I get a message telling me I don't have the package 'linux-image' ?

The command above executes `uname -r` (the quotes of left-ticks (`), rather
than right single quotes (')---the key in the top-left of the keyboard on a
UK keymap) and then inserts the output of that command that onto the end of
'linux-image-'.

I think you're doing rather well not to have a 'linux-image-*' package
installed---that's the kernel (and presumbly the one you booted with).  :-)

Try:

  sudo dpkg-reconfigure linux-image-$(uname -r)

which will do the same thing, but with less abigous characters;  you could
also do:

  sudo mkinitramfs -o /boot/initrd.img-$(uname -r) $(uname -r)

To find out the name of the kernel you do have:

  dpkg -l linux-image-*

Hope that helps,

        -Paul
-- 
The summer is familiar here.  Edinburgh, GB


-- 
ubuntu-uk mailing list
ubuntu-uk@lists.ubuntu.com
http://lists.ubuntu.com/mailman/listinfo/ubuntu-uk

Reply via email to