How to optimize Windows NT 4.0 on Windows 95 hardware (iOS 4.1 on 3G device

I got to thinking how much this reminded me of “back in the day”, when Microsoft released NT 4.0, saying most 95 hardware would run it. You have to do some data cleaning when making that jump. You can't leave it to the OS and hardware.
After doing these steps, my 3G has been running just as good as 3.x, if not faster.
1. Sync your phone, then rightclick on it and Backup...
2. Sync your photos off the phone. Photos are probably the most important data on these things, so make sure you have them offloaded somewhere. Then DELETE photos from phone when done.
3. Back in iTunes, click on your iPhone and click the apps tab
a. Uncheck all your apps - but before you do, make sure you are OK with losing the data associated with those apps. On level 18 of that favorite game? It will be lost if you uncheck it. Have Facebook account stored? You will have to enter it again. Have notes or a grocery list....move them somewhere else. What we are trying to accomplish is lacing up the shoes one hole at a time. Then Apply and Sync
4. On the phone, Settings > General
a. Keyboard, everything to off (learn how to grammar)
5. On the phone, Settings > Mail, Contacts and Calendars
b. I went in and turned off mail for each account. The accounts I use, I can sync back the email afterwards. You might have accounts that can’t do this, so don’t turn off accounts that are not hosted somewhere else. I also turned off Calendar syncing for each account, which deletes that data as well. If you don’t have syncing between a remote calendar and that account, DO NOT PERFORM this step. You will lose your entries. I use Exchange syncing and MobileMe, so both are synced, and I was comfortable deleting that data.
I also turned off organize by thread. I don’t like that new feature and it just adds overhead when the email comes in. Every spared CPU cycle is needed now. Calendars are only synced back 2 weeks for me. Stop living in the past!
6. On the phone, Settings > Safari
a. Clear History, Cookies and Cache
7. On the phone, Settings > Brightness
b. Turn off auto-brightness
8. Sync, then Backup...
9. In iTunes, click on music and movies and uncheck syncing them. If you have any Rentals, move them back to the computer, and off the iPhone first.
10. Apply, then Sync
11. Same with Photos and Shows
12. Rightclick and Backup...
13. In iTunes, rearrange your icons so that they are all on the same screen. There should only be one screen now with the default apps, because you unsynced all your purchased apps earlier. To make sure there are no apps, just hold down an icon, and look for the ones with an “X” in the corner.
Apply, sync and Backup...this last backup is important. It should be the smallest it can be, so that you are only going to overlay configurations, not apps, data, music, movies, notes...etc. You are going to sync that stuff, instead of restore it.
Your phone should be bare bones now, without your personal data bloating it through 3-4 OS upgrades. Let’s restore to defaults, then add your configuration and data back on it.
Follow this on how to restore:
http://www.tipb.com/2009/01/29/iphone-101-put-iphone-recovery-mode/
Restore to the iPhone Backup without a date on it. That was the last one you took.
The restore portion will take about 20 minutes. The backup overlay, should take 3 minutes.
Once it’s finished rebooting, add your most essential apps first and sync. Configure your email accounts to sync mail and calendars, but choose the smallest amount of time available to sync. Then configure your apps, sync your photos, and some music.
Before, I had 30+ apps, no music, no videos, and only 350mb taken up on the phone. I couldn’t even take a **** picture without getting frustrated, even with 4.1. I had restored, and done everything else. I got so frustrated, I decided to do all these steps, and see what the result would be.
To test, I played a song in iPod mode, then while still playing texted, opened up Maps, refreshed my location, searched for FedEx locations across the US-wide (zoomed in and out), took 3 pictures, then rotated and zoomed....all why having the song playing on the speakers.
It was snappy, responsive, and was BETTER than 3.x
So, if anyone brave enough to “reset” their life, give it a try. The key thing here, is SYNC your data, don't restore if from a backup. I'm not sure what I'll do over time, but I only have to last until December, then I'll be switching anyways.
DISCLAIMER: I make no warranties as to your experience. If you don’t backup your data, don’t blame me for deleting it.

I recently tried installing Windows NT 4.0 on my iMac G3. It does NOT install. I did some more research and discovered that Windows NT 4.0 requires an IBM PowerPC computer and is not really designed to work on Apple hardware. So, IBM computers with PowerPC processors are likely supported, whereas Apple computers with PowerPC processors are probably not supported.

Similar Messages

  • How to optimize web2 in order to open the window more quickly?

    how to optimize web2 in order to open the window more quickly ?

    salientgreen is right. But my suggestion is that you'd better first transfer these data to your computer to have a backup and then delete them to free up space.
    By the way, you can open Settings and navigate to General > Usage to get an idea of your storage consumption. Music, videos, and photos might be the biggest offender.

  • Short code snippet uses a lot of CPU. Suggestions on how to optimize?

    What I want to do is to ping a specified address after a specified delay, and then extract the delay and store it in a comma-separated file (optimally along with a timestamp). I could not find any way to make the delay with the ping command in windows XP, so I created a Timer for the task. The program does the trick, but the CPU usage jumps to about 50% when running the application. I'm kind of new to Java, and don't know all the do's and don'ts of threads and infinite loops. Any suggestion to how to optimize the code would be appreciated.
    package WitelcomMonitor;
    import java.io.*;
    import java.util.Timer;
    import java.util.TimerTask;
    public class WitelcomMonitor {
         Timer timer = new Timer(true);
         int counter;
         public WitelcomMonitor(long delay){
              timer.schedule(new TaskPerformer(), 0, 5000);
         class TaskPerformer extends TimerTask{
              public void run(){
                   try {
                        String line;
                        String[] command = {"ping", "-n","3", "123.12.12.1"};
                        Process p = Runtime.getRuntime().exec(command);
                        boolean append = true;
                        BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
                        PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("delayprofile.txt",append)));
                        String subline;
                        int indexEnd,indexStart;
                        while ((line = input.readLine()) != null) {
                             if(line.contains("TTL")){
                                  counter++;
                                  indexStart = indexEnd = line.indexOf("ms");
                                  do {
                                       indexStart--;     
                                  } while (line.charAt(indexStart)!='=');
                                  subline = line.substring(indexStart+1,indexEnd);
                                  out.print(subline.concat(","));
                                  System.out.println(subline.concat(","));               
                             //System.out.println(counter);
                        input.close();
                        out.close();
                   catch (Exception err) {
                        err.printStackTrace();
         public static void main(String[] args){
              long delay = 5000; //milliseconds     
              new WitelcomMonitor(delay);
              while(true);
    }

    Ok, so the while(true) statement by itself drains the CPU, while by asking the main thread to sleep in ten seconds intervals just to sleep again for ten seconds etc. will keep the load on the computer low. Yeah, it worked so I'm happy. I'm not sure though how I can avoid a new thread, as I have to extend TimerTask which requires that I override the run() method. This in turn causes a thread to be run in addition to the main thread. How do you suggest that I avoid this?

  • Toshiba M100 - How to optimize the performance?

    I upgrade my Toshiba M100 from XP to Windows 7 after installing 2GB ram.
    What to do for better performance to my system?

    Hi mate,
    What Toshiba M100 you have? Is it Portege M100, Satellite M100 or what else?
    To enhance the performance of Windows you should defragment the HDD, disable all services that you dont need and disable all start up programs that you dont need.
    If you ask Google for some tips how to optimize, you will find enough! ;)

  • How to optimize your PC for the 0404 USB and 0202 USB

    This is a guide on optimizing your system for the 0404 USB and 0202 USB.
    Make sure the 0404 USB is using a USB HOST that is on an IRQ alone. This means no other device in the PC can be sharing its IRQ.
    If you are running a hyper-threaded CPU, by turning hyperthreading off from the bios. You can set the latency at 20ms or lower and you will usually not have any latency issues.
    Change Processor Scheduling to 'Background Services' - Navigate to the Advanced page of the System applet. Click on the Performance Settings button, select its Advanced tab and click on 'Background Services' for Processor Scheduling.
    Switch Off Power Schemes - In the Power Options applet, choose the 'Always On' power scheme. Change the settings for monitor and hard disk turn off and System standby to 'Never', so that your PC doesn't unexpectedly conk out during song playback
    Disable System Sounds - Select the 'No Sounds' scheme on the Sounds tab of the Sounds and Audio Devices applet.
    Make sure legacy USB support is disabled in your BIOS.

    Hi everybody.
    This message to share my experience of the 0404 USB under Windows 7.
    I previously operated this sound adapter under Windows XP and it was working fine with my pipe organ simulator (Hauptwerk).
    When I switched to W7 on a Dell Vostro (professionnal series), sound was muting after exactly one minute . The same with a video on Yutube.....
    I did all the adjustments suggested here and there on the web (sampling rate, drivers) , I tried to operate at moonlight, I shot a chicken, etc ...
    After many manipulations, I noticed that, if I was doing "something", for instance moving the sound level up and down, the sound was going on ....
    The solution was in part at the beginning of the topic "how to optimize your PC for th 0404, etc ....".
    The keyword is "interrruption".
    As a matter of fact, the Dell laptop is strongly closed. The BIOS allows no adjustment of nothing.... No way to control interruptions allocation.
    BUT!!! I noticed that the two USB 2.0 ports are located very far away from each other. I supposed there would be TWO controlling chips. And I tried the second one. AND IT WORKED!
    So the E-MU guy is right, the device must get a free interruption line to operate ....!

  • How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word.

    How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word in the document. I am teacher. So for example when a student came to word he/she did not know, if he/she hovered the cursor over the word, a defintion or other information would appear.  You can do this in Word using bookmarks/hyperlinks but I can't figure this out in Pages. I can link it to another point in my Pages document but I just need the text to pop up - not take the reader to another location.  THANK YOU!!!!!!

    Have you tried Word for Mac?
    You will need to test if links survive export or printing to .pdf
    Peter

  • How to start a application with a login window?

    hi there
    does anyone have any idea on how to start an application with a login window? a login window is the first frame or window to be displayed when an application starts running. and only correct login id and password have been entered the real application will start. any sample out there? thank you.

    You can start a new thread by making a thread object and passing it an implementation of a runnable object. Runnable has just one method, public void run(), this is was gets executed in a second thread. perhaps the code you would use would look something like this.
    <code>
    // set up thread for login window
    new Thread(new Runnable() {
    public void run() {
    // construct your login window here
    // when you are done processing the
    // password....
    if(goodPassword) {
    authorized = true; // a global variable
    notifyAll(); // don't forget this
    else {
    System.exit(42);
    }).start();
    // control does not stop this code gets executed while
    // the above thread is running.
    // Set up main program here. This is done in the
    // backround.
    while(!authorized) {
    synchronized(this)
    { wait(50); }
    // now when the user logs in this frame pops
    // up real quick.
    myFrame.setVisible(true);
    </code>
    Hope you can figure it out.. good luck :)

  • How do I connect my airport extreme to windows 8.1

    how do I connect my airport extreme to windows 8.1

    Connect an Ethernet cable between the U-verse router's LAN port to the WAN (circle-of-dots) port on the AirPort Extreme Base Station (AEBS). Since you will have two routers in series, you will want to reconfigure the AEBS as a bridge. (ref: AirPort Utility > Select the AEBS > Manual Setup > Internet > Internet Connection tab > Connection Sharing = Off (Bridge Mode))

  • How to access my macbook pro from a windows pc?

    how to access my macbook pro from a windows pc?

    Depending on what you mean by "access" the following may help:
    File sharing: How to connect with File Sharing on your Mac - Apple Support
    One way (and there are others) for remote control and remote access between Mac and Windows: http://www.teamviewer.com/en/index.aspx

  • How to install The Soundblaster Audigy SE in Windows 7 RC?

    :How to install The Soundblaster Audigy SE in Windows 7 RC?Y Two days ago I bought a Soundblaster Audigy SE-retail soundcard. I have a dual boot PC with Windows XP-SP3 and Windows 7 RC. The installation of the soundcard?in Windows XP was easy, no problems, good sound.
    But how to install in Windows 7 RC ?
    I have the installation and applications CD with XP and Vista drivers and I have the driver-download from Creative.com SB24PCDRV LB 0 - 04 - 0090.
    Windows 7 tells me "No device for audio output is installed". Windows automaticly?installed a driver, but that doesn't work. (code 39). The driver download from?creative does not install new drivers and when I try it manually Windows tells me "The best driver is already installed"
    When I uninstall?the driver that Windows installed and try to install the downloaded?creative driver for Windows 7, the driver will not install, and Windows message is something like "?no audio device is installed on this computer"
    What to do ? A computer without sound is nothing...
    Thanks,
    Arie

    >Re: How to install The Soundblaster Audigy SE in Windows 7 RC?% Meocene is 00% on the money. Dan K.'s pack is the best. I have used the pack on four different systems with AUDIGY LS and SE cards that I bought cheaply (all four on Ebay for $40). The package has worked under XP, Vista, and Windows 7 very well.
    I have friends that play Left4Dead and they have been immensely pleased when playing the games in their flats with or without headphones, as compared to their old "onboard RE--t-k" sound.
    The package also works well on a Gateway or HP machine when disabling onboard audio first then installing the Audigy and installing drivers and apps for the first time. Gi've up on using your old CDs, you will only run into a mountain of trouble trying to "Auto-Update" all that with the newest patches.

  • How can I create more than one main window in a page of SAP SCRIPT?

    How can I create more than one main window in a page of SAP SCRIPT? If anybody helps me I will be obliged.
    Regards,
    Subhasish

    Hi Ganguly,
    It is possible to have more than one main window in a same page.
    You create a main window and simply you copy and past it in the same page.. it will create first main window name as MAIN and other main windows as MAIN01,MAIN02.... up to MAIN99.
    Contets flow from MAIN , MAIN01, MAIN02.......................MAIN99. contents after filling the current window it flows to next window(by default, you skip as well with some keyword not sure could be NEW-WINDOW)
    you want print the main window data twice? or you want to create two main window in the same page ?
    1. give two copies in the no of copies in the output type screen ( Which pop up is coming after excute the program ).
    2. create two page with the same script form.
    3. you can write the coding inside the program to print twice the same page.
    Hope this information use full to you..

  • How can I output text in a browser window in JAVA?

    How can I output text in a browser window in JAVA?

    "response.getWriter().print()" is the most common method when using servlets

  • How can I display modes in connection create window

    Hi Pro,
         I create a environment/model, then I get into EPM excel addin, try to create a connection, but eventhough I choose my environment created, but I get blank list for model drop down list. how can I display modes in connection create window?

    Hi Yi Fei,
    Add user to your environment, check their security profiles, also check roles in BW.
    Andy

  • HT4818 hey, I want to install windows on my mac, I have mac osx lion and I'm soon going to get mountain lion. If I use Boot camp to install windows do I need a windows disc, will i lose all my data, etc. If so how to I save them. Can I switch back to osx

    hey, I want to install windows on my mac, I have mac osx lion and I'm soon going to get mountain lion. If I use Boot camp to install windows do I need a windows disc, will i lose all my data, etc. If so how to I save them. Can I switch back to osx after I install windows. ( can I switch between Windows and OS X as many times as I want.) thanks for answering.
    Sebastian

    hey, I want to install windows on my mac, I have mac osx lion and I'm soon going to get mountain lion. If I use Boot camp to install windows do I need a windows disc, will i lose all my data, etc. If so how to I save them. Can I switch back to osx after I install windows. ( can I switch between Windows and OS X as many times as I want.) thanks for answering.
    Sebastian

  • How to display more than one documents on windows 8 desktop?

    how to display more than one documents on windows 8 desktop?

    Adobe Reader Touch doesn't show more than one file on screen and doesn't show them on the desktop. Apparently these are very old fashioned things that Microsoft doesn't think we'll want to do any more and calls them "legacy" to make them sound antiquated.
    If you want to do these things use the legacy Adobe Reader, a much more powerful and flexible app (and not obsolete in the slightest). http://get.adobe.com/reader . There are no legacy apps in the Windows App Store.

Maybe you are looking for

  • Advice needed - .vob file conversion for playing on itouch

    help needed and advice on best application for dvd/movie file conversion. i want to convert .vob file so i can transfer to ipod. seems like there are several free & pay for app's out there - any guidance as to which is the best would be appreciated.

  • How to activate Show Set Operations in Ad Hoc query

    When I go into ad hoc query using an infoset I created the Extras > Show Set Operations and Switch off object selection functions are greyed out and I cannot select them.  On another infoset these functions are available for selection. Is there some

  • Adding Text to a TextFrame

    Hi,<br /><br />i'm transfering a plugin from CS2 to CS3, in CS2 i created a TextFrame with SDKLayoutHelper.CreateTextFrame and used this code to add some text to it:<br /><br />>InterfacePtr<IGraphicFrameData> graphicFrameData(newTextFrame, UseDefaul

  • ITunes 8.2 has problems handling larger music files

    Hi, After upgrading to iTunes 8.2, I have begun to notice that the program is halted with larger mp3 files. I have quite a lot of music files with size 200MB and above and before opening them, iTunes stops for about 10-15 seconds (with "beach ball" o

  • Character Encoding question

    I'm helping another group out on this so I'm pretty new to this stuff so please go easy on me if I ask anything that is obvious. We have a J2EE web application that is sitting on a Red Hat Linux box and is being served up by OAS 10.1.3. The applicati