How to tell if an app is a FAT binary or not?

Get Info on an app doesn't tell me like in OS X. How is it done in 7.x.x (and 8.x for that matter) ?
Also, was every System 7.1.2 and beyond "fat" ? Or were there 68k versions and PPC versions of the same revision? (ex: 68k-only 7.5.3 and PPC-only 7.5.3)? From reading Apple's site, I believe all past 7.1.2 were "fat", but want to make sure...
Lastly, is there a way to strip a "fat" System from the PPC code if you know it will be used in a 68k machine, much like lipo does for PPC/Intel in OSX ?
Thanks

Antonis,
Quick reality check. Even Apple quit writing software for the $10,000 Mac II fx when the SCSI controller software for the Quadra became more important.
From a practical standpoint, doing a clean install of a FAT system, wiping the other drives and then replicating the clean system folder would be faster than diagnosing all the other drives.
I used to save every system folder I ever encountered so that I would be sure and have that elusive extension file required for that unique piece of hardware. Then I would update to a newer OS, try to get the hardware to work, find out that the company that created the hardware had been sold twice and divisions of the company abandoned...
I had an accelerator card in my first SE. When I went to update from one meg of RAM to two so we could add a fax modem, the Apple dealer technician could not get it to work. They could not find the manufacturer of the card. There were no software updates. No one had written a patch software routine. I suggested that the dealer try four meg of RAM to see if that would work. It did. Apparently, two megs had to have some jumper or resister cut or two sticks on the motherboard or two on the accelerator card or one apiece. Who knows. Filling every slot worked.
May sound simple enough. The reality of it was that instead of adding one $100 RAM stick to go from 1 meg to 2 meg, I was now going to spend $300 to go from 1 meg to 4 meg of RAM. Those were the days of 9600 baud modems selling for a $1,000 and 40 meg hard drives sold for $1,200.
Yes, someone may have written a fun little software routine but it would have been shareware and probably long since forgotten because most Mac users would just do a clean install and move on. Don't get me wrong. It is definately worth asking if someone knows of such software but the odds are unfortunately against the easy answer.
That is better hope than most PC users get when they haul their PC into a repair shop. They are asked if they have a backup because the repairman is going to just wipe the drive. Good luck.
Ji˜m

