Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 25

Thread: Can't select Ubuntu partition to boot into?

  1. #11
    Join Date
    Oct 2012
    Beans
    58

    Re: Can't select Ubuntu partition to boot into?

    Kirk I’m a bit confused here are the results after
    cat /etc/fstab

    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc nodev,noexec,nosuid 0 0
    # / was on /dev/sda2 during installation
    UUID=76e10564-2322-438f-9bbf-42744c35a453 / ext4 errors=remount-ro 0 1
    /dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
    nagantman@nagantman-Dimension-2400:~$


  2. #12
    Join Date
    Oct 2012
    Beans
    58

    Re: Can't select Ubuntu partition to boot into?

    I'm rather new to Linux and am still getting use to Terminal and reading what it tells me after executing commands.

  3. #13
    Join Date
    Jul 2012
    Location
    Illinois, USA
    Beans
    550

    Re: Can't select Ubuntu partition to boot into?

    Quote Originally Posted by Nagantman View Post
    Kirk I’m a bit confused here are the results after
    cat /etc/fstab

    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc nodev,noexec,nosuid 0 0
    # / was on /dev/sda2 during installation
    UUID=76e10564-2322-438f-9bbf-42744c35a453 / ext4 errors=remount-ro 0 1
    /dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
    nagantman@nagantman-Dimension-2400:~$

    I don't see a swap partition in your fstab. By the way, the image you posted does not work...

  4. #14
    Join Date
    Jul 2012
    Location
    Illinois, USA
    Beans
    550

    Post Re: Can't select Ubuntu partition to boot into?

    Quote Originally Posted by Nagantman View Post
    I'm rather new to Linux and am still getting use to Terminal and reading what it tells me after executing commands.
    Please provide the output of:
    Code:
    sudo fdisk -l
    And I will assist you in identifying your swap partition if it exists.

  5. #15
    Join Date
    Oct 2012
    Beans
    58

    Re: Can't select Ubuntu partition to boot into?

    Disk /dev/sda: 40.0 GB, 40000000000 bytes
    255 heads, 63 sectors/track, 4863 cylinders, total 78125000 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x2a402a3f

    Device Boot Start End Blocks Id System
    /dev/sda1 * 2048 53266431 26632192 7 HPFS/NTFS/exFAT
    /dev/sda2 57362432 78123007 10380288 83 Linux
    /dev/sda3 53266432 57362431 2048000 82 Linux swap / Solaris

    Partition table entries are not in disk order

  6. #16
    Join Date
    Jul 2012
    Location
    Illinois, USA
    Beans
    550

    Lightbulb Re: Can't select Ubuntu partition to boot into?

    Quote Originally Posted by Nagantman View Post
    Disk /dev/sda: 40.0 GB, 40000000000 bytes
    255 heads, 63 sectors/track, 4863 cylinders, total 78125000 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x2a402a3f

    Device Boot Start End Blocks Id System
    /dev/sda1 * 2048 53266431 26632192 7 HPFS/NTFS/exFAT
    /dev/sda2 57362432 78123007 10380288 83 Linux
    /dev/sda3 53266432 57362431 2048000 82 Linux swap / Solaris

    Partition table entries are not in disk order
    /dev/sda3 is your swap partition. This should activate it if it's deactivated:
    Code:
    sudo swapon /dev/sda3

  7. #17
    Join Date
    Oct 2012
    Beans
    58

    Re: Can't select Ubuntu partition to boot into?

    Yes, I knew it was sda3, and I had tried that command just to get this

    nagantman@nagantman-Dimension-2400:~$ sudo swapon /dev/sda3
    [sudo] password for nagantman:
    nagantman@nagantman-Dimension-2400:~$

    No result?

  8. #18
    Join Date
    Jul 2012
    Location
    Illinois, USA
    Beans
    550

    Question Re: Can't select Ubuntu partition to boot into?

    Quote Originally Posted by Nagantman View Post
    Yes, I knew it was sda3, and I had tried that command just to get this

    nagantman@nagantman-Dimension-2400:~$ sudo swapon /dev/sda3
    [sudo] password for nagantman:
    nagantman@nagantman-Dimension-2400:~$

    No result?
    Can I get the outputs of:

    Code:
    cat /proc/swaps
    Code:
    free

  9. #19
    Join Date
    Oct 2012
    Beans
    58

    Re: Can't select Ubuntu partition to boot into?

    There you are-

    nagantman@nagantman-Dimension-2400:~$ cat /proc/swaps
    Filename Type Size Used Priority
    /dev/sda3 partition 2047996 0 -1
    nagantman@nagantman-Dimension-2400:~$ free
    total used free shared buffers cached
    Mem: 1541700 839948 701752 0 100896 428244
    -/+ buffers/cache: 310808 1230892
    Swap: 2047996 0 2047996
    nagantman@nagantman-Dimension-2400:~$

  10. #20
    Join Date
    Jul 2012
    Location
    Illinois, USA
    Beans
    550

    Lightbulb Re: Can't select Ubuntu partition to boot into?

    Quote Originally Posted by Nagantman View Post
    There you are-

    nagantman@nagantman-Dimension-2400:~$ cat /proc/swaps
    Filename Type Size Used Priority
    /dev/sda3 partition 2047996 0 -1
    nagantman@nagantman-Dimension-2400:~$ free
    total used free shared buffers cached
    Mem: 1541700 839948 701752 0 100896 428244
    -/+ buffers/cache: 310808 1230892
    Swap: 2047996 0 2047996
    nagantman@nagantman-Dimension-2400:~$
    Your swap looks like it's working to me. It's normal for it to be empty unless it's needed.

Page 2 of 3 FirstFirst 123 LastLast

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
  •