Announcement

Collapse
No announcement yet.

My laptop won't boot after upgrading from kubuntu 11.04 to Kubuntu 11.10

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    My laptop won't boot after upgrading from kubuntu 11.04 to Kubuntu 11.10

    About two weeks ago i tried to upgrade kubuntu 11.04 to kubuntu 11.10, without making first the appropriate updated to the system. After upgrading the system the laptop won't boot. I would like to save my documents and reinstall kubuntu without losing any files. Please help..!!!

    #2
    Re: My laptop won't boot after upgrading from kubuntu 11.04 to Kubuntu 11.10

    Depending on the configuration of your laptop, you can boot a Live CD, or a bootable USB stick, and then use the running OS to mount your data partition. With the partition that holds your data mounted, you can copy your data to another USB stick or a connected hard drive, or whatever you need to do.

    Comment


      #3
      Re: My laptop won't boot after upgrading from kubuntu 11.04 to Kubuntu 11.10

      So, i will boot from a live cd and then i will select ''install kubuntu'' and i will choose a partition that holds the files unchaged..am i right?

      Comment


        #4
        Re: My laptop won't boot after upgrading from kubuntu 11.04 to Kubuntu 11.10

        Whoa! If the first thing you need to do is copy data off that hard drive, then you don't choose "Install" you choose "Try Kubuntu".

        Once the desktop comes up, pop open konsole and do

        Code:
        sudo fdisk -l
        which will show the partitions on your hard drive. Hopefully you know where your data are -- let's say you previously had a single large partition with Kubuntu on it, /dev/sda1, formatted ext4. So you would do this:

        Code:
        sudo mkdir -p /mnt/mystuff
        Code:
        sudo mount -t ext4 /dev/sda1 /mnt/mystuff
        Now your partition is mounted. using dolphin you can browse to /mnt/mystuff, and find /home/jethro and there are all your data. Insert your USB storage device, observe the notifier pop it up, choose "open in Dolphin", and now you can simply copy and paste your data from /home/jethro on the mounted internal drive to the USB storage device.

        OK?

        Comment

        Working...
        X