Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Status
The first post of this thread is a WikiPost and can be edited by anyone with the appropiate permissions. Your edits will be public.

joevt

macrumors 604
Jun 21, 2012
6,938
4,241
Is there a terminal method or something to dig deeper into why the otherwise dead-and-gone Cat2 still appears at the boot screen(s)? As you see, nothing gives it away in the diskutil list results.
It's on one of your APFS volumes.
Code:
diskutil list
diskutil apfs list
curl -L https://gist.github.com/joevt/6d7a0ede45106345a39bdfa0ac10ffd6/raw -o ~/Downloads/DiskUtil.sh
source ~/Downloads/DiskUtil.sh
mountEFIpartitions
mountRecoveryHDpartitions
mountRecoveryPartitions
mountPrebootPartitions
mount
find /System/Volumes /Volumes -maxdepth 2 -name '*-*-*-*-*' -type d
dumpAllDiskLabels > ~/AllDiskLabels.txt
cat ~/AllDiskLabels.txt
 
Last edited:

TAPKAE

macrumors member
Oct 19, 2020
34
16
It's on one of your APFS volumes.
Code:
diskutil list
diskutil list apfs
curl -L https://gist.github.com/joevt/6d7a0ede45106345a39bdfa0ac10ffd6/raw -o ~/Downloads/DiskUtil.sh
source ~/Downloads/DiskUtil.sh
mountEFIpartitions
mountRecoveryHDpartitions
mountRecoveryPartitions
mountPrebootPartitions
mount
find /System/Volumes /Volumes -maxdepth 2 -name '*-*-*-*-*' -type d
dumpAllDiskLabels > ~/AllDiskLabels.txt
cat ~/AllDiskLabels.txt
Okay, I put all this into Terminal and got the following in the screenshot. Not sure what I'm looking at, or what to do. I don't see anything called Cat2, but I suppose by deduction, it might be one of the things right there in front of me. The "AllDiskLabels.txt" file was zero bytes.

In the EFI volume, what can be gleaned from the timestamped Opencore .txt files? Is that the verbose stuff that scrolls down the screen if verbose logging is turned on in OC app?
 

Attachments

  • Where's Cat2.png
    Where's Cat2.png
    347.6 KB · Views: 84

joevt

macrumors 604
Jun 21, 2012
6,938
4,241
Okay, I put all this into Terminal and got the following in the screenshot. Not sure what I'm looking at, or what to do. I don't see anything called Cat2, but I suppose by deduction, it might be one of the things right there in front of me. The "AllDiskLabels.txt" file was zero bytes.

In the EFI volume, what can be gleaned from the timestamped Opencore .txt files? Is that the verbose stuff that scrolls down the screen if verbose logging is turned on in OC app?
The second command is supposed to be diskutil apfs list. I've corrected it in my previous post.
You need to enter your password to finish the other commands.

When you see a bunch of text output, it's better to put the text in a text file and post that so there's no limit to what can be seen and the text can be searched and edited. Add the text file as an attachment or paste it into your post surrounded by [code] and [/code] tags to maintain the monospaced character alignment and spacing.

Anyway, from the output so far, we see that your Preboot and Recovery volumes have 8 items which means you've had 8 system volumes on your disk. Obviously they all don't still exist. We'll need the output from diskutil apfs list to see what's up and figure out which can be removed.

I see disk1s8 didn't get mounted by the mount commands. You can mount it manually with diskutil mount disk1s8. Do that before executing all the other commands. The result of the mount command will tell you where disk1s8 is mounted (the mountpoint). Add the path of the mountpoint to the open command to open the mountpoint in the Finder so you can see the contents.
 

TAPKAE

macrumors member
Oct 19, 2020
34
16
The second command is supposed to be diskutil apfs list. I've corrected it in my previous post.
You need to enter your password to finish the other commands.

When you see a bunch of text output, it's better to put the text in a text file and post that so there's no limit to what can be seen and the text can be searched and edited. Add the text file as an attachment or paste it into your post surrounded by [code] and [/code] tags to maintain the monospaced character alignment and spacing.

Anyway, from the output so far, we see that your Preboot and Recovery volumes have 8 items which means you've had 8 system volumes on your disk. Obviously they all don't still exist. We'll need the output from diskutil apfs list to see what's up and figure out which can be removed.

