How do I use a PARTUUID in fstab?












0















I needed to increase the size of my boot partition (I already removed old kernels with autoremove).
I increased the size of my drive (VM), and created a new partition. I did all things wonderful to make the new partition /boot. Blkid shows sda1 UUID=1234 PARTUUID=5678-01 and the new partition sda3 UUID=1234 PARTUUID=5678-03.
I tried adding PARTUUID="5678-03" /boot to my fstab but it didn't boot (it works with /dev/sda3 /boot).
Since partitions 1 and 3 are on the same disk (and the same UUID) how can I enter that in fstab?










share|improve this question














bumped to the homepage by Community 5 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • I think it's PARTUUID=5678-03 /boot without the "'s what you have to use in fstab.

    – mook765
    Apr 21 '18 at 9:01
















0















I needed to increase the size of my boot partition (I already removed old kernels with autoremove).
I increased the size of my drive (VM), and created a new partition. I did all things wonderful to make the new partition /boot. Blkid shows sda1 UUID=1234 PARTUUID=5678-01 and the new partition sda3 UUID=1234 PARTUUID=5678-03.
I tried adding PARTUUID="5678-03" /boot to my fstab but it didn't boot (it works with /dev/sda3 /boot).
Since partitions 1 and 3 are on the same disk (and the same UUID) how can I enter that in fstab?










share|improve this question














bumped to the homepage by Community 5 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • I think it's PARTUUID=5678-03 /boot without the "'s what you have to use in fstab.

    – mook765
    Apr 21 '18 at 9:01














0












0








0








I needed to increase the size of my boot partition (I already removed old kernels with autoremove).
I increased the size of my drive (VM), and created a new partition. I did all things wonderful to make the new partition /boot. Blkid shows sda1 UUID=1234 PARTUUID=5678-01 and the new partition sda3 UUID=1234 PARTUUID=5678-03.
I tried adding PARTUUID="5678-03" /boot to my fstab but it didn't boot (it works with /dev/sda3 /boot).
Since partitions 1 and 3 are on the same disk (and the same UUID) how can I enter that in fstab?










share|improve this question














I needed to increase the size of my boot partition (I already removed old kernels with autoremove).
I increased the size of my drive (VM), and created a new partition. I did all things wonderful to make the new partition /boot. Blkid shows sda1 UUID=1234 PARTUUID=5678-01 and the new partition sda3 UUID=1234 PARTUUID=5678-03.
I tried adding PARTUUID="5678-03" /boot to my fstab but it didn't boot (it works with /dev/sda3 /boot).
Since partitions 1 and 3 are on the same disk (and the same UUID) how can I enter that in fstab?







boot partitioning






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 20 '18 at 17:20









joerabbijoerabbi

1113




1113





bumped to the homepage by Community 5 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 5 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • I think it's PARTUUID=5678-03 /boot without the "'s what you have to use in fstab.

    – mook765
    Apr 21 '18 at 9:01



















  • I think it's PARTUUID=5678-03 /boot without the "'s what you have to use in fstab.

    – mook765
    Apr 21 '18 at 9:01

















I think it's PARTUUID=5678-03 /boot without the "'s what you have to use in fstab.

– mook765
Apr 21 '18 at 9:01





I think it's PARTUUID=5678-03 /boot without the "'s what you have to use in fstab.

– mook765
Apr 21 '18 at 9:01










2 Answers
2






active

oldest

votes


















0














As @mook765 mentions in comments, I think you can use PARTUUID, but just without quotes.



PARTUUID=5678-03 /boot [...]


