[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: usb disk on pcmcia2usb
From: |
Jordan Uggla |
Subject: |
Re: usb disk on pcmcia2usb |
Date: |
Wed, 27 Jun 2012 22:32:34 -0700 |
On Wed, Jun 27, 2012 at 2:06 AM, jk <address@hidden> wrote:
>
> Hi,
> I have a problem, I have a laptop in the disk controller unstable so I
> put the disk in a usb external usb 1.1 but has only very slowly, I added
> a pcmcia card with usb 2.0, the problem is here:
> the laptop does not detect it on a flash I copied a bit 'folder of the
> disc and I manually installed grub in the grub configuration file I put
>
> linux (hd0, 1) / boot/vmlinuz-2.6.38-8-generic root = / dev/sdb1
> initrd (hd0, 1) / boot/initrd.img-2.6.38-8-generic
>
> but not the linux and I am in the grub shell, I also edit fstab?
>
It looks like you've used an automatic translation program to
translate your message into English. I cannot understand what you're
asking, and it also appears to have added extra spaces to your code
for the grub.cfg. If the only other option is to use an automatic
translator, it's better to just send a message in your native language
and let us translate it if needed.
I'm guessing though that your main problem is that you haven't defined
any menu entries. Try a grub.cfg like:
menuentry "GNU/Linux" {
linux (hd0,1)/boot/vmlinuz-2.6.38-8-generic root=/dev/sdb1
initrd (hd0,1)/boot/initrd.img-2.6.38-8-generic
}
But it's also better to use UUID's instead of static device names, so
this is better:
menuentry "GNU/Linux" {
search --set=root --fs-uuid UUID_HERE
linux /boot/vmlinuz-2.6.38-8-generic root=UUID=UUID_HERE
initrd /boot/initrd.img-2.6.38-8-generic
}
--
Jordan Uggla (Jordan_U on irc.freenode.net)