I see disk1s8 didn't get mounted by the mount commands. You can mount it manually with diskutil mount disk1s8. Do that before executing all the other commands. The result of the mount command will tell you where disk1s8 is mounted (the mountpoint). Add the path of the mountpoint to the open command to open the mountpoint in the Finder so you can see the contents.
Here is what I got.



Last login: Sun Dec 26 23:49:01 on ttys000 PLC-Mojave:~ centralscrutinizer$ diskutil list /dev/disk0 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *960.2 GB disk0 1: EFI EFI 209.7 MB disk0s1 2: Apple_APFS Container disk1 960.0 GB disk0s2 /dev/disk1 (synthesized): #: TYPE NAME SIZE IDENTIFIER 0: APFS Container Scheme - +960.0 GB disk1 Physical Store disk0s2 1: APFS Volume High Sierra 107.5 GB disk1s1 2: APFS Volume Preboot 658.8 MB disk1s2 3: APFS Volume Recovery 3.1 GB disk1s3 4: APFS Volume VM 1.1 MB disk1s4 5: APFS Volume Big Sur - Data 82.3 GB disk1s5 6: APFS Volume 15.3 GB disk1s8 7: APFS Volume Update 3.9 MB disk1s9 8: APFS Volume Mojave 107.8 GB disk1s10 PLC-Mojave:~ centralscrutinizer$ diskutil list apfs Could not find disk for apfs PLC-Mojave:~ centralscrutinizer$ curl -L https://gist.github.com/joevt/6d7a0ede45106345a39bdfa0ac10ffd6/raw -o ~/Downloads/DiskUtil.sh % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0source ~/Downloads/DiskUtil.sh mountEFIpartitions mountRecoveryHDpartitions mountRecoveryPartitions mountPrebootPartitions mount find /System/Volumes /Volumes -maxdepth 2 -name '*-*-*-*-*' -type d dumpAllDiskLabels > ~/AllDiskLabels.txt cat ~/AllDiskLabels.txt 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 26099 100 26099 0 0 26710 0 --:--:-- --:--:-- --:--:-- 26710 PLC-Mojave:~ centralscrutinizer$ source ~/Downloads/DiskUtil.sh # Download and build bless from https://github.com/joevt/bless , then update the path of directbless defined in DiskUtil.sh PLC-Mojave:~ centralscrutinizer$ mountEFIpartitions PLC-Mojave:~ centralscrutinizer$ mountRecoveryHDpartitions PLC-Mojave:~ centralscrutinizer$ mountRecoveryPartitions PLC-Mojave:~ centralscrutinizer$ mountPrebootPartitions PLC-Mojave:~ centralscrutinizer$ mount /dev/disk1s10 on / (apfs, local, journaled) devfs on /dev (devfs, local, nobrowse) /dev/disk1s4 on /private/var/vm (apfs, local, noexec, journaled, noatime, nobrowse) /dev/disk1s1 on /Volumes/High Sierra (apfs, local, journaled) /dev/disk1s5 on /Volumes/Big Sur - Data (apfs, local, journaled) /dev/disk1s9 on /Volumes/Update (apfs, local, journaled) map -hosts on /net (autofs, nosuid, automounted, nobrowse) map auto_home on /home (autofs, automounted, nobrowse) /dev/disk0s1 on /Volumes/EFI (msdos, asynchronous, local, noowners) /dev/disk1s3 on /Volumes/Recovery (apfs, local, journaled, nobrowse) /dev/disk1s2 on /Volumes/Preboot (apfs, local, journaled, nobrowse) PLC-Mojave:~ centralscrutinizer$ find /System/Volumes /Volumes -maxdepth 2 -name '*-*-*-*-*' -type d find: /System/Volumes: No such file or directory /Volumes/Recovery/F3E52963-7D14-3D8B-BF22-100D6C068E8F /Volumes/Recovery/4E24D9D2-F69B-43C2-91F4-A33973FB25B3 /Volumes/Recovery/BB15CD0C-0809-4471-B2BF-6328E0F73942 /Volumes/Recovery/A88295F5-F5E1-49AA-B1DC-E3BBA2C056D5 /Volumes/Recovery/7A137C6B-FBCB-4479-8CC6-2F65742AC6B6 /Volumes/Recovery/256759B4-C4B7-4695-9BD2-99CC53D1C6CF /Volumes/Recovery/540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121 /Volumes/Recovery/04658C9B-6E8F-4192-8EF6-FC7B665154E6 /Volumes/Preboot/F3E52963-7D14-3D8B-BF22-100D6C068E8F /Volumes/Preboot/4E24D9D2-F69B-43C2-91F4-A33973FB25B3 /Volumes/Preboot/BB15CD0C-0809-4471-B2BF-6328E0F73942 /Volumes/Preboot/A88295F5-F5E1-49AA-B1DC-E3BBA2C056D5 /Volumes/Preboot/7A137C6B-FBCB-4479-8CC6-2F65742AC6B6 /Volumes/Preboot/256759B4-C4B7-4695-9BD2-99CC53D1C6CF /Volumes/Preboot/540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121 /Volumes/Preboot/04658C9B-6E8F-4192-8EF6-FC7B665154E6 PLC-Mojave:~ centralscrutinizer$ dumpAllDiskLabels > ~/AllDiskLabels.txt Password: Sorry, try again. Password: sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence sed: RE error: illegal byte sequence PLC-Mojave:~ centralscrutinizer$
 

