Jump to content

Being able to assign a different name at opencore GUI startup


3 posts in this topic

Recommended Posts

Printing a name other than the one placed on the hard drive.

I have several systems mounted as seen in the photo, including some with a USB SSD adapter, but the name I have recently given it is the hard drive.

I don't know if it would be interesting or if it already exists to change the name of the hard drive to whatever we want, such as macOS 15 Sequoia or macOS 15 Sequoia beta.


image.thumb.jpeg.07c89a3d9a3863f5ba3cefa5906aa97b.jpeg

It is possible to assign a different name to the hard drive where we start our boots.

In my case, the name is related to the type of hard drive, which can be seen in the photo. But it might be possible to assign a name like macOS 15 Sequoia or macOS 15 Sequoia beta

 

image.thumb.jpeg.a239ca5afa67435792815b50032261fa.jpeg

  • 1 month later...

@kaoskinkae

In Terminal (booting the disk to be renamed):

  • diskutil info / | grep "APFS Volume Group"
  • you get a long string with letters and numbers (e.g. 654436D1-8026-4D83-81DA-942C2FE63961)
  • cd /System/Volumes/Preboot/654436D1-8026-4D83-81DA-942C2FE63961/System/Library/CoreServices/
  • sudo bless --folder . --label "NOMBRE"
  • where NOMBRE is the name you want to be applied.

To check, in Terminal, one of these commands:

  • cd /System/Volumes/Preboot/654436D1-8026-4D83-81DA-942C2FE63961/System/Library/CoreServices/
  • pico .disk_label.contentDetails

or

  • printf "NOMBRE" | sudo tee .disk_label.contentDetails; echo sudo chgrp wheel .disk*

Courtesy of @Anto65

  • Like 4
×
×
  • Create New...