Similar Messages

  • How to download versions of apps compatible with OSX 10.7 not the ones updated for 10.9

    how to download versions of apps compatible with OSX 10.7 not the ones updated for 10.9?
    I'm trying to download iLife and iWork apps for my MacBook. For example: The GarageBand app will not download because it says it is compatible with 10.9. I have 10.7 and cannot update to 10.9 because I'm on a 13in. Late 2007 MacBook. Any suggestions?

    Click here and follow the instructions. If they’re not applicable, you can’t download them and need to install them from a DVD.
    (108988)

  • Every time I try to download a free or paid app or in iTunes   it asks me for a credit card. (Which i don't have one)  How can i download free apps without a credit card and not reset my apple ID? I already put in 20$!!!!!

    Every time I try to download a free or paid app or in iTunes 
    it asks me for a credit card. (Which i don't have one)
    How can i download free apps without a credit card and not reset my apple ID?
    I already put in 20$!!!!!

    How to Get Apps From the App Store Without a Credit Card
    http://ipadhelp.com/ipad-help/how-to-get-free-apps-from-the-app-store-without-a- credit-card/
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    If None is not available - On your computer launch iTunes and click "iTunes Store" in the left navigation pane. Click the "down arrow" next to your name at the top right side of the page and click "Account." Enter your username and password and click "View Account" to log into your account information. Next to your Payment Type, click "Edit." Select the "None" button and click "Done." Confirm that your card has been removed by returning to the Apple account information screen. Under Payment Type, it should say that there is no credit card on file.
     Cheers, Tom

  • How can I find an app I paid for but is not on ipod now?

    how can I find an app I paid for but is not on ipod now?

    Download Past Purchases
    http://support.apple.com/kb/HT2519
    Log into iTunes using the account the Purchase was made with... Click on Buy... and a notice will come up saying you already have it... do you wish to download it again... Click Yes...

  • [Forum FAQ] How to tell if the DAC port is automatically changed or not

    Introduction
    Per Books Online:
    http://msdn.microsoft.com/en-us/library/ms189595.aspx
    SQL Server listens for the DAC on TCP port 1434 if available or a TCP port dynamically assigned upon Database Engine startup.
    Also, we can go to the following registry to specify the DAC port number manually:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\AdminConnection\Tcp
    The error log contains the port number the DAC is listening on. Besides looking at the error log, how to find which port is used by DAC connection and how to tell if the DAC port is manually set by us or assigned automatically by SQL Server?
    Solution
    The following query can be used to check if there is an existing DAC connection and it also give us the port number used by dedicated admin connection.
    SELECT name,local_tcp_port FROM sys.dm_exec_connections ec
    join sys.endpoints e
    on (ec.endpoint_id=e.endpoint_id)
    WHERE e.name='Dedicated Admin Connection'
    Here is the scenario to test if the DAC port is automatically changed or not.
    There are two instances are running on one server. I specified the same DAC port number 5555 for the two SQL Server instances by modifying the registry
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\AdminConnection\Tcp
    Opened the DAC connection to instance 1. Executed the above query, it returns the result:
    name                                                  
    local_tcp_port
    Dedicated Admin Connection               5555
    Then, opened a DAC connection to instance 2. It throw out the following error message:
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection because an error was encountered during handshakes before login.
    Common causes include client attempting to connect to an unsupported version of SQL Server, server too busy to accept new connections or a resource limitation (memory or maximum allowed connections) on the server..
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : TCP Provider: An established connection was aborted by the software in your host machine..
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection.
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection due to prelogin failure.
    The above error message was thrown out because the DAC port number 5555 was not available for instance 2 which was occupying by instance 1. After restarting the SQL Server engine service of instance 2, if checking in the registry, you would see a new DAC port
    number has been assigned to the second instance.
    Then, the DAC connection to instance 2 succeed this time and executed the above query, it returned the same port number which is same as the one in the registry key and the port number was assigned automatically.
    DAC port will not change even SQL Server service is restarted only if the TCP port is available.
    More Information
    http://msdn.microsoft.com/en-us/library/ms189595.aspx
    Applies to
    SQL Server 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I tested your script after
    establishing a DAC connection from SSMS 2014. It worked as described. Thank you.
    SELECT name,local_tcp_port FROM sys.dm_exec_connections ec
    join sys.endpoints e
    on (ec.endpoint_id=e.endpoint_id)
    WHERE e.name='Dedicated Admin Connection'
    name local_tcp_port
    Dedicated Admin Connection 1434
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • How do you delete a app on the ipad when your not using it?

    How do you delete and app on your ipad when you don't want it?

    or just tap and hold the app icon on iPad and when it starts jiggling/shaking press the x on the top left corner of the app.to delete. When done :
    Press the home button to return to non- jiggling status

  • How to tell history of apps run (& usage) on iPhone

    How can I tell what apps were run recently on my iPhone.  Idea is to double check child's use of apps (both type and if possible length of time used).
    This is an issue when phone access is to be granted, but trust has been shattered in the past and we are re-building it with child ... :-(
    Of course, one way to control app use is to just delete the app (at least there's still control of the Apple ID)!
    The child already knows how to close apps (double hitting home button then shutting down icons).
    On desktop you can run Terminap app and then command "last" to see usage of computer in general (and under Settings -> Users you can get a log of apps used, I think).  Looking for similar on iPhone.
    iPad too ... but that might be same as desktop - have to check.
    Native or 3rd party ... happy to pay!
    This is not just a website surfing issue.  Apps in general.

    No. I don't believe such an app is even possible with iOS.

  • How to tell if an app is "Universal Binary" i.e. Intel-compatible?

    I have various freeware and shareware apps on my new MacBook Pro which I "migrated" over from an old PowerBook G4 which I had been using until getting my new MBP last week. To whatever extent possible, I want to avoid using old PowerPC-chip designed apps, since they'd have to go through Rosetta translation in order to work, but using Rosetta extensively slows down Snow Leopard's snappy response time.
    So, I want to make sure that each app is designed to be Intel-compatible. And if it isn't, I will try to track down a newer version, or if there aren't any, then find a replacement app that will do the same function.
    However, I don't have documentation or "read me" files for most of these older share/freeware applications, so it's not easy to tell just from "looking at them" whether or not they were written in Universal Binary (or in some other Intel-compatible way). One could always look at the date the application was made, and if it's really really old, then one could assume that it's not Intel compatible; and if it's really really new, then one could assume that it is compatible. Unfortunately, most of the apps are from that exact transitional period when some apps were made for PowerPC, some for Intel, and some Universal Binary, etc. -- mostly they're from the 2006-2009 era.
    So: Is there some method for "peering inside" applications to see if they're written in Universal Binary?
    As an example:
    I have a program called flvThing 1.0.1. If I control-click its icon, choose "Show package contents," then go flvThing>Contents>MacOS>flvThing, and do "Get Info" on the excutable file therein, it says "Unix Executable File (Universal)." Does that mean that it was written in Universal Binary?
    If that's true, can I use this same method to peer inside most/any apps and see if they are a "Unix Executable File (Universal)"? Or is there some other method for finding this out?
    Any suggestions would be most appreciated. Thanks.

    Yow! That was easy! Thanks. Worked like a charm. "Solved."
    Two follow-up questions:
    1. I see five ancient apps listed as being "Classic." I presume that I might as well Trash those right now, since no Classic apps will ever run in the Post-Snow-Leopard world? None of these five Classic apps are important or necessary, so trashing them is not a problem.
    2. Some of my Intel apps are listed as being 64-bit, and some as not 64-bit. Should this concern me? Does it matter? I presume that both 64-bit Intel apps and non-64-bit Intel apps will both work perfectly fine on my i5 MacBook Pro 15" -- right?

  • How to tell if the app server is running (on windows)

    Folks,
    I'm trying to write a deploy.bat - to build and deploy (using ant) my enterprise-app and web-services (the firstcup example)
    ... I'm stuck on winblows (for now) ...
    The deploy depends on the app server... so if it's not running, I'd like to start it automagically... but I've fallen on the first hurdle... I can't figure out how your supposed to determine if the server is up.
    Please can anyone help?
    FYI: I had a bit of a play with the asadmin tool and found:C:\Java\src\Tutorials\Sun\firstcup\example\firstcup>asadmin version
    Unable to communicate with admin server, getting version locally.
    Version = Sun Java System Application Server Platform Edition 9.0_01
    Command version executed successfully.
    C:\Java\src\Tutorials\Sun\firstcup\example\firstcup>echo %ERRORLEVEL%
    0which looks promising... I can grep for the "Unable to communicate with admin server" (using a perl one-liner)... butt ugly but effective (for now).
    TIA. Keith.
    PS: There doesn't seem to be an application server forum???

    Folks,
    Firstly, Thanx for the underwhelming response :-)
    I've got a working workaround.
    I created a "hello world" webapp which I hit it from a CGI script.
    It should be (slightly) more robust (and portable) than grepping for error messages from the asadmin version utility.
    Shame I'm dependant on the "old hat" for the new goose though.
    Cheers anyway. Keith.

  • How to tell if mobile apps are true duplicates

    I have a lot of mobile apps and an iPad and iPhone, and I want to clean out the old duplicate apps but am concerned that by removing one it will really only remove it from one of the devices;  this is not the issue of the duplicate app which is numbered .1, .2 etc. after the name and version number = this is the 'same' app which has a different version - and I don't know which is the iPad one or the iPhone one, so don't know if I can remove it - for instance, I have
    "Wash Post 3.0.4.ipa" and "Wash Post 2.7.1.ipa" -- the name is the same, but the number is different.  Would I be safe removing the lower numbered app?  I don't know why the numbers are that different, either.

    Those two Washington Post apps appear to be two separate apps, the number are the version numbers of the apps - 'The Washington Post For iPad' app is on version 3.0.4, and there is 'Wash Post' app (designed for iPhones/iPod Touch sized screens) which is on version 2.7.1
    For other apps you will probably need to check to see if they have different iPhone and iPad apps, and if so what their current version numbers are

  • HT5429 How can I use this app in India? It does not show me precise navigation direction here at all?

    How do I use new apple maps (GPS) upgraded in the iOS 6 of my 4S model. It is neither showing me precise location of my whereabouts nor giving me driving directions to the defined locations. I even tried putting very prominent locations near me, but it said maps server not responding. How to solve this problem? can I get the older version of maps?

    The Apple Maps app will get better over time. And we will see this with each subsequent iOS upgrade. It will take time. There is nothing we can do, execept wait. Sorry.
    Remember, when the original Apple/Google maps came out in the original iPhone, five plus years ago, it was garbage and pretty much unusable.

  • How to tell if my wifi is working and my phones not using data when Im connected to wifi

    My data is sky high and I have a feeling my wifi isn't worKing... How do I tell if when I'm connected to wifi that it isn't sucking up all my data ?

    If the wi-fi symbol is showing at the top of the screen, then you are using wi-fi.
    Some things, like visual voicemail, use cellular data not wifi

  • HT4623 how do i turn off apps in ios7 that i am not using

    using ios7 how do i turn off that i am not using

    You need to double tap home button, swipe preview window of apps upwards........that will close them :-)

  • How do I re-download apps that I deleted but did not purchase?

    Is there anyway for me to re-download apps that I once deleted but I did not purchase? I've seen help for those who purchased apps, you go to the 'purchased' area in the App Store, but that didn't work for me because I didn't buy them.

    How did you get the games if you didn't pay for them? Even the free apps in the app store go through the purchasing process and are tied to your Apple ID. If you paid for them you are still able to log into the app store using your Apple ID which they were purchased with and download them again.
    If you received a used device or one as a gift the apps may be tied to someone else's Apple ID and still need the password for that account to install and run them.

  • How to completely delete an app from notification center in IOS not just turn it off

    By mistake NDTV was added as a notification in my notification center. I went to preferences/notifications and I was able to turn it off but I want it completely gone which doesn't seem to be possible. Is it just poor programing or am I missing something. Any ideas?

    If you're referring to the Notification on Mac OS (iMac), then you can take it out of the Notification Center:
    Go to System Preferences > Notifications and drag the app from the top part of the left column down to "not in Notification center". Also make sure you choose 'none' on the right and UNcheck every choice offered. That will stop notifications for that app.
    If you are referring to iOS, someone else will need to chime in.

Maybe you are looking for

  • I updated to 5.0 and now Firefox crashes when I click browser bar, Signature: nsAutoCompleteController::HandleText(), how can I fix?

    I am running Vista. I upgraded to Firefox 5.0 when prompted yesterday. Since then, whenever I try to click on the browser bar, Firefox crashes. I can use Firefox using the Google search bar and clicking on links, but as soon as I try to enter a URL i

  • Need help have lost my entire itunes library

    Hi, i put my ipod on charge through my usb, my music is on my ipod, but my computer is telling me that the ipod is synced with another itunes library. do you want to erase this ipod and sync with this itunes library, i have only synced with this one

  • Go_item problem on stacked canvas

    Hello. I use stacked canvas in my form. On that canvas i have a button. User use this button to close stacked canvas. I use: hide_view('canvas_name'); go_item('block.item_name'); It seems as go_item is not working. Cursor only moves to the block and

  • Package maker question...

    Hi everyone! I've got a question about doing an install with package maker. Everything is basically setup and running ok...but I noticed if I install a new version on top of an old version it will update the files of the same name but it will not jus

  • Rename Model Name and ID using Excel

    Hi everyone, after deployed a tabular model in Analysis Services from an Excel file using "Restore from Power Pivot..." I connected to the cube with Excel and I could notice that the name of the cube is "Model" I would like to change it using Excel.