Jump to content

tomnic

Moderators
  • Posts

    1,057
  • Joined

  • Last visited

  • Days Won

    45

Everything posted by tomnic

  1. Allora aggrega i 2 pin al cavo da 6 e sei a posto, vanno solo da un lato non puoi sbagliarti
  2. Il cavo è da 6 ma i 2 pin aggiuntivi si "attaccano" permettendo di farlo diventare da 8 pin... sulla scheda che connettori hai?
  3. Alcune gpu hanno un buzzer che ti assordisce se non attacchi i cavi e bloccano il post... altre partono lo stesso senza segnali acustici funesti ma appena lanci qualcosa in 3d kaboom
  4. Anche il classico reflow... qualche mese la tiri avanti Manda foto cavetti
  5. La mia seconda dose Moderna non è stata il massimo... sensazione come sotto ad un treno, febbre a 39, sfogo di bolle alle braccia e alle gambe... un paio di giorni poi tutto ok... forzaaa 😉
  6. Devi forzare il flashing, dovrebbe esserci un flag apposito... ma usa windows e atiflash 2.74 o 2.93
  7. Le dovresti alimentare entrambe perché dubito che senza alimentazione si avviino correttamente... al limite se hai una vecchia scheda pci (e uno slot pci disponibile sulla mobo) sarebbe perfetta. Mi pare di capire che flashano rom Apple compatibili, a te serve una ROM UEFI compatibile per pc, non devi metterla su un Mac vero dotato di Apple EFI
  8. Devi rischiartela: se hai una seconda scheda video da windows funzionante puoi sempre tornare al bios originario se qualcosa non va, salvalo prima. Questo BIOS dovrebbe andare, mi pare un modello molto simile alla tua: https://www.techpowerup.com/vgabios/166072/166072
  9. Ahi ahi, una delle poche 760 senza bios uefi... non rischierei un crossflash: https://forum-en.msi.com/index.php?threads/request-uefi-gop-bios-for-msi-n760-2gd5-oc-itx.177264/
  10. Dammi marca e modello esatti della tua gtx 760
  11. Flasha il bios della GPU con uno uefi compatibile e togli csm... per me la sfanghi
  12. Il blocco su quelle righe c'è quando non parte l'accelerazione grafica... a me capitava quando avevo la fix pat patch di Shaneee attiva, incompatibile con le nVidia, e/o qualche settaggio nel bios non gradito a macOS, come quelli segnalati da Carlo: il CSM dovrebbe stare su off purché la tua gpu abbia un bios uefi ready (e semmai potresti flasharcelo, dovrebbe esistere per la 760). Se i kext che hai nel bootloader sono tutti aggiornati dovrebbe partire il tutto, almeno con nv_disable=1 e forzando per scrupolo lilubetaall=1. Il problema è far digerire in qualche modo l'accelerazione della tua GPU a Monterey. La 780ti che ho io sta su Intel e ha bios UEFI, forse flashandola risolvi.
  13. Strano io ho una 780ti con Monterey beta6 che va tranquillamente, i driver accelerati ci sono ancora. Controlla la fix pat patch semmai rimetti quella vecchia di Algrey se l'hai cambiata.
  14. These specific fixes apply only to Adobe Premiere Pro CC 2021 15.4 In this program all the effects / transitions are actually macOS bundles. In macOS bundles my dylib injection doesn't work so we need to manually patch the problematic bundles one by one. Let's start with AEFilterStabilizer.bundle: we open it in Hopper Disassembler and search for the same function we need to make always return TRUE as in libfakeintel.dylib, which is mkl_serv_intel_cpu_true. Once found (very easy with hopper as it retrieves the most of original symbols and function names), we just replace its very beginning with a RET (return), which in x86_64 machine language is C3. Simple as ABC! And IT WORKS! Fun fact: Adobe embedded all its dynamic library mkl code DIRECTLY into every bundle routine... that's a TERRIBLE programming habit! The same libraries are present again and again in the same Premiere application and we can find a different mkl lib version in each application too... shame on you Adobe!!! Then we need to patch the other crashing bundle with AMD cpus: AEFilterMorphCut.bundle. Because of the "fun fact" I explained earlier, the code for the same function mkl_serv_intel_cpu_true in this bundle is DIFFERENT than the one in AEFilterStabilizer and just replacing the whole function with a trivial C3 doesn't work. We need to decompile libfakeintel.dylib with hopper and we find out that our simple program: int mkl_serv_intel_cpu_true() { return 1; } ...equals to this assembly code: 0000000000003fa0 push rbp 0000000000003fa1 mov rbp, rsp 0000000000003fa4 mov eax, 0x1 0000000000003fa9 pop rbp 0000000000003faa ret ; endp ...which is, translated in ML code thanks (again) to Hopper: ...so putting this sequence in AEFilterMorphCut's binary replacing the bytes in the offset where its actual function mkl_serv_intel_cpu_true begins makes everything working like a charm. For simplicity I'll attach both the patched bundles in the top post. I'll try to generate as soon as possible a perl script to automate this procedure for all the future and past releases post 14.3.1, help is appreciated. Right now, enjoy Premiere pro cc 2021 15.4 on AMD bare metal 😉
  15. Some updates for After Effects CC 2021 18.4.0 and up: Camera tracking works as usual with my method but Stabilization stopped working because of a missing symbol in the replaced libiomp5.dylib: Dyld Error Message: Symbol not found: ___kmpc_critical_with_hint Referenced from: /Applications/Adobe After Effects 2021/Adobe After Effects 2021.app/Contents/MacOS/../Frameworks/libmkl_intel_thread.1.dylib So I replaced libmkl_intel_thread.1.dylib with libmkl_intel_thread.dylib (obviously renamed) taken from Adobe Media Encoder 15.2 and Stabilization started working again. I'll attach the file here, just overwrite it in Frameworks folder inside AE app just like libiomp5.dylib. Premiere still need fixes, working on it! libmkl_intel_thread.1.dylib.zip
  16. ...banalità, ma non puoi formattarlo in HFS+ visto che è un disco esterno non di sistema presumo?
  17. tomnic

    Avvio Opencore

    In alternativa c'è da adattare questo paragrafetto tratto da questo link: https://phil-li.gitbook.io/hackintosh/i5-3470-asus-p8p67 "The early UEFI BIOS from ASUS and ASRock is incomplete so there is some trouble for *Clover (Opencore nel nostro caso) to add itself to UEFI boot list, but we can do that manually." To do this, boot into the USB clover stick, and open the UEFI shell. In it, follow the general instructions: Find bootx64.efi on HDD EFI partition with the combination of the following commands: Shell> map fs* ➝ Show all partitions Shell> fs0: (or fs1: or fs2: ...)➝ Switch to fs0, fs1, fs2,... partitions Shell> ls ➝ List the contents of current partition / directory Shell> cd \efi\boot ➝ Change the directory to \efi\boot Shell> ls Then: Shell> help bcfg -b -v ➝ Get help on bcfg command Shell> bcfg boot dump ➝ List current boot options Shell> bcfg boot add N bootx64.efi "Opencore" ➝ Add bootx64.efi from the current dir (\efi\boot) as a boot option labeled "Opencore" (You will see this name also in the UEFI BIOS Boot menu boot items). N is the boot option number: 0 if you want it to be the first, 1 to be the second, etc. Shell> bcfg boot dump ➝ Check if Opencore is added Shell> reset ➝ Restart the system
  18. tomnic

    Avvio Opencore

    Vuol dire che la Asus P8H67 non supporta direttamente il boot UEFI se non da penne USB, così come alcune ASRock più vecchiotte. Qui cosa non riesci a seguire? https://macos86.gitbook.io/guida-opencore/requisiti/legacyusers
  19. tomnic

    Avvio Opencore

    La tua mobo ha un'implementazione UEFI incompleta quindi la cosa più semplice è far partire OC in legacy, o tenere la uefi in una pennetta usb sempre attaccata con la attuale cartella EFI che usi. Segui la guida di Dortania per la creazione della EFI di OC in legacy Evita di postare la stessa richiesta più volte sotto mentite spoglie, ti si aiuta ma non esagerare con le richieste.
  20. For a MSI Carbon Gaming Pro X399 it seems to work but with folders with tons of files it hangs the system just browsing the LAN... at least with this particular Mainboard.
  21. AppleIGB.kext is one of the worst coded kext I've ever seen... panics a lot and works slowly if it works...
  22. Dovrebbero già vedersi dei kernel + kext acpi sperimentali in giro con le prime point release beta di Monterey... incrociamo l'incrociabile!
  23. Per come sono fatto io i lati negativi hanno più peso per me... quindi il termosifone sta dove sta 😉 Proverò il noctua rispetto al mio darkrock appena possibile e sto!
  24. Ma sei soddisfatto? Leggo tra le righe che avresti desiderato qualcosa di più 😉
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.