Also, failing that, I think you can use the /dev/disk/by-partuuid/* symlinks that udev creates.



You may also want to use 'UUID', not 'PARTUUID'. Here's an example of the boot section of my fstab (this is the default of Ubuntu):



# /boot was on /dev/sda1 during installation
UUID=4e8a17a6-87ca-403b-9a1a-896d553e518c /boot ext3 defaults 0 2
UUID=7A56-4947 /boot/efi vfat defaults 0 1


To get the UUID of a block device:



sudo blkid /dev/sda1
/dev/sda1: LABEL="ubuntu-boot" UUID="4e8a17a6-87ca-403b-9a1a-896d553e518c" TYPE="ext3" PARTLABEL="ubuntu-boot" PARTUUID="57e3d2de-492b-4875-b110-76325e2401ec"


Just for example on another machine, you'll notice that each filesystem on the disk has a different UUID:



root@bierstadt:~# lsblk -o name,UUID /dev/sda
NAME UUID
sda
├─sda1 8D99-B7B6
├─sda2 147da7cf-c356-4ff9-a6fa-8fb555290b25
└─sda3 1dd7ce7d-6de9-40e0-bd3f-5550ae40a588
└─sda3_crypt mAdSjw-3B31-Z7Im-WbCk-QmIP-b01M-5mFckC
├─ubuntu--vg-root 1b3d8c0f-2241-48c1-a272-39f8e683ccc9
└─ubuntu--vg-swap_1 fd34789c-c65f-4253-a810-8183988e9760


Note the UUID comes with the filesystem. So, if you have cloned the partition, the UUID will come with it. You should probably change it if you want to mount it, or refer to it distinctly:



From this blog:




Since it is not possible to mount two file systems with the same UUID,
extra care need to be taken when LVM snapshots (or cloned disks) are
used in an environment: mounting might fail due to duplicate UUIDs.
[...]
One way to deal with this is by the way to change the UUID during
creation or afterwards, another way is to mount with the nouuid
option.




To change:



# tune2fs -U new_uuid /dev/sdaX


References




  • https://liquidat.wordpress.com/2013/03/13/uuids-and-linux-everything-you-ever-need-to-know/

  • https://wiki.debian.org/Part-UUID

  • https://wiki.archlinux.org/index.php/fstab






share|improve this answer


























  • Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

    – joerabbi
    Apr 21 '18 at 17:32













  • Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

    – dpb
    Apr 22 '18 at 0:19











  • Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

    – joerabbi
    Apr 23 '18 at 17:04



















0














There were 2 partitions on this disk. I was trying to increase the size of my /boot partition. I added a new partition, umount'ed /boot and cloned it to the new partition. This left me with identical UUID's on 2 partitions. I did run tune2fs to create a random UUID for the old /boot partition. Note, I did have to run grub-install /dev/sda to fix grub and allow reboot. Alternately, I found I could fix grub and then add the old partition to the logical volume group to extend /, this also changed the UUID. thanks for the ideas.






share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026746%2fhow-do-i-use-a-partuuid-in-fstab%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    As @mook765 mentions in comments, I think you can use PARTUUID, but just without quotes.



    PARTUUID=5678-03 /boot [...]


    Also, failing that, I think you can use the /dev/disk/by-partuuid/* symlinks that udev creates.



    You may also want to use 'UUID', not 'PARTUUID'. Here's an example of the boot section of my fstab (this is the default of Ubuntu):



    # /boot was on /dev/sda1 during installation
    UUID=4e8a17a6-87ca-403b-9a1a-896d553e518c /boot ext3 defaults 0 2
    UUID=7A56-4947 /boot/efi vfat defaults 0 1


    To get the UUID of a block device:



    sudo blkid /dev/sda1
    /dev/sda1: LABEL="ubuntu-boot" UUID="4e8a17a6-87ca-403b-9a1a-896d553e518c" TYPE="ext3" PARTLABEL="ubuntu-boot" PARTUUID="57e3d2de-492b-4875-b110-76325e2401ec"


    Just for example on another machine, you'll notice that each filesystem on the disk has a different UUID:



    root@bierstadt:~# lsblk -o name,UUID /dev/sda
    NAME UUID
    sda
    ├─sda1 8D99-B7B6
    ├─sda2 147da7cf-c356-4ff9-a6fa-8fb555290b25
    └─sda3 1dd7ce7d-6de9-40e0-bd3f-5550ae40a588
    └─sda3_crypt mAdSjw-3B31-Z7Im-WbCk-QmIP-b01M-5mFckC
    ├─ubuntu--vg-root 1b3d8c0f-2241-48c1-a272-39f8e683ccc9
    └─ubuntu--vg-swap_1 fd34789c-c65f-4253-a810-8183988e9760


    Note the UUID comes with the filesystem. So, if you have cloned the partition, the UUID will come with it. You should probably change it if you want to mount it, or refer to it distinctly:



    From this blog:




    Since it is not possible to mount two file systems with the same UUID,
    extra care need to be taken when LVM snapshots (or cloned disks) are
    used in an environment: mounting might fail due to duplicate UUIDs.
    [...]
    One way to deal with this is by the way to change the UUID during
    creation or afterwards, another way is to mount with the nouuid
    option.




    To change:



    # tune2fs -U new_uuid /dev/sdaX


    References




    • https://liquidat.wordpress.com/2013/03/13/uuids-and-linux-everything-you-ever-need-to-know/

    • https://wiki.debian.org/Part-UUID

    • https://wiki.archlinux.org/index.php/fstab






    share|improve this answer


























    • Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

      – joerabbi
      Apr 21 '18 at 17:32













    • Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

      – dpb
      Apr 22 '18 at 0:19











    • Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

      – joerabbi
      Apr 23 '18 at 17:04
















    0














    As @mook765 mentions in comments, I think you can use PARTUUID, but just without quotes.



    PARTUUID=5678-03 /boot [...]


    Also, failing that, I think you can use the /dev/disk/by-partuuid/* symlinks that udev creates.



    You may also want to use 'UUID', not 'PARTUUID'. Here's an example of the boot section of my fstab (this is the default of Ubuntu):



    # /boot was on /dev/sda1 during installation
    UUID=4e8a17a6-87ca-403b-9a1a-896d553e518c /boot ext3 defaults 0 2
    UUID=7A56-4947 /boot/efi vfat defaults 0 1


    To get the UUID of a block device:



    sudo blkid /dev/sda1
    /dev/sda1: LABEL="ubuntu-boot" UUID="4e8a17a6-87ca-403b-9a1a-896d553e518c" TYPE="ext3" PARTLABEL="ubuntu-boot" PARTUUID="57e3d2de-492b-4875-b110-76325e2401ec"


    Just for example on another machine, you'll notice that each filesystem on the disk has a different UUID:



    root@bierstadt:~# lsblk -o name,UUID /dev/sda
    NAME UUID
    sda
    ├─sda1 8D99-B7B6
    ├─sda2 147da7cf-c356-4ff9-a6fa-8fb555290b25
    └─sda3 1dd7ce7d-6de9-40e0-bd3f-5550ae40a588
    └─sda3_crypt mAdSjw-3B31-Z7Im-WbCk-QmIP-b01M-5mFckC
    ├─ubuntu--vg-root 1b3d8c0f-2241-48c1-a272-39f8e683ccc9
    └─ubuntu--vg-swap_1 fd34789c-c65f-4253-a810-8183988e9760


    Note the UUID comes with the filesystem. So, if you have cloned the partition, the UUID will come with it. You should probably change it if you want to mount it, or refer to it distinctly:



    From this blog:




    Since it is not possible to mount two file systems with the same UUID,
    extra care need to be taken when LVM snapshots (or cloned disks) are
    used in an environment: mounting might fail due to duplicate UUIDs.
    [...]
    One way to deal with this is by the way to change the UUID during
    creation or afterwards, another way is to mount with the nouuid
    option.




    To change:



    # tune2fs -U new_uuid /dev/sdaX


    References




    • https://liquidat.wordpress.com/2013/03/13/uuids-and-linux-everything-you-ever-need-to-know/

    • https://wiki.debian.org/Part-UUID

    • https://wiki.archlinux.org/index.php/fstab






    share|improve this answer


























    • Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

      – joerabbi
      Apr 21 '18 at 17:32













    • Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

      – dpb
      Apr 22 '18 at 0:19











    • Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

      – joerabbi
      Apr 23 '18 at 17:04














    0












    0








    0







    As @mook765 mentions in comments, I think you can use PARTUUID, but just without quotes.



    PARTUUID=5678-03 /boot [...]


    Also, failing that, I think you can use the /dev/disk/by-partuuid/* symlinks that udev creates.



    You may also want to use 'UUID', not 'PARTUUID'. Here's an example of the boot section of my fstab (this is the default of Ubuntu):



    # /boot was on /dev/sda1 during installation
    UUID=4e8a17a6-87ca-403b-9a1a-896d553e518c /boot ext3 defaults 0 2
    UUID=7A56-4947 /boot/efi vfat defaults 0 1


    To get the UUID of a block device:



    sudo blkid /dev/sda1
    /dev/sda1: LABEL="ubuntu-boot" UUID="4e8a17a6-87ca-403b-9a1a-896d553e518c" TYPE="ext3" PARTLABEL="ubuntu-boot" PARTUUID="57e3d2de-492b-4875-b110-76325e2401ec"


    Just for example on another machine, you'll notice that each filesystem on the disk has a different UUID:



    root@bierstadt:~# lsblk -o name,UUID /dev/sda
    NAME UUID
    sda
    ├─sda1 8D99-B7B6
    ├─sda2 147da7cf-c356-4ff9-a6fa-8fb555290b25
    └─sda3 1dd7ce7d-6de9-40e0-bd3f-5550ae40a588
    └─sda3_crypt mAdSjw-3B31-Z7Im-WbCk-QmIP-b01M-5mFckC
    ├─ubuntu--vg-root 1b3d8c0f-2241-48c1-a272-39f8e683ccc9
    └─ubuntu--vg-swap_1 fd34789c-c65f-4253-a810-8183988e9760


    Note the UUID comes with the filesystem. So, if you have cloned the partition, the UUID will come with it. You should probably change it if you want to mount it, or refer to it distinctly:



    From this blog:




    Since it is not possible to mount two file systems with the same UUID,
    extra care need to be taken when LVM snapshots (or cloned disks) are
    used in an environment: mounting might fail due to duplicate UUIDs.
    [...]
    One way to deal with this is by the way to change the UUID during
    creation or afterwards, another way is to mount with the nouuid
    option.




    To change:



    # tune2fs -U new_uuid /dev/sdaX


    References




    • https://liquidat.wordpress.com/2013/03/13/uuids-and-linux-everything-you-ever-need-to-know/

    • https://wiki.debian.org/Part-UUID

    • https://wiki.archlinux.org/index.php/fstab






    share|improve this answer















    As @mook765 mentions in comments, I think you can use PARTUUID, but just without quotes.



    PARTUUID=5678-03 /boot [...]


    Also, failing that, I think you can use the /dev/disk/by-partuuid/* symlinks that udev creates.



    You may also want to use 'UUID', not 'PARTUUID'. Here's an example of the boot section of my fstab (this is the default of Ubuntu):



    # /boot was on /dev/sda1 during installation
    UUID=4e8a17a6-87ca-403b-9a1a-896d553e518c /boot ext3 defaults 0 2
    UUID=7A56-4947 /boot/efi vfat defaults 0 1


    To get the UUID of a block device:



    sudo blkid /dev/sda1
    /dev/sda1: LABEL="ubuntu-boot" UUID="4e8a17a6-87ca-403b-9a1a-896d553e518c" TYPE="ext3" PARTLABEL="ubuntu-boot" PARTUUID="57e3d2de-492b-4875-b110-76325e2401ec"


    Just for example on another machine, you'll notice that each filesystem on the disk has a different UUID:



    root@bierstadt:~# lsblk -o name,UUID /dev/sda
    NAME UUID
    sda
    ├─sda1 8D99-B7B6
    ├─sda2 147da7cf-c356-4ff9-a6fa-8fb555290b25
    └─sda3 1dd7ce7d-6de9-40e0-bd3f-5550ae40a588
    └─sda3_crypt mAdSjw-3B31-Z7Im-WbCk-QmIP-b01M-5mFckC
    ├─ubuntu--vg-root 1b3d8c0f-2241-48c1-a272-39f8e683ccc9
    └─ubuntu--vg-swap_1 fd34789c-c65f-4253-a810-8183988e9760


    Note the UUID comes with the filesystem. So, if you have cloned the partition, the UUID will come with it. You should probably change it if you want to mount it, or refer to it distinctly:



    From this blog:




    Since it is not possible to mount two file systems with the same UUID,
    extra care need to be taken when LVM snapshots (or cloned disks) are
    used in an environment: mounting might fail due to duplicate UUIDs.
    [...]
    One way to deal with this is by the way to change the UUID during
    creation or afterwards, another way is to mount with the nouuid
    option.




    To change:



    # tune2fs -U new_uuid /dev/sdaX


    References




    • https://liquidat.wordpress.com/2013/03/13/uuids-and-linux-everything-you-ever-need-to-know/

    • https://wiki.debian.org/Part-UUID

    • https://wiki.archlinux.org/index.php/fstab







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Apr 22 '18 at 0:50

























    answered Apr 21 '18 at 3:55









    dpbdpb

    5,15911948




    5,15911948













    • Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

      – joerabbi
      Apr 21 '18 at 17:32













    • Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

      – dpb
      Apr 22 '18 at 0:19











    • Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

      – joerabbi
      Apr 23 '18 at 17:04



















    • Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

      – joerabbi
      Apr 21 '18 at 17:32













    • Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

      – dpb
      Apr 22 '18 at 0:19











    • Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

      – joerabbi
      Apr 23 '18 at 17:04

















    Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

    – joerabbi
    Apr 21 '18 at 17:32







    Partition 1 and partition 3 are on the same drive and have the same UUID plus different PARTUUIDs. /dev/sda1: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-01" root@tjoe01:~# blkid /dev/sda3 /dev/sda3: UUID="e7b59339-f325-4631-a4eb-2ed5f6b12c45" TYPE="ext4" PARTUUID="db623058-03"

    – joerabbi
    Apr 21 '18 at 17:32















    Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

    – dpb
    Apr 22 '18 at 0:19





    Check the updates on the question re: cloning, changing UUIDs, and the UUID coming with the Filesystem, not the partition, let me know if that helps.

    – dpb
    Apr 22 '18 at 0:19













    Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

    – joerabbi
    Apr 23 '18 at 17:04





    Ok, that makes sense, since what I did was create a new partition on the same drive and then clone the old partition to the new partition. I will see if reformatting the old partition clears this up. Thanks.

    – joerabbi
    Apr 23 '18 at 17:04













    0














    There were 2 partitions on this disk. I was trying to increase the size of my /boot partition. I added a new partition, umount'ed /boot and cloned it to the new partition. This left me with identical UUID's on 2 partitions. I did run tune2fs to create a random UUID for the old /boot partition. Note, I did have to run grub-install /dev/sda to fix grub and allow reboot. Alternately, I found I could fix grub and then add the old partition to the logical volume group to extend /, this also changed the UUID. thanks for the ideas.






    share|improve this answer




























      0














      There were 2 partitions on this disk. I was trying to increase the size of my /boot partition. I added a new partition, umount'ed /boot and cloned it to the new partition. This left me with identical UUID's on 2 partitions. I did run tune2fs to create a random UUID for the old /boot partition. Note, I did have to run grub-install /dev/sda to fix grub and allow reboot. Alternately, I found I could fix grub and then add the old partition to the logical volume group to extend /, this also changed the UUID. thanks for the ideas.






      share|improve this answer


























        0












        0








        0







        There were 2 partitions on this disk. I was trying to increase the size of my /boot partition. I added a new partition, umount'ed /boot and cloned it to the new partition. This left me with identical UUID's on 2 partitions. I did run tune2fs to create a random UUID for the old /boot partition. Note, I did have to run grub-install /dev/sda to fix grub and allow reboot. Alternately, I found I could fix grub and then add the old partition to the logical volume group to extend /, this also changed the UUID. thanks for the ideas.






        share|improve this answer













        There were 2 partitions on this disk. I was trying to increase the size of my /boot partition. I added a new partition, umount'ed /boot and cloned it to the new partition. This left me with identical UUID's on 2 partitions. I did run tune2fs to create a random UUID for the old /boot partition. Note, I did have to run grub-install /dev/sda to fix grub and allow reboot. Alternately, I found I could fix grub and then add the old partition to the logical volume group to extend /, this also changed the UUID. thanks for the ideas.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 24 '18 at 17:38









        joerabbijoerabbi

        1113




        1113






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026746%2fhow-do-i-use-a-partuuid-in-fstab%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            香粉寮

            GameSpot