Jump to content

[Pre Release] macOS Sequoia 15.1


193 posts in this topic

Recommended Posts

5 hours ago, mnfesq said:

 

I have been using MS Remote Desktop without any issues since my first installation of Sequoia 15.0 Beta 1.  I assume you are talking about using your Hack as the RDP guest and a Windows computer as your RDP host.  I haven't followed your posts about Remote Desktop but am willing to share my configurations for remote connections in case that is your issue.

 

Just to be sure we're talking about the same issue, my Remote Desktop issue is specifically with Ethernet (Intel i219LM) with IntelMausi.kext in Sequoia 15.1 Beta.  This problem comes and goes with different Sequoia Beta versions.  The problem is that after booting Sequoia 15.1 Beta, I am unable to establish a Remote Desktop connection (via MS Remote Desktop) to a remote Windows desktop.  The work-around (for me) is to toggle the Ethernet connection (inactive -> active).  After toggling Ethernet, Remote Desktop sessions work without issues until the next boot.

 

I do not experience this problem at all with Sonoma.  I have not tested with the latest Sequoia 15.1 24B82.

 

Are you testing the same configuration (Ethernet chipset / kext)?

 

 

EDIT: Smooth upgrade to Sequoia 15.1 Beta 24B82 on my HackBookPro6,2.  Booting with OC 1.0.2.  Applying post-install patches with OCLP 2.0.2.  I do not experience my reported MS Remote Desktop / Ethernet issue on this HackBookPro6,2.

 

Screenshot2024-10-22at8_03_49PM.png.ebc32c9a48a24638b12b9cdb047721c1.png

Edited by deeveedee
  • Like 1
Link to comment
Share on other sites

Smooth upgrade of my HackBookPro6,2 from Sequoia 15.1 RC 24B82 -> 24B83.  Booting with Open Core 1.0.2.  Applying post-install patches with OCLP 2.0.2.

 

EDIT: I am not using amfi=0x80 (same as amfi_get_out_of_my_way=0x1) boot-args and I am not using "Disable Library Validation" kernel patches.  This hack needs only amfipass.kext 1.4.1.

 

Screenshot2024-10-25at7_43_24AM.png.e9bc54e38d73b9e1815fc20f8a6a0616.png

Edited by deeveedee
  • Like 8
Link to comment
Share on other sites

I try BCM 4352

I install rootpatch OCLP

Following kexts are installed.

IOSkywalkFamily.kext

IO80211FamilyLegacy.kext

AirPortBrcmNIC.kext

AirportBrcmFixup.kext

AirPortBrcmNIC_Injector.kext

image.png.b2232e60e663d0a21ff81420896eb631.png

 

 

image.png.5da2bfee3562e64e79999f7ec99a1139.png

 

Still show network not available.please check my config.plistconfig.plist

Thanks for support.

 

I fixed wifi Antena Now worked well.

Thanks again All.

 

Edited by nmano
Link to comment
Share on other sites

1 hour ago, nmano said:

I try BCM 4352

I install rootpatch OCLP

Following kexts are installed.

IOSkywalkFamily.kext

IO80211FamilyLegacy.kext

AirPortBrcmNIC.kext

AirportBrcmFixup.kext

AirPortBrcmNIC_Injector.kext

image.png.b2232e60e663d0a21ff81420896eb631.png

 

 

image.png.5da2bfee3562e64e79999f7ec99a1139.png

 

Still show network not available.please check my config.plistconfig.plist

Thanks for support.

 

BCM4352 working. Try to re-add OCLP patches. Config from one of my laptops:

Config.plist

Edited by Stefanalmare
  • Like 4
  • Thanks 1
Link to comment
Share on other sites

Does anyone know how to install/get pip to work under macOS 15.1?

 

I am trying to install shellgpt to via Terminal which requires pip, but I always get this error:

% pip install shell-gpt[litellm]  
zsh: no matches found: shell-gpt[litellm]

Python is installed:

5t33y0@5T33Y0s-MBP ~ % python --version               
Python 3.9.6
5t33y0@5T33Y0s-MBP ~ % python3 --version
Python 3.13.0

Thanks.

Link to comment
Share on other sites

2 hours ago, cankiulascmnfye said:

