Results 1 to 3 of 3

Thread: Fix bootloader from LiveCD

  1. #1
    Join Date
    Aug 2009
    Location
    Under the stairs.
    Beans
    1,408
    Distro
    Ubuntu 12.04 Precise Pangolin

    Fix bootloader from LiveCD

    My laptop fell off a table. Not far but it fell. I tried to boot up but I have the HDD pasworded and it couldn't get past that into GRUB, just kept looping back. I dual boot Win/Ubuntu12.04. I loaded a LiveCD I had of Debian and can access all my files without any error. I was going to attempt the boot-repair-disk from the USB, (making it with netbootin). I was wondering of there was any way just to fix it from the LiveCD I already have in and when you be involved with that? Thank you in acvance!
    Dell Inspiron 1764 Laptop, Intel CoreTM i5 520M), 4GB Shared Dual Channel DDR3 at 1066MHz, 512MB ATI Mobility RadeonTM HD4330 Integrated Intel HD.

  2. #2
    Join Date
    Apr 2009
    Location
    UK Lake District
    Beans
    3,092
    Distro
    Kubuntu 18.04 Bionic Beaver

    Re: Fix bootloader from LiveCD

    You can chroot in to the installed system like this

    Code:
    * Open a terminal and type
    
    $ sudo fdisk -l
    
        * Now, you need to remember which device listed is your linux distribution, for reference, /dev/sda1 will be used. Now we need to mount the filesystem to /mnt
    
    $ sudo mount /dev/sda1 /mnt
    
        * Now mount the rest of your devices
    
    $ sudo mount --bind /dev /mnt/dev
    
        * Now chroot into your system
    
    $ sudo chroot /mnt
    From there you can start applications as part of the installed system and fix the bootloader etc..

    see also..


    http://ubuntuforums.org/showthread.php?t=1581099
    Ubuntu 18.04

  3. #3
    Join Date
    Aug 2009
    Location
    Under the stairs.
    Beans
    1,408
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Fix bootloader from LiveCD

    Yes! Thank you that is exactly what I needed to do. All fixed now.
    Dell Inspiron 1764 Laptop, Intel CoreTM i5 520M), 4GB Shared Dual Channel DDR3 at 1066MHz, 512MB ATI Mobility RadeonTM HD4330 Integrated Intel HD.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •