Visiting a musican friend with Mac and wanna bring some goodies

Discussion in 'Software' started by Covfefe, Jun 23, 2024 at 8:18 PM.

  1. Covfefe

    Covfefe Ultrasonic

    Joined:
    Jul 29, 2018
    Messages:
    44
    Likes Received:
    28
    Location:
    Cosmos Redshift 7, Second Floor
    But, we are both Mac Noobs, he more than me!

    So, I´m wondering if there's any extremely Hustle-Free Mac stuff at sister site with that "WOW" factor that would install smoothly as a retail would. Anyone? :)

    Working in Logic, mostly plays piano IRL.
     
  2.  
  3. Melodic Reality

    Melodic Reality Rock Star

    Joined:
    Feb 18, 2023
    Messages:
    544
    Likes Received:
    349
    UHe stuff, just write down registration info on notepad. :thumbsup:
     
  4. clone

    clone Audiosexual

    Joined:
    Feb 5, 2021
    Messages:
    6,608
    Likes Received:
    2,881
    All the Plugin Alliance stuff. Sonible bundle. Fabfilter everything bundle. Nuro bundle for any vocals. D16 Group bundle for the Roland drum machines and all techno useful fx. Kilohearts bundle. Sonic Academy Kick2. Pulsar Modular effects. Fuse Audio Labs bundle, Devious Machines bundle.

    It would be helpful to know the kind of music that might be getting done. But those will all install easily and cover lots of territory. Don't install every plugin format or they will take up double the space. Install the AU (audio unit) plugins for Logic only.

    LuLu free firewall or Little Snitch. Codesign commands to sign everything all at once. Permissions Reset2 or BatChmod.

    Put this in a text file:

    fire up a terminal and paste in this command: xcode-select — install.

    in Terminal, this batch of commands below will codesign every plugin on the machine all at once. It takes a little while, just let it do its thing.

    cd /Library/Audio/Plug-Ins/

    find . -name "*.bundle" -execdir sudo xattr -cr \;
    find . -name "*.VST" -execdir sudo xattr -cr \;
    find . -name "*.vst3" -execdir sudo xattr -cr \;
    find . -name "*.component" -execdir sudo xattr -cr \;
    find . -name "*.dpm" -execdir sudo xattr -cr \;
    find . -name "*.bundle" -execdir sudo codesign -f -s - {} \;
    find . -name "*.VST" -execdir sudo codesign -f -s - {} \;
    find . -name "*.vst3" -execdir sudo codesign -f -s - {} \;
    find . -name "*.component" -execdir sudo codesign -f -s - {} \;
    find . -name "*.dpm" -execdir sudo codesign -f -s - {} \;
     
    Last edited: Jun 23, 2024 at 9:18 PM
Loading...
Loading...