upipes

macrumors member
Apr 3, 2019
84
28
Galicia
Hi all,
I'm experiencing an USB problem on a MacPro 3.1 with a clean installation of Catalina by dosdude1.
Some devices connected to the USB in the back panel are missing. This is basically my USB sound card and a the USB dongles for some software.
The system info shows the devices correctly, but they simply are not working.
Is this a known behavior?
The sound card is not self powered, so I want to think that is not a power problem.

Thanks for your advices.
 

joevt

macrumors 604
Jun 21, 2012
6,938
4,241
Here is what I got.



Code:
Last login: Sun Dec 26 23:49:01 on ttys000
PLC-Mojave:~ centralscrutinizer$ diskutil list
/dev/disk0 (internal, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *960.2 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:                 Apple_APFS Container disk1         960.0 GB   disk0s2
/dev/disk1 (synthesized):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      APFS Container Scheme -                      +960.0 GB   disk1
                                 Physical Store disk0s2
   1:                APFS Volume High Sierra             107.5 GB   disk1s1
   2:                APFS Volume Preboot                 658.8 MB   disk1s2
   3:                APFS Volume Recovery                3.1 GB     disk1s3
   4:                APFS Volume VM                      1.1 MB     disk1s4
   5:                APFS Volume Big Sur - Data          82.3 GB    disk1s5
   6:                APFS Volume                         15.3 GB    disk1s8
   7:                APFS Volume Update                  3.9 MB     disk1s9
   8:                APFS Volume Mojave                  107.8 GB   disk1s10

PLC-Mojave:~ centralscrutinizer$ diskutil list apfs
Could not find disk for apfs
PLC-Mojave:~ centralscrutinizer$ curl -L https://gist.github.com/joevt/6d7a0ede45106345a39bdfa0ac10ffd6/raw -o ~/Downloads/DiskUtil.sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0source ~/Downloads/DiskUtil.sh
mountEFIpartitions
mountRecoveryHDpartitions
mountRecoveryPartitions
mountPrebootPartitions
mount
find /System/Volumes /Volumes -maxdepth 2 -name '*-*-*-*-*' -type d
dumpAllDiskLabels > ~/AllDiskLabels.txt
cat ~/AllDiskLabels.txt
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 26099  100 26099    0     0  26710      0 --:--:-- --:--:-- --:--:-- 26710
PLC-Mojave:~ centralscrutinizer$ source ~/Downloads/DiskUtil.sh
# Download and build bless from https://github.com/joevt/bless , then update the path of directbless defined in DiskUtil.sh
PLC-Mojave:~ centralscrutinizer$ mountEFIpartitions
PLC-Mojave:~ centralscrutinizer$ mountRecoveryHDpartitions
PLC-Mojave:~ centralscrutinizer$ mountRecoveryPartitions
PLC-Mojave:~ centralscrutinizer$ mountPrebootPartitions
PLC-Mojave:~ centralscrutinizer$ mount
/dev/disk1s10 on / (apfs, local, journaled)
devfs on /dev (devfs, local, nobrowse)
/dev/disk1s4 on /private/var/vm (apfs, local, noexec, journaled, noatime, nobrowse)
/dev/disk1s1 on /Volumes/High Sierra (apfs, local, journaled)
/dev/disk1s5 on /Volumes/Big Sur - Data (apfs, local, journaled)
/dev/disk1s9 on /Volumes/Update (apfs, local, journaled)
map -hosts on /net (autofs, nosuid, automounted, nobrowse)
map auto_home on /home (autofs, automounted, nobrowse)
/dev/disk0s1 on /Volumes/EFI (msdos, asynchronous, local, noowners)
/dev/disk1s3 on /Volumes/Recovery (apfs, local, journaled, nobrowse)
/dev/disk1s2 on /Volumes/Preboot (apfs, local, journaled, nobrowse)
PLC-Mojave:~ centralscrutinizer$ find /System/Volumes /Volumes -maxdepth 2 -name '*-*-*-*-*' -type d
find: /System/Volumes: No such file or directory
/Volumes/Recovery/F3E52963-7D14-3D8B-BF22-100D6C068E8F
/Volumes/Recovery/4E24D9D2-F69B-43C2-91F4-A33973FB25B3
/Volumes/Recovery/BB15CD0C-0809-4471-B2BF-6328E0F73942
/Volumes/Recovery/A88295F5-F5E1-49AA-B1DC-E3BBA2C056D5
/Volumes/Recovery/7A137C6B-FBCB-4479-8CC6-2F65742AC6B6
/Volumes/Recovery/256759B4-C4B7-4695-9BD2-99CC53D1C6CF
/Volumes/Recovery/540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121
/Volumes/Recovery/04658C9B-6E8F-4192-8EF6-FC7B665154E6
/Volumes/Preboot/F3E52963-7D14-3D8B-BF22-100D6C068E8F
/Volumes/Preboot/4E24D9D2-F69B-43C2-91F4-A33973FB25B3
/Volumes/Preboot/BB15CD0C-0809-4471-B2BF-6328E0F73942
/Volumes/Preboot/A88295F5-F5E1-49AA-B1DC-E3BBA2C056D5
/Volumes/Preboot/7A137C6B-FBCB-4479-8CC6-2F65742AC6B6
/Volumes/Preboot/256759B4-C4B7-4695-9BD2-99CC53D1C6CF
/Volumes/Preboot/540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121
/Volumes/Preboot/04658C9B-6E8F-4192-8EF6-FC7B665154E6
PLC-Mojave:~ centralscrutinizer$ dumpAllDiskLabels > ~/AllDiskLabels.txt
Password:
Sorry, try again.
Password:
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
sed: RE error: illegal byte sequence
PLC-Mojave:~ centralscrutinizer$
For next time, use [code] instead of [icode] for multi line text output.
Need output from diskutil apfs list
The RE error has something to do with Mojave using bash instead of zsh. I'll try to fix that but I don't think you need to rerun the dumpAllDiskLabels command. There should be a ~/AllDiskLabels.txt file that was created. Attach that also.
 

TAPKAE

macrumors member
Oct 19, 2020
34
16
For next time, use [code] instead of [icode] for multi line text output.
Need output from diskutil apfs list
The RE error has something to do with Mojave using bash instead of zsh. I'll try to fix that but I don't think you need to rerun the dumpAllDiskLabels command. There should be a ~/AllDiskLabels.txt file that was created. Attach that also.

Code:
Last login: Mon Dec 27 09:49:03 on ttys000


PLC-Mojave:~ centralscrutinizer$ diskutil apfs list


APFS Container (1 found)


|


+-- Container disk1 3B332C56-0B3B-4345-929D-DED777B2F0B0


    ====================================================


    APFS Container Reference:     disk1


    Size (Capacity Ceiling):      959987367936 B (960.0 GB)


    Capacity In Use By Volumes:   317942161408 B (317.9 GB) (33.1% used)


    Capacity Not Allocated:       642045206528 B (642.0 GB) (66.9% free)


    |


    +-< Physical Store disk0s2 BAF0E9B7-8E65-4852-87BD-72014F64C588


    |   -----------------------------------------------------------


    |   APFS Physical Store Disk:   disk0s2


    |   Size:                       959987367936 B (960.0 GB)


    |


    +-> Volume disk1s1 7A137C6B-FBCB-4479-8CC6-2F65742AC6B6


    |   ---------------------------------------------------


    |   APFS Volume Disk (Role):   disk1s1 (No specific role)


    |   Name:                      High Sierra (Case-insensitive)


    |   Mount Point:               /Volumes/High Sierra


    |   Capacity Consumed:         107523584000 B (107.5 GB)


    |   FileVault:                 No


    |


    +-> Volume disk1s2 E2DCD249-DAB8-4EDB-8EDB-5CE93D202047


    |   ---------------------------------------------------


    |   APFS Volume Disk (Role):   disk1s2 (Preboot)


    |   Name:                      Preboot (Case-insensitive)


    |   Mount Point:               /Volumes/Preboot


    |   Capacity Consumed:         658808832 B (658.8 MB)


    |   FileVault:                 No


    |


    +-> Volume disk1s3 F840B631-5576-4179-8D6B-8C8513CA56E1


    |   ---------------------------------------------------


    |   APFS Volume Disk (Role):   disk1s3 (Recovery)


    |   Name:                      Recovery (Case-insensitive)


    |   Mount Point:               /Volumes/Recovery


    |   Capacity Consumed:         3113684992 B (3.1 GB)


    |   FileVault:                 No


    |


    +-> Volume disk1s4 0BD44785-1A3A-4D74-9D2C-5C410C4CC6A3


    |   ---------------------------------------------------


    |   APFS Volume Disk (Role):   disk1s4 (VM)


    |   Name:                      VM (Case-insensitive)


    |   Mount Point:               /private/var/vm


    |   Capacity Consumed:         1069056 B (1.1 MB)


    |   FileVault:                 No


    |


    +-> Volume disk1s5 540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121


    |   ---------------------------------------------------


    |   APFS Volume Disk (Role):   disk1s5 (No specific role)


    |   Name:                      Big Sur - Data (Case-insensitive)


    |   Mount Point:               /Volumes/Big Sur - Data


    |   Capacity Consumed:         82304966656 B (82.3 GB)


    |   FileVault:                 No


    |


    +-> Volume ERROR -69808


    |   -------------------


    |   APFS Volume Disk (Role):   disk1s8 (System)


    |   Name:                      ERROR -69808


    |   Mount Point:               Not Mounted


    |   Capacity Consumed:         15322329088 B (15.3 GB)


    |   FileVault:                 No


    |


    +-> Volume disk1s9 4F0F7A0D-7A10-44D1-86F4-43D716F06B1F


    |   ---------------------------------------------------


    |   APFS Volume Disk (Role):   disk1s9 (No specific role)


    |   Name:                      Update (Case-insensitive)


    |   Mount Point:               /Volumes/Update


    |   Capacity Consumed:         3940352 B (3.9 MB)


    |   FileVault:                 No


    |


    +-> Volume disk1s10 4E24D9D2-F69B-43C2-91F4-A33973FB25B3


        ----------------------------------------------------


        APFS Volume Disk (Role):   disk1s10 (No specific role)


        Name:                      Mojave (Case-insensitive)


        Mount Point:               /


        Capacity Consumed:         108809625600 B (108.8 GB)


        FileVault:                 No


PLC-Mojave:~ centralscrutinizer$

Here is the AllDiskLabels file from just now. I see how it finally dredged up Cat2. Where does this lead us now?

All things Catalina are free to be dumped.

Thanks.
 

Attachments

  • AllDiskLabels.txt
    85.6 KB · Views: 58

jowaju

macrumors 6502
Mar 7, 2019
251
333
A $50 MacMini that can complete many of the tasks as well as newer Minis which cost $$10X or more. ;)
I'm not sure what you mean by that. I completely agree most people would be fine with it. I'm saying I don't think the upgrade from a 2.26 processor to a 3.06 processor was worth the time or effort. I can't think of anything that would need the processor upgrade that wouldn't still work without it.
 

