Announcement

Collapse
No announcement yet.

Kubunto won't boot after entering the console

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

    #16
    Re: Kubunto won't boot after entering the console

    I managed to install Gparted and resize the existing partition into one of approximately 95 gb and one of 50 gb. Total hdd space is 160 gb. How do I find and transfer the files?

    Thanks a lot for helping out so patiently!

    Comment


      #17
      Re: Kubunto won't boot after entering the console

      Determine the location of both partitions:

      Code:
      sudo fdisk -l
      Mount the both partitions using the information from above:

      Code:
      cd /media
      sudo mkdir sda8
      sudo mount -t ext3 /dev/sda8 /media/sda8
      Repeat above command for second partition, changing sda8 to the correct value from output of fdisk -l.

      Open konqueror and copy files from existing partition to new partition.

      Mike
      http://monte48lowes.blogspot.com

      Comment


        #18
        Re: Kubunto won't boot after entering the console

        I managed to mount one, the sda8. After that I don't know how to find the other partition.

        Do I understand this correctly?
        sudo mount -t ext3 /dev/sda8 /media/sda8
        ext3 si the external harddrive
        /dev/sda8 is a device named sda8?
        /media/sda8 is where the device is mounted?

        I can't say I grasp all this. I was unable to fugure out how to find and mount the other partition.

        Comment


          #19
          Re: Kubunto won't boot after entering the console

          What is the output of:

          Code:
          sudo fdisk -l

          Mike
          http://monte48lowes.blogspot.com

          Comment


            #20
            Re: Kubunto won't boot after entering the console

            /dev/sda1 boot linux
            /dev/sda2 extended
            /dev/sda5 linux swap / solaris

            Do you need more than that?

            Comment


              #21
              Re: Kubunto won't boot after entering the console

              Yes, Is that all the output for the command?
              http://monte48lowes.blogspot.com

              Comment


                #22
                Re: Kubunto won't boot after entering the console

                Device Boot start end blocks id system
                /dev/sda1 * 1 18704 150239848+ 83 linux
                /dev/sda2 18705 19457 6048472+ 5 extended
                /dev/sda5 18705 19457 6048441 82 linux swap

                I couldn't copy/paste it so I was a bit lazy.

                Comment


                  #23
                  Re: Kubunto won't boot after entering the console

                  First thing. Startup gparted and format /dev/sda5 as 'ext3'. Then:

                  Code:
                  cd /media
                  sudo mkdir sda1
                  sudo mkdir sda5
                  sudo mount -t ext3 /dev/sda1 /media/sda1
                  sudo mount -t ext3 /dev/sda5 /media/sda5
                  This will mount the first partition 'sda1' at /media/sda1 and the second 'sda5' at /media/sda5.

                  I do apologize I was tired last evening and while helping another person, confused the two situations.

                  Mike
                  http://monte48lowes.blogspot.com

                  Comment


                    #24
                    Re: Kubunto won't boot after entering the console

                    Both /dev/sda2 and /dev/sda5 have a lock symbol nest to them and I can't format them.

                    Comment


                      #25
                      Re: Kubunto won't boot after entering the console

                      Make sure neither them is mounted.

                      Code:
                      sudo umount /dev/sda2
                      sudo umount /dev/sda5
                      Mike
                      http://monte48lowes.blogspot.com

                      Comment


                        #26
                        Re: Kubunto won't boot after entering the console

                        The console says:
                        sudo: unmount: command not found

                        Comment


                          #27
                          Re: Kubunto won't boot after entering the console

                          umount vice unmount.

                          Mike
                          http://monte48lowes.blogspot.com

                          Comment


                            #28
                            Re: Kubunto won't boot after entering the console

                            OK, here goes:
                            "sudo umount /dev/sda2" gives me:
                            umount: /dev/sda2: not found

                            "sudo umount /dev/sda5"
                            umount: /dev/sda5: not mounted

                            "cd /media" results in:
                            could not run the specified command

                            Comment


                              #29
                              Re: Kubunto won't boot after entering the console

                              Restart a live session and install gparted:

                              Code:
                              sudo apt-get install gparted
                              Run gparted and format sda5 to 'ext3'.

                              Then mount sda1 and sda5:

                              Code:
                              cd /media
                              sudo mkdir sda1
                              sudo mkdir sda5
                              sudo mount -t ext3 /dev/sda1 /media/sda1
                              sudo mount -t ext3 /dev/sda5 /media/sda5
                              Then transfer files from /media/sda1 to /media/sda5

                              Mike
                              http://monte48lowes.blogspot.com

                              Comment


                                #30
                                Re: Kubunto won't boot after entering the console

                                I finally managed to format the sda5 partition to ext3.

                                When I write "sudo mount -t ext3 /dev/sda1 /media/sda1" I get this reply:
                                "mount: mount point /media/sda1 does not exist"

                                Comment

                                Working...
                                X