Installing FCP using terminal

friends: i want to try and install final cut pro HD 4.5 on my macbook air 11 inch running 10.7.2 (if possible). this same program is running great on my other macbook air 11 inch using a slightly earlier OS X (Lion?). 10.7.2 as you know does not support 10.7.2, but i have heard that sometimes it is just the installer that needs the powerpc so i am trying to install it via terminal. the problem is, i do not know how to configure my string properly. when i drop the .app into the terminal window i get this location:
/Users/mycomputername/Desktop/Final\ Cut\ Pro\ HD.app
and i was using variations of this:
sudo installer -package /Users/mycomputername/Desktop/Final\ Cut\ Pro\ HD.app -target /
try not to laugh, i am not a coder, just trying to get my computer to run this program that i love. the new FCP is too expensive and i don't even like it. if you can assist me in creating the proper string i would be grateful. i know that someone was able to install final cut studio using this method.
thanks so much for your help!

I do not use Final Cut Pro, but I play one on Television!
Here is a quote from Wikipedia:
In April 2004, version 4.5 of Final Cut Pro was introduced and branded by Apple as "Final Cut Pro HD" due to its native support for Panasonic's tape-based DVCPRO HDformat for compressed 720p and 1080i HD over FireWire. (The software had been capable of uncompressed HD editing since version 3.0, but at the time had required expensive video cards and high speed storage.)
Any program written in 2004 would have been a PowerPC application.  After Apple migrated all of its future Macs to the Intel platform in 2006, it included in OS X Tiger (and later Leopard, and optionally in Snow Leopard) emulation software that would allow most PowerPC apps to continue to run in Intel.  This sofware was based upon technology that Apple licensed from a 3rd party and which Apple called Rosetta.
Apple's license to include Rosetta in newer versions of OS X expired with Lion and now Mt. Lion.
Hence no matter how well you use Terminal, or even Pacifist to install FCP 4.5, it just will NEVER run under Lion on your Mac.
If your MacBook Air 11" is old enough (2010, MacBookAir3,1) to boot and run Snow Leopard, you can either partition your hard drive or add an external hard drive and install Snow Leopard into it.  You can then "dual-boot" into Snow Leopard when you want to run FCP 4.5 or into Lion when you need iCloud or otherwise.
Alternatively you can install Snow Leopard Server into Parallels 8 on any 11" MacBook Air and have FCP 4.5 running concurrently with Lion, such as here where the PowerPC app Appleworks is running on a Lion Mac:
                              [click on image to enlarge]
Apple is now selling Snow Leopard Server for $19.99 + sales tax & shipping costs at 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only).
Parallels offers a 14 day free trial download from its website.  It sells retail for $79 but can be found for a discount on the internet.
NOTE: You are confusing your version with Final Cut Express 3.5 and Final Cut Studio 2, both of which will run in Lion, but whose installers have problems in Lion and Mt. Lion due to a "bug" in the installer program.  For those versions, as pointed out in Jeremy Johnstone's blog, using Terminal (or alternatively, using Pacifist) to install will achieve success in using those versions in Lion.