K two

macrumors 68020
Dec 6, 2018
2,308
3,176
North America
I'm not sure what you mean by that. I completely agree most people would be fine with it. I'm saying I don't think the upgrade from a 2.26 processor to a 3.06 processor was worth the time or effort. I can't think of anything that would need the processor upgrade that wouldn't still work without it.
Duly noted. 🤷‍♂️
 

Ausdauersportler

macrumors 603
Nov 25, 2019
5,007
5,826
Hope you all had a silent time to relax!

Found my single test system with Catalina installed and updated to the latest official security update using OCLP 0.3.2 and the VMware settings applied (Kernel->Emulate>CpuidData and CpuidMask). Is it still works pretty well :)

19H1615.png
 
  • Like
Reactions: KennyW and hvds

Finbarr Cnaipe

macrumors member
Mar 10, 2019
60
56
North America
Yet another $50 Mini upped to latest Catalina build via CatalinaOTAswufix, OC and @dosdude1 Catalina Patcher v.1.4.4, fast, smooth, reliable every single time. :cool:

View attachment 1934836

I have one of these packed up in its box in my closet. Do you have any good use case suggestions? I tried to run SecuritySpy previously (to set up dedicated headless Server for it), but it couldn't keep up with my cameras (4x720p + 4x1080p, all h.264.). I couldn't think of any other usefulness for it for me, outside of test device/monkey-around/surfing/email/etc...
 
  • Like
