Displaying 9 results from an estimated 9 matches for "68b6b72699c7".
2018 May 29
2
CentOS6: HELP! EFI boot fails after replacing disks...
...E="msdos" UUID="8D81-8D0C" TYPE="vfat"
That UUID is the VFAT partition (I dd'ed the partition from the old disk
(/dev/sdb1) to the new disk (/dev/sda1)
And:
newserver.wendellfreelibrary.org% sudo sgdisk -i1 /dev/sda
Partition GUID code: EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (Microsoft basic data)
Partition unique GUID: BD7AFF34-3303-4D58-92C2-0BB938D467CB
First sector: 2048 (at 1024.0 KiB)
Last sector: 497663 (at 243.0 MiB)
Partition size: 495616 sectors (242.0 MiB)
Attribute flags: 0000000000000000
Partition name: 'primary'
newserver.wendellfreelibrary.org%...
2018 May 29
0
CentOS6: HELP! EFI boot fails after replacing disks...
..." TYPE="vfat"
>
> That UUID is the VFAT partition (I dd'ed the partition from the old disk
> (/dev/sdb1) to the new disk (/dev/sda1)
>
> And:
>
> newserver.wendellfreelibrary.org% sudo sgdisk -i1 /dev/sda
> Partition GUID code: EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (Microsoft basic data)
> Partition unique GUID: BD7AFF34-3303-4D58-92C2-0BB938D467CB
> First sector: 2048 (at 1024.0 KiB)
> Last sector: 497663 (at 243.0 MiB)
> Partition size: 495616 sectors (242.0 MiB)
> Attribute flags: 0000000000000000
> Partition name: 'primary'
>...
2018 May 29
2
CentOS6: HELP! EFI boot fails after replacing disks...
At Mon, 28 May 2018 19:30:25 -0400 CentOS mailing list <centos at centos.org> wrote:
>
> On May 28, 2018, at 18:25, Robert Heller <heller at deepsoft.com> wrote:
>
> > I tried to run efibootmgr, but it wants a model named efivars loaded, but
> > there is no such module available.
>
> Are you not running a CentOS kernel? That module should be available.
2019 Jan 22
2
Re: [PATCH nbdkit v2 2/4] partition filter: Support MBR logical partitions.
...partition.
> +nbdkit -f -v -D partitioning.regions=1 -U - \
> + --filter=partition \
> + partitioning \
> + partitioning1-p1 \
> + partitioning1-p2 \
> + partitioning1-p3 \
> + partitioning1-p4 \
> + type-guid=A2A0D0EB-E5B9-3344-87C0-68B6B72699C7 \
Does type-guid even work with mbr?
> + file-data \
> + type-guid=AF3DC60F-8384-7247-8E79-3D69D8477DE4 \
> + partitioning1-p5 \
> + partitioning1-p6 \
> + partition-type=mbr \
> + partition=6 \
> + --run 'qemu-img convert $nbd pa...
2014 Aug 26
2
Dual boot with Windows 8.1, UEFI
...I find commands "chkdsk", "diskpart", "bootrec", "bcdedit" etc.
To cut an even longer story short, I did something like:
X:\ diskpart
diskpart> select disk 0
diskpart> select partition 4 (the NTFS system one)
diskpart> set id=ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
X:\ bcdedit /set {default} device partition=C:
X:\ bcdedit /set {default} osdevice partition=C:
X:\ bootrec /rebuildbcd
After doing that, the system partition appears as C:, passes chkdsk, and
the system boots successfully into Windows.
3 questions:
- what should I have done instead to create a...
2019 Jan 22
0
Re: [PATCH nbdkit v2 2/4] partition filter: Support MBR logical partitions.
...> magic number. (I also don't know if the "Bad message" claim from the
> nbd plugin is worth improving, but that's unrelated to this series).
I think this would require some rather deeper changes to the way
filters work.
> > + type-guid=A2A0D0EB-E5B9-3344-87C0-68B6B72699C7 \
>
> Does type-guid even work with mbr?
No, this is an error -- in existing code. I'll add an extra patch in
v3 to catch this.
Thanks,
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wo...
2019 Jan 21
0
[PATCH nbdkit v2 2/4] partition filter: Support MBR logical partitions.
...n 6 because partition 4 is the extended partition.
+nbdkit -f -v -D partitioning.regions=1 -U - \
+ --filter=partition \
+ partitioning \
+ partitioning1-p1 \
+ partitioning1-p2 \
+ partitioning1-p3 \
+ partitioning1-p4 \
+ type-guid=A2A0D0EB-E5B9-3344-87C0-68B6B72699C7 \
+ file-data \
+ type-guid=AF3DC60F-8384-7247-8E79-3D69D8477DE4 \
+ partitioning1-p5 \
+ partitioning1-p6 \
+ partition-type=mbr \
+ partition=6 \
+ --run 'qemu-img convert $nbd partitioning1.out'
+
+cmp file-data partitioning1.out
+
+# Same test w...
2019 Jan 21
8
[PATCH nbdkit v2 0/4] Support MBR logical partitions.
This is a revised version of the two series previously posted here:
https://www.redhat.com/archives/libguestfs/2019-January/msg00137.html
https://www.redhat.com/archives/libguestfs/2019-January/msg00139.html
There have been many smaller changes but the highlights are:
- Using SECTOR_SIZE instead of hard-coding 512 everywhere.
- Additional safety checks that the EBR chain doesn't
jump
2019 Jan 20
5
[PATCH nbdkit 0/4] partition: Support MBR logical partitions.
This implements support for MBR logical partitions in
nbdkit-partition-filter, complementing existing support in the
partitioning plugin.
Rich.