Does anyone know how to install/get pip to work under macOS 15.1?

 

I am trying to install shellgpt to via Terminal which requires pip, but I always get this error:

% pip install shell-gpt[litellm]  
zsh: no matches found: shell-gpt[litellm]

Python is installed:

5t33y0@5T33Y0s-MBP ~ % python --version               
Python 3.9.6
5t33y0@5T33Y0s-MBP ~ % python3 --version
Python 3.13.0

Thanks.

 

This is how I have by brew:

alex@iMac-Pro---Alex ~ % which python                                

/usr/local/bin/python

alex@iMac-Pro---Alex ~ % which python3                               

/usr/local/bin/python3

alex@iMac-Pro---Alex ~ % which pip                                   

/usr/local/bin/pip

alex@iMac-Pro---Alex ~ % which pip3                                  

/usr/local/bin/pip3

alex@iMac-Pro---Alex ~ % python --version

Python 3.13.0

alex@iMac-Pro---Alex ~ % python3 --version

Python 3.13.0

alex@iMac-Pro---Alex ~ % pip --version

pip 24.2 from /usr/local/lib/python3.13/site-packages/pip (python 3.13)

alex@iMac-Pro---Alex ~ % pip3 --version

pip 24.2 from /usr/local/lib/python3.13/site-packages/pip (python 3.13)

 

Uninstall system python:

sudo rm -rf /Library/Frameworks/Python.framework/Versions/3.x

sudo rm /usr/local/bin/python3

sudo rm/usr/local/bin/pip3

brew install python

echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
which python3
which pip
which pip3
It should be:

/usr/local/bin/python3
/usr/local/bin/pip
/usr/local/bin/pip3
pip --version

pip3 --version

It should be:

pip 24.2 from /usr/local/lib/python3.13/site-packages/pip (python 3.13)

To have pip and pip3 the same:

ln -s /usr/local/bin/pip3 /usr/local/bin/pip

 

shellgpt:

brew install shell-gpt
Test it:

sgpt --help
For bash:

export OPENAI_API_KEY="your_openai_api_key"

For zsh:

echo 'export OPENAI_API_KEY="your_openai_api_key"' >> ~/.zshrc
source ~/.zshrc
Now you can use shell-gpt from terminal.

Edited by Stefanalmare
  • Like 2
Link to comment
Share on other sites

On 10/25/2024 at 3:04 PM, deeveedee said:

Smooth upgrade of my HackBookPro6,2 from Sequoia 15.1 RC 24B82 -> 24B83.  Booting with Open Core 1.0.2.  Applying post-install patches with OCLP 2.0.2.

 

EDIT: I am not using amfi=0x80 (same as amfi_get_out_of_my_way=0x1) boot-args and I am not using "Disable Library Validation" kernel patches.  This hack needs only amfipass.kext 1.4.1.

 

Screenshot2024-10-25at7_43_24AM.png.e9bc54e38d73b9e1815fc20f8a6a0616.png

 

How many gb downloads were made for the update?

Link to comment
Share on other sites

19 minutes ago, HyperX7 said:

 

How many gb downloads were made for the update?

For my HackBookPro6,2 (SMBIOS MBP6,2, NVidia Tesla graphics) I always perform the macOS OTA upgrade without reverting OCLP post-install patches, so it's always a full installer.  I don't remember the exact size, but it was over 14gb.

  • Like 2
Link to comment
Share on other sites

On 10/25/2024 at 11:08 PM, Stefanalmare said:

 

BCM4352 working. Try to re-add OCLP patches. Config from one of my laptops:

Config.plist 78.27 kB · 10 downloads

 

Hi @Stefanalmare,

 

I have a Probook 4540s in which everything works fine except turbo boost. When I enable AppleIntelCPUPowermanagement kexts system boots properly and turbo boost works for around 30 secs, followed by reboot. I tried million things but can't figure out what's causing this. I have a feeling that you posted this config from the same/similar laptop. If so, can you please attach your entire EFI folder so I give it a try?

 

The CPU is i7-3632QM (Sandy) so it seems that I don't have much choice but to use AICPM kexts to enable turbo boost. OS is Sequioa 15.0.1.

 

Thanks in advance!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...