Reactions: K two

joevt

macrumors 604
Jun 21, 2012
6,938
4,241
Code:
Last login: Mon Dec 27 09:49:03 on ttys000
PLC-Mojave:~ centralscrutinizer$ diskutil apfs list
APFS Container (1 found)
|
+-- Container disk1 3B332C56-0B3B-4345-929D-DED777B2F0B0
    ====================================================
    APFS Container Reference:     disk1
    Size (Capacity Ceiling):      959987367936 B (960.0 GB)
    Capacity In Use By Volumes:   317942161408 B (317.9 GB) (33.1% used)
    Capacity Not Allocated:       642045206528 B (642.0 GB) (66.9% free)
    |
    +-< Physical Store disk0s2 BAF0E9B7-8E65-4852-87BD-72014F64C588
    |   -----------------------------------------------------------
    |   APFS Physical Store Disk:   disk0s2
    |   Size:                       959987367936 B (960.0 GB)
    |
    +-> Volume disk1s1 7A137C6B-FBCB-4479-8CC6-2F65742AC6B6
    |   ---------------------------------------------------
    |   APFS Volume Disk (Role):   disk1s1 (No specific role)
    |   Name:                      High Sierra (Case-insensitive)
    |   Mount Point:               /Volumes/High Sierra
    |   Capacity Consumed:         107523584000 B (107.5 GB)
    |   FileVault:                 No
    |
    +-> Volume disk1s2 E2DCD249-DAB8-4EDB-8EDB-5CE93D202047
    |   ---------------------------------------------------
    |   APFS Volume Disk (Role):   disk1s2 (Preboot)
    |   Name:                      Preboot (Case-insensitive)
    |   Mount Point:               /Volumes/Preboot
    |   Capacity Consumed:         658808832 B (658.8 MB)
    |   FileVault:                 No
    |
    +-> Volume disk1s3 F840B631-5576-4179-8D6B-8C8513CA56E1
    |   ---------------------------------------------------
    |   APFS Volume Disk (Role):   disk1s3 (Recovery)
    |   Name:                      Recovery (Case-insensitive)
    |   Mount Point:               /Volumes/Recovery
    |   Capacity Consumed:         3113684992 B (3.1 GB)
    |   FileVault:                 No
    |
    +-> Volume disk1s4 0BD44785-1A3A-4D74-9D2C-5C410C4CC6A3
    |   ---------------------------------------------------
    |   APFS Volume Disk (Role):   disk1s4 (VM)
    |   Name:                      VM (Case-insensitive)
    |   Mount Point:               /private/var/vm
    |   Capacity Consumed:         1069056 B (1.1 MB)
    |   FileVault:                 No
    |
    +-> Volume disk1s5 540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121
    |   ---------------------------------------------------
    |   APFS Volume Disk (Role):   disk1s5 (No specific role)
    |   Name:                      Big Sur - Data (Case-insensitive)
    |   Mount Point:               /Volumes/Big Sur - Data
    |   Capacity Consumed:         82304966656 B (82.3 GB)
    |   FileVault:                 No
    |
    +-> Volume ERROR -69808
    |   -------------------
    |   APFS Volume Disk (Role):   disk1s8 (System)
    |   Name:                      ERROR -69808
    |   Mount Point:               Not Mounted
    |   Capacity Consumed:         15322329088 B (15.3 GB)
    |   FileVault:                 No
    |
    +-> Volume disk1s9 4F0F7A0D-7A10-44D1-86F4-43D716F06B1F
    |   ---------------------------------------------------
    |   APFS Volume Disk (Role):   disk1s9 (No specific role)
    |   Name:                      Update (Case-insensitive)
    |   Mount Point:               /Volumes/Update
    |   Capacity Consumed:         3940352 B (3.9 MB)
    |   FileVault:                 No
    |
    +-> Volume disk1s10 4E24D9D2-F69B-43C2-91F4-A33973FB25B3
        ----------------------------------------------------
        APFS Volume Disk (Role):   disk1s10 (No specific role)
        Name:                      Mojave (Case-insensitive)
        Mount Point:               /
        Capacity Consumed:         108809625600 B (108.8 GB)
        FileVault:                 No
PLC-Mojave:~ centralscrutinizer$

Here is the AllDiskLabels file from just now. I see how it finally dredged up Cat2. Where does this lead us now?

All things Catalina are free to be dumped.

Thanks.
Pasting in a text editor from the Terminal.app is weird. You need to replace occurrences of 3 consecutive line feeds with a single linefeed.
I don't have that problem using BBEdit.app instead of TextEdit.app.

Anyway, it seems to me that you have the following situation:
Code:
Delete:
CAT 2 - Data            /Volumes/Preboot/04658C9B-6E8F-4192-8EF6-FC7B665154E6 (10.13.6)
                        /Volumes/Recovery/04658C9B-6E8F-4192-8EF6-FC7B665154E6 ?
CAT 2                   /Volumes/Preboot/256759B4-C4B7-4695-9BD2-99CC53D1C6CF (10.15.7)
                        /Volumes/Recovery/256759B4-C4B7-4695-9BD2-99CC53D1C6CF (10.15.7)
Catalina                /Volumes/Preboot/A88295F5-F5E1-49AA-B1DC-E3BBA2C056D5 (10.15.7)
                        /Volumes/Recovery/A88295F5-F5E1-49AA-B1DC-E3BBA2C056D5 (10.15.7)
Catalina - Data         /Volumes/Preboot/BB15CD0C-0809-4471-B2BF-6328E0F73942 (10.15.7)
                        /Volumes/Recovery/BB15CD0C-0809-4471-B2BF-6328E0F73942 ?
