deeveedee Posted October 23 Share Posted October 23 (edited) 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. Edited October 23 by deeveedee 1 Link to comment Share on other sites More sharing options...
Anto65 Posted October 24 Author Share Posted October 24 (edited) Sequoia 15.1 (24B83) RC2 Spoiler Edited October 24 by Anto65 8 Link to comment Share on other sites More sharing options...
calmesal Posted October 24 Share Posted October 24 Upgrading now. It is 14.53 GB downloads. 2 Link to comment Share on other sites More sharing options...
MaLd0n Posted October 24 Share Posted October 24 Full package only 8 Link to comment Share on other sites More sharing options...
HyperX7 Posted October 24 Share Posted October 24 (edited) It is 14.53 GB downloads. Edited October 24 by HyperX7 9 Link to comment Share on other sites More sharing options...
eSaF Posted October 24 Share Posted October 24 8 Link to comment Share on other sites More sharing options...
strangeron Posted October 25 Share Posted October 25 14.53 GB 👍 7 Link to comment Share on other sites More sharing options...
deeveedee Posted October 25 Share Posted October 25 (edited) 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. Edited October 25 by deeveedee 8 Link to comment Share on other sites More sharing options...
nmano Posted October 25 Share Posted October 25 (edited) I try BCM 4352 I install rootpatch OCLP Following kexts are installed. IOSkywalkFamily.kext IO80211FamilyLegacy.kext AirPortBrcmNIC.kext AirportBrcmFixup.kext AirPortBrcmNIC_Injector.kext 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 October 26 by nmano Link to comment Share on other sites More sharing options...
Stefanalmare Posted October 25 Share Posted October 25 (edited) 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 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 October 25 by Stefanalmare 4 1 Link to comment Share on other sites More sharing options...
cankiulascmnfye Posted October 26 Share Posted October 26 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 More sharing options...
Stefanalmare Posted October 26 Share Posted October 26 (edited) 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 October 26 by Stefanalmare 2 Link to comment Share on other sites More sharing options...
cankiulascmnfye Posted October 26 Share Posted October 26 @Stefanalmare Thanks – I'll try it later. Link to comment Share on other sites More sharing options...
HyperX7 Posted October 27 Share Posted October 27 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. How many gb downloads were made for the update? Link to comment Share on other sites More sharing options...
deeveedee Posted October 27 Share Posted October 27 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. 2 Link to comment Share on other sites More sharing options...
kaoskinkae Posted October 27 Share Posted October 27 RC2+OCPL in NEW 6 Link to comment Share on other sites More sharing options...
kaoskinkae Posted October 27 Share Posted October 27 RC2 + OCPL + OLD: 6 Link to comment Share on other sites More sharing options...
registracije registracije Posted October 28 Share Posted October 28 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 More sharing options...
Recommended Posts