Similar Messages

  • Installing Adobe Dreamweaver CS5.5 and PhotoShop 5.5 on windows 2008 R2 SP1 using Terminal services

    Hi All,
    Is it possible to install Adobe Dreamweaver CS5.5 and PhotoShop 5.5 on windows 2008 R2 SP1 using Terminal services. We are planning to use xenapp to publish these application.
    Please let me know if this is a supported environment.
    Regards
    Radhika

    As far as I know you will NOT be able to access OpenGL functionality through Terminal Services. as the OpenGL implementation provided in that environment is software, version 1.1 - not GPU-accelerated.
    I seem to recall there was a thread about a year ago here where someone was trying to do what you are asking.  I vaguely remember they were able to make it work, but I'm not sure.  You might try doing a search of this forum.
    -Noel

  • Clean install on Netra T1 105 using terminal service

    Im using a windows hyper terminal session onto a Netra T1 105 and am able to boot and login as normal, however my problem lies with being able to do a fresh install from this terminal, on a normal sun box I shutdown and get the ok prompt and from there type boot cdrom, from the terminal i cant do this, how do i go about booting from a cdrom from the terminal
    thanks in advance

    Found that when terminalling into a box to execute the STOP-A command you must use Ctrl-Break

  • Empty the trash using Terminal on install DVD?

    iMac doesn't boot up - stuck on grey screen with spinning wheel, tried all the suggestions.
    Thought a reinstall of Snow Leopard using the Install DVD would work. And of course I don't have enough space to do so...
    This is what I have so far using Terminal via the install disc:
    cd /Volumes
    ls
    .Trashes   Mac OS X Install Disc 1   Macintosh HD
    cd "Macintosh HD"
    It then brings up all the files on my Mac HD but I'm not sure where to find the Trash and how to empty it :/
    Apparently I can also install and boot from a USB but I'm not sure how that works either... help me please

    I'd suggest getting an external hd.  Install the os to the external hd.  Do it this way you are less likely to loose your valuable data.
    You need
    ls -a
    to see hidden files.  I do
    ls -laF
    to remove a empty directory you need
    rmdir
    to remove a file you need
    rm
    The files are not recoverable.  All deletes are final.
    I recommand
    rm -i
    Here is an overview of the terminal commands.  Lets assume that your account has a short user name of mac.
    Macintosh-HD -> Applications -> Utilities -> Terminal
    #What is my short user name?  Type the whoami command.
    mac $ whoami
    mac
    mac $
    #How to list all of your disks.
    # The ls command is for list
    mac $ ls /Volumes/
    Audio CD       Macintosh-HD   Spotless       Tiger-ext
    mac $
      # Let's say your flash drive is named Spotless
    # cd is change directory
    mac $ cd /Volumes/Spotless
    # pwd is Print Working Directory. A directory is the Unix name for a folder.  You are always in a directory.
    mac $ pwd
    /Volumes/Spotless
    mac $
      # The ls command is for list
    # l is long
    # F is type of file where / is directory.  For directories, the slash is pasted to the end of the name. 
    mac $ ls -lF
    total 134704
    -rw-r--r--     1 mac  staff     64560 Mar  3  2009 A-picture-of-Youpi-key.png
    drwxr-xr-x    83 mac  staff      2822 Nov  7 14:52 Applescript files/
    drwxrwxrwx    12 mac  staff       408 Dec 13  2008 Christmas Cards/
    drwxr-xr-x     9 mac  staff       306 Dec 21 17:39 Christmas Cards 2009/
    ... trimmed ... What does all this mean?
    drwxrwxrwx
    d = directory
    r = read
    w = write
    x = executeable program
    drwxrwxrwx
    ||  |  |
    ||  |   all other users not in first two types
    ||  | 
    ||  group
    ||
    |owner

    What type of entry is this? d = directory, - = file, etc. 
    Every Unix resource: files, folders, etc has an owner, group, other 
    A Unix resource has one owner.
    A Unix resource has one group.  A group contains a list of users.
    To gain access to a file, you can be the owner, in the group, or not the owner and not in the group hence you end up as other. The owner, group, or other  has read, write, or execute permissions.
    # l is long
    # a is all to show hidden files & folders
    mac $ ls -lFa
    total 134736
    drwxr-xr-x    41 mac   staff      1496 Dec 22 17:11 .
    drwxrwxrwt     8 root  admin       272 Dec 24 13:55 ..
    -rwxrwxrwx     1 mac   staff     15364 Dec 23 12:52 .DS_Store*
    drwx------     4 mac   staff       136 Jan 22  2009 .Spotlight-V100
    drwxrwxrwt     5 mac   staff       170 Sep 14 16:36 .TemporaryItems
    d-wx-wx-wx     4 mac   staff       136 Dec 31  1969 .Trashes
    -rw-r--r--     1 mac  staff     64560 Mar  3  2009 A-picture-of-Youpi-key.png
    drwxr-xr-x    83 mac   staff      2822 Nov  7 14:52 Applescript files
    drwxrwxrwx    12 mac   staff       408 Dec 13  2008 Christmas Cards
    drwxr-xr-x     9 mac   staff       306 Dec 21 17:39 Christmas Cards 2009
    ... trimmed ...
    # mv is move or rename
    mv -i the-name the-new-name
    # You can just rename the file back to what it was with mv command.
    mv -i old-name new-name
    Here is what these commands mean:
    cd is change directory
    pwd is a print working directory
    ls is list
    sudo is Super user do
    mv is move or rename
    For cryptic comments, you can always uses the manual command which is man. For example:
    man mv 
    # Type the letter q to quit.
    In case you have spaces in your filenames or directories, you need to escape them. See examples: 
    mac $ ls -l ~/"see it"
    -rw-r--r-- 1 mac staff 3171 Oct 26 23:38 /Users/mac/see it
    mac $
    mac $ cd /Users/mac/Desktop/ttt\ html\ copy/
    Do you know about tabbing? Type in a few letters of a name then press the tab key. The computer will type out the rest of the name if it is unique.
    Press the up arrow key to see the previous command(s).
    To edit a command, use the left arrow key to more left and the right arrow key to move right.  Use the delete key to delete the key to the left.  Type a letter to insert.
    history to see many previous commands. 
    mac $ history
        1  pwd
        2  man ls
        3  history
    You may copy then paste from this list.
    http://discussions.apple.com/thread.jspa?threadID=2692161&tstart=0 
    Robert

  • How many times can you install FCP?

    Hello everyone, new to the forums here. I've searched throught he forums but couldnt find an answer to my question.
    I'm in the middle of installing Final Cut Studio 2 (waiting to put in the next disc) when my buddy came over and mentioned that you could only install FCP one time and never install it again on any other computer. This worries me because in January I was going to get a new Mac Pro and un-install FC from my Macbook Pro so I could use it on the new computer. Is this possible? Or once I install this on my laptop is it permanent?
    Thanks in advance for the help

    Ok so you can install it on as many machines as you like but can only use (or have one activated through registering) one at a time. I know this is a touchy subject with piracy and all, but I thought it would just be rediculous if I installed this on my laptop, and 6 months down the line wanted to install it on another computer that I own.

  • Hello guys..does anybody know how to install and use adobe master collection with the new lion?   I need to use Flash and illustratore, but apparently those programmes are incompatible with the new operative sistem...   I am a new mac users and I'd like t

    Hello guys..does anybody know how to install and use adobe master collection with the new lion?
    I need to use Flash and illustratore, but apparently those programmes are incompatible with the new operative sistem...
    I am a new mac users and I'd like to know if there are other similar programmes I can use with lion!

    Lab79 wrote:
    Are you on Apple's payroll?
    well dude I can only let you know that as I work with those programme I don't have to pay for it is my company that pays the programme I whant to use( that's why I was asking if there where other programmes ..that I could use with lion insted that Illustrator and Flash!)..I know Adobe since 2005 and I can say that Adobs products are very good...I think that if it's an Adobe probleme or fault ..they will solve it very soon...but unfortunally I have the impression that after Jobs passed away Appel decided to change politics..and everything started to go very bad! (see FCP X)..
    good luck with apple dude..
    Where is the Apple problem? I have CS4 and CS5 running perfectly fine on my Macbook Pro. Installed 5 after Lion upgrade. Worth every cent. Adobe did have some catching up to do with Lion but with the CS5.5 update all runs fine. But not yours. So it is a problem with the Lion OS? You say you have been with Adobe since 2005. So you would be aware of all the other issues that Adobe had catching up with past Oss in Mac and Windows then. They get it right, but it is up to them. It is not up to Apple, nor Microsoft for that matter, to run around and check that every software developer in the world is running their business properly.
    And what has politics got to do with anything. Some people just have to blame Software for their poor Hardware maintainence of failure of the same.
    <The only think I can really do is to go back on my old windows...give back this orrible lap top and ask for my money back!>
    Great suggestion. You should go with that one, but good luck getting a refund.
    Bye

  • Using Terminal in Mac OSX to program and test java

    I bought a book on java and it says I should not use a JDK like Net Beans when first learning java.
    Right or wrong I would like to know how to use terminal to program and compile simple scripts.
    So my question is:
    How do you go about setting up the computer to use terminal to write and compile a java program? I know my Mac sees java in terminal because tells me Im running "version 1.5.0_07"
    I just need a link to some info on how to get started using Terminal for my command line with java.
    I think if I could get a path set up from the command line to my text file and have javac see it I would be in pretty good shape. At least for now.
    If I use a text saved plain text file (.java) how do I set up a path to it using javac from the command line?
    Where can I find or link to this kind of info?
    Macbook Pro Mac OS X (10.4.10)

    ayusman_dikshit wrote:
    Hi,
    seems like you have not tried out a few things.
    1. Set up the JAVA_HOME environment variable. (I assume you pretty much know it) the folder where java is installed.
    2. set up the environment variable to point to the bin folder inside the java installation folder.
    3. open up a console (it seems from your post you know it.), type java -version see the java version.
    4. type in javac, press enter: you should get the javac options.
    5. type in java, you should see the java options.
    Write your programs in a text editor, save it as somename.java.
    open a console, change to the directory containing the java file.
    type: javac somename.java <PRESS ENTER>
    you should get the compilation errors if any.
    if not
    type in: java somename.java
    Hope this helps.
    Regards,
    AyusmanStep 1 and 2 are generally not needed. Mac OS X comes with Java configured up and running right out of the box.

  • Installing FCP (V2/V3 on iMac G5)--Urgent!

    Okay, I have some editing to accomplish (putting a reel together) and I'm in the process of upgrading everything... I would like to use FCP on a loaner G5 iMac while I wait for my QUAD to be delivered. I have FC Studio Cross-grade on the way that will solve all of the world's problems--right? Yet, I don't have any current FCP or FC Studio components.
    I own FCP V2 and the V3 upgrade... I was using this painfully on my G3 Pismo years ago... I also have a B & W G3...
    Any ideas? I see my options as follows:
    a) Try to install FCP 3 on the G5--probably will not work--bad idea.
    b) Use iMovie... not powerful enough--bad idea.
    c) Get a temp. license from Apple for FCP 5??? Is that possible?
    d) Install the old $h#t on the old G3...
    e) Something you suggest?
    Well, any thoughts?
    Thanks,
    Robert

    a) Won't work. The upgrade to FCP 3 require that FCP 2 be installed, and since you don't have OS 9 running...you can't do this. Even in Classic mode I hear that installing FCP 2 doesn't work.
    b) If it isn't powerful enough for you, it isn't. What kind of reel is this anyway? This should be fine for straight cuts and dissolves.
    c) Not possible.
    d) This is your best bet. In fact, this is your ONLY bet in my book. And FCP 3 works fine on the older machine.
    Shane

  • Unable To Install FCP

    Hi
    Can Any one help me i am trying to install FCP Studio in My G4 Power Book, But It is telling that licence code error , user has no enough privelage.
    Please help me to fix this problem

    First off is the copy you are trying to install a fresh, brand new, official copy of the software. If its some ripped or dodgy version then its probably corrupted and not worth the CD/DVD its stored on.
    Also check out the minimum specs for FCP Sudio here
    http://www.apple.com/finalcutstudio/specs.html?finalcutpro
    and make sure your Powerbook and copy of OSX is up to the task of running the software.
    If everything is legit, then ctrl click on the image of your hard drive in the finder. Navigate down to "Get Info".
    In the window that appears, look down at the bottom where it says "Ownership and Permissions" - here it should say "Read and Write", if it says "read only" then your gonna have to change it in the section below named "Details" using your system password.
    Click the small arrow next to the word "Details" and another small section should open up. Make sure the "owner" section is correct and that the "Access" section reads "Read and Write".
    If it doesn't then click the small padlock next to the "Owner" tab and change the settings accordingly. Here you will be prompted for your system password. This is the password you should have chosen when you first purchased and set up your mac.
    Also make sure you are entering this password correctly when prompted for it in the installation process.
    Hope this is of some help
    All the best
    JB

  • Can't install FCP on my new MacBook Pro

    I just realize that I can't install FCP on my brand new Macbook Pro. Does anyone knows of any solution that would let me install FCP. According to the notes FCP will not install on Intel Core Processors.

    It would be useful if you -
    A. told us what version of FCP/FCS you are trying to install
    B. told us the error messages you received
    In the meantime, Final Cut Pro 5.0 and earlier are not supported on intel macs. Time to upgrade. If you have a regular retail version of FCP, the upgrade price is $299. Academic and Not For Resale versions do not qualify for the upgrade.
    x

  • I can not get any updates and therefor not use Java as it only run updates for Mac 10.7. and later? How do i get the updates to install and use Java?

    I can not get ny updates and therefore not use Java, as it only run updates for MAC 10.7. and later. How do i get the updates to install and use JAVA ?

    In Snow Leopard you update Java from Software Update (in the Apple menu). You can check your version by opening Terminal and typing
    java -version
    (don't get creative and type anything else)
    The latest version is 1.6.0_65.

  • New Mac Pro with Lion and can't install FCP.

    I got a new Mac Pro with Lion and can't install FCP that worked fine in SL.  Is it not compatible?  Is it really a PowerPC program???  I'm a videographer and rely on this software and to spend $300 to continue to use it after spending a lot more for this software 4 years ago!  Tell me this is not the case and there is a solution to installing FCP.

    How to run FCP 6 (FCS 2) under Lion.
    The installer for FCP 6 (FCS 2) is a PPC app. The Programs themselves are Intel. If your trying to install FCP 6 (FCS 2) this work-around will work...
    First you need to install Rosetta from your Snow Leopard OS installation disc:
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/27987.html
    After doing that you can install FCP 6 (FCS 2). Remember, after installing FCP 6 (FCS 2) you need to apply the updates. This has been discuss many times in the Final Cut Studio forum.
    If your trying to install FCP version 5.1 (FCS 1) (a PPC app) and below your out of luck....
    If you need further help, here is the URL for the  Final Cut Studio forum:
    https://discussions.apple.com/community/professional_applications/final_cut_stud io?view=discussions
    R

  • Re-install FCP 4 on new Mac dual 2.3

    I just bought a new G5 dual cor 2.3 and used the migration software which transfers most of the software from my old G4 to the new G5.
    However, it does not transfer FCP 4.
    I did a lot of search and found all the neccessary tweaks to get FCP 4 running on the new PCI graphic cards. What I did not find is the basic
    '... how do I install FCP 4 on a new machine?'
    Do I have to de-install it on the old one and get a kind of 'transfer-licence ID' and if so, how?
    Do I just do a fresh install and poke in my licence number - but wouldn't it be a breach of the licence because I installed it then literally on two maschines.
    Sorry, I really don't have a clue.
    Thanks for help

    I'd just install it on the new machine. Delete the app from the old machine and you've only got one install.
    Patrick

  • Problem Installing FCP Studio 2 on SL 10.6.2

    Hello All
    when trying to install an original FCP Studio 2,
    the installation gets stuck towards the end. (around 95% of the first general installation disk).
    this has happened 3 times.
    After rebooting, the programs seems to be in the application folder.
    but they are missing many files and meterial.
    ( because i did'nt get a chanse to go through the other Content disks... )
    did anyone had a problem installing FCP Studio 2 on SL ?

    Here's a way to work around the possiblitily of a damaged disk or an intermittent dvd reader.
    Insert your FCS install disk, make a disk image of it (using Disk Utility) and leave the image on the Desktop. Eject the FCS install disk, and create a disk image for each of the FCS disks.
    Now, with all the images on the desktop, double click on the install disk image and start the installation process. It should take less than an hour to install EVERYTHING.
    Once the installation is complete, copy the disk images to a safe place. You'll have them available if you ever need to reinstall FCS.
    good luck,
    x

  • 10.9.1 used terminal with rm-rf and deleted my user data. Can I get back the deleted data? Help.

    10.9.1 used terminal with rm-rf and deleted my user data. Can I get back the deleted data? Help.  I really just need mail file and desktop files recovered.

    If data were on the SSD drive with TRIM - practically no chance. If HDD - use DIY recovery software such as DiskDrill or DataResue.
    As quickly as possible turn off the drive where deleted data.
    Use an external HDD with installed OSX for data recovery.
    Alex
    Apple Certified Support Professional

Maybe you are looking for

  • Importing changes the audio quality of original video

    When I import a video into a new project the audio sampling rate of the video goes down and the audio channel changes to mono though the video is stereo. I have tried creating new projects changing the sequence presets to ones that include the higher

  • Passing values to a loop from a string sepated by commas

    This string i am passing to a stored procedure. The string which contains id seperated by commas like(string a='100,101,102,103') This values i have to seperate and pass it to a query I have to do the query for all the values(i think by looping ) sel

  • Bad link to Part 7 of series

    Great series of articles!! On the bottom of "Effects-motion that emphasizes" (page 6 of "Designing for Flex – Part 6: Guiding with motion"), the link to "Part 7: Making your application fast" is http://www.stage.adobe.com/devnet/flex/articles/fig_pt7

  • Suggestion in FOLIO PRODUCER panel : date the articles

    hi is there any way to date the articles soon in the folio produer panel ? sometimes you can't remember if you uploaded this one or that one (espeically with the mess for upload we all know ...) becaus ewhen it comes to uploading AGAIN an article wit

  • Trying to install OS on mcs-7825-h2 for unity

    Hi, I'm trying to install w2k os on an mcs-7825-h2 but the smartstart cd (7.40) doesn't have the sata raid drivers. As these servers don't have floppy disks has any one got any info on how to do this? Rgds Andy