PARRISH LUCAS CENTRAL   /Volumes/Preboot/F3E52963-7D14-3D8B-BF22-100D6C068E8F (10.13.6)
                        /Volumes/Recovery/F3E52963-7D14-3D8B-BF22-100D6C068E8F (10.13.6)

Keep (do not delete):
Mojave                  /Volumes/Preboot/4E24D9D2-F69B-43C2-91F4-A33973FB25B3 (10.14.6)
                        /Volumes/Recovery/4E24D9D2-F69B-43C2-91F4-A33973FB25B3 ?
Big Sur - Data          /Volumes/Preboot/540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121 (10.13.6)
                        /Volumes/Recovery/540C78C9-3C4F-4E7A-8AB4-6ED95CC1C121 (11.6.2)
High Sierra             /Volumes/Preboot/7A137C6B-FBCB-4479-8CC6-2F65742AC6B6 (10.13.6)
                        /Volumes/Recovery/7A137C6B-FBCB-4479-8CC6-2F65742AC6B6 (10.13.6)

So you probably want to delete the first list of folders.
But before you do that, can you boot Big Sur and get a new list from diskutil list and diskutil apfs list?
Mojave is unable to see the disk1s8 partition which might be the Big Sur system volume?
And I'm not sure why there's no disk1s6 or disk1s7? Maybe you deleted them but haven't restarted yet?
 

K two

macrumors 68020
Dec 6, 2018
2,308
3,176
North America
I have one of these packed up in its box in my closet. Do you have any good use case suggestions? I tried to run SecuritySpy previously (to set up dedicated headless Server for it), but it couldn't keep up with my cameras (4x720p + 4x1080p, all h.264.). I couldn't think of any other usefulness for it for me, outside of test device/monkey-around/surfing/email/etc...
You cited the one task for which it is not well-suited. Transcoding and compiling are completed accurately if not in a rush. Photo editing, page layout and large document handling are no problem. Minis make handy headless servers. There are four Mini3,1, two iMacs, a MacBook, one iPad on a APBS network with one Mini as the printer server for two Canon printers. File, printer and screen-sharing throughout. This particular Mini displays to a 46” 120 Hz LED TV at 1080P via MDP>HDMI/DVI on macOS 12.2b1 and it’s beautiful. 6GB RAM and SSD is a minimum req. Every OS ever published by Apple runs competently given the real-world limits of the hardware. @dosdude1, @ASentientBot and Dortania make it possible. :cool:

12.2b1.jpg
 
Last edited:
  • Like
Reactions: hvds

Fish1313

macrumors newbie
Nov 6, 2018
12
1
germany
Hi folks, is there anybody out there with a MBP8,1 with OC and Catalina?!
I cant find any hint for this Sleep - problem...
every hint i would appreciate much!

TIA
 

Ausdauersportler

macrumors 603
Nov 25, 2019
5,007
5,826
Hi folks, is there anybody out there with a MBP8,1 with OC and Catalina?!
I cant find any hint for this Sleep - problem...
every hint i would appreciate much!

TIA
Your 2011 system crashes on wake? Check if the HD3000 drivers have been installed properly.
 

Fish1313

macrumors newbie
Nov 6, 2018
12
1
germany
Your 2011 system crashes on wake? Check if the HD3000 drivers have been installed properly.
Thanks for the quick reply! I guess there is not. But how to check for? Hackintool?
Within Hackintool there is an generic entry for the display. I would check this with IORegistryExplorer…
 
Last edited:

Ausdauersportler

macrumors 603
Nov 25, 2019
5,007
5,826
Thanks for the quick reply! I guess there is not. But how to check for? Hackintool?
Search /System/Library/Extensions for any files containing the HD3000 and SNB strings, normally the patcher should have added them.
In case they are missing rerun the post install patcher tool.
 

Fish1313

macrumors newbie
Nov 6, 2018
12
1
germany
Search /System/Library/Extensions for any files containing the HD3000 and SNB strings, normally the patcher should have added them.
In case they are missing rerun the post install patcher tool.
Sorry for this awkward question, but which post install patcher do you mean?! I used to use the OCLP post install... But there is some post install patcher within the tools of dosdude. As i understand correctly i need to load WEG and Lilu according to set the framebuffer and connectors in good manner?! (source dorthania)
 
Last edited:

Ausdauersportler

macrumors 603
Nov 25, 2019
5,007
5,826
Sorry for this awkward question, but which post install patcher do you mean?! I used to use the OCLP post install... But there is some post install patcher within the tools of dosdude.
Do not mix patcher methods - it will create a real mess.

Have never used OCLP with Catalin and systems needing post-install-pacthing. So my experience is limited there.
Have you applied the OCLP post install patches?

To get this working you need to enable it on Catalina through
5. Patcher Settings
7. Allow Accel on Mojave/Catalina: Currently False

Then go back, create and install the newly configured OC, reboot and rerun OCLP with option #3.
 

Fish1313

macrumors newbie
Nov 6, 2018
12
1
germany
Thanks for taking time. With OCLP 0.3.3 the post install throws back an failure - "there is nothing to patch" (BigSur and above...) With the OCLP GUI edition i could use the Post Install option… But to no avail.
I guess i need the correct drivers (but where from) or even WEG?!
 

huedrant

macrumors newbie
Oct 25, 2013
23
2
Hi everyone!
I'm a bit confused regarding the different patching methods. I read on the the OCLP homepage that OCLP can also patch Catalina. So this would be my favourite solution because I could easily install updates. So I tried this and created a 10.15 USB stick installer and patched it with OCLP. But when I was in the installation process, the install was not possible on my machine; obviously the installer was not correctly patched.

Now I'm confused: I had perfect results with Dosdudes catalina patcher and the Dosdude Catalina USB Stick still works great. But while Catalina is mentioned on the OCLP page as a target system, it's not mentioned here in the starting post of the thread.
Is there any possibility to use OCLP to patch Catalina installers? If so, has it any advantages over dosdudes original patcher? What are the options and what ist the correct approach for catalina?
 

Ausdauersportler

macrumors 603
Nov 25, 2019
5,007
5,826
Hi everyone!
I'm a bit confused regarding the different patching methods. I read on the the OCLP homepage that OCLP can also patch Catalina. So this would be my favourite solution because I could easily install updates. So I tried this and created a 10.15 USB stick installer and patched it with OCLP. But when I was in the installation process, the install was not possible on my machine; obviously the installer was not correctly patched.

Now I'm confused: I had perfect results with Dosdudes catalina patcher and the Dosdude Catalina USB Stick still works great. But while Catalina is mentioned on the OCLP page as a target system, it's not mentioned here in the starting post of the thread.
Is there any possibility to use OCLP to patch Catalina installers? If so, has it any advantages over dosdudes original patcher? What are the options and what ist the correct approach for catalina?
Would you mind to share more information about your own system?

- OCLP is a year old and targets clearly Big Sur and Monterey.
- Catalina is an option for systems with HD5000/HD6000 GPU just because these patches got never into the dosdude1 patcher.
- OCLP does not support Catalina or Mojave officially, so no issues are accepted and no fixes will be offered.
- OCLP works great on systems like iMacs and MacPros modded with Metal GPU and BT/WiFi to avoid any legacy patching (even with Mojave and Catalina)!!
 
Last edited:
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.