Trying to use a Nano with 10.2.8

Alrigth, I just bought an iPod Nano. On the car ride home, I see that you need 10.3.4 to use it. I can't get that unless I buy a new computer... which isn't gonna happen. I have an iMac G3, 10.2.8,iTunes 6.0.1, and a highspeed 2.0 USB. Can I use the Nano with these settings? Do you know for sure?
Please reply A.S.A.P!
Thanks

Alrigth, I just bought an iPod Nano. On the car ride
home, I see that you need 10.3.4 to use it. I can't
get that unless I buy a new computer... which isn't
gonna happen. I have an iMac G3, 10.2.8,iTunes 6.0.1,
and a highspeed 2.0 USB. Can I use the Nano with
these settings? Do you know for sure?
Please reply A.S.A.P!
Thanks
I'm using just this configuration. The only problem I have is the dreaded "Do not disconnect" message which never goes away. I wait to be sure all downloads are done, then eject the nano, and everything is OK.

Similar Messages

  • Trying to use new nano with old mac

    Hi, I was wondering if someone could give me some advice.
    I recently received an ipod nano as a gift. Unfortunately, my ibook is from 2001, and i am still running the original OS 10.
    From what I have read in these discussion forums, it would probably not be wise for me to try to install OS 10.4 on my computer. However, I believe that OS 10.4 is needed for my computer to be compatible to my nano.
    I have hundreds of songs on my ibook, which I would really like to transfer to my new ipod. What can I do?
    thanx
    ibook Mac OS X (10.0.x)

    Apple's minimum specs for the Nano are 10.3.x basically because that was the first version of the MacOS to support USB 2. However, many people, including my wife, are using a Nano with computers that have USB 1. So the real limiting factor is what version of the OS your computer can comfortably run. I wouldn't recommend 10.4 but 10.3 is certainly doable. I know several people running around with the colored iBooks running 10.3. And certainly 10.2 is doable though I don't know if iTunes 6 will run on Jaguar.

  • I'm trying to use kerberos V5 with ActiveDirectory but get an error

    I'm trying to use kerberos V5 with ActiveDirectory im using simple code from previuos posts but
    when i try with correct username/password i get :
    Authentication attempt failedjavax.security.auth.login.LoginException: Message stream modified (41)
    when i try incorrect username/pass i get :
    Pre-authentication information was invalid (24)
    Debug info is :
    Debug is  true storeKey false useTicketCache false useKeyTab false doNotPrompt false ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Kerberos username [naiden]: naiden
    Kerberos password for naiden:      naiden
              [Krb5LoginModule] user entered username: naiden
    Acquire TGT using AS Exchange
              [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    Authentication attempt failedjavax.security.auth.login.LoginException: Java code is :
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.security.auth.login.*;
    import javax.security.auth.Subject;
    import com.sun.security.auth.callback.TextCallbackHandler;
    import java.util.Hashtable;
    * Demonstrates how to create an initial context to an LDAP server
    * using "GSSAPI" SASL authentication (Kerberos v5).
    * Requires J2SE 1.4, or JNDI 1.2 with ldapbp.jar, JAAS, JCE, an RFC 2853
    * compliant implementation of J-GSS and a Kerberos v5 implementation.
    * Jaas.conf
    * racfldap.GssExample {com.sun.security.auth.module.Krb5LoginModule required client=TRUE useTicketCache=true doNotPrompt=true; };
    * 'qop' is a comma separated list of tokens, each of which is one of
    * auth, auth-int, or auth-conf. If none is supplied, the default is 'auth'.
    class KerberosExample {
    public static void main(String[] args) {
    java.util.Properties p = new java.util.Properties(System.getProperties());
    p.setProperty("java.security.krb5.realm", "ISY");
    p.setProperty("java.security.krb5.kdc", "192.168.0.101");
    p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
    System.setProperties(p);
    // 1. Log in (to Kerberos)
    LoginContext lc = null;
    try {
    lc = new LoginContext("ISY",
    new TextCallbackHandler());
    // Attempt authentication
    lc.login();
    } catch (LoginException le) {
    System.err.println("Authentication attempt failed" + le);
    System.exit(-1);
    // 2. Perform JNDI work as logged in subject
    Subject.doAs(lc.getSubject(), new LDAPAction(args));
    // 3. Perform LDAP Action
    * The application must supply a PrivilegedAction that is to be run
    * inside a Subject.doAs() or Subject.doAsPrivileged().
    class LDAPAction implements java.security.PrivilegedAction {
    private String[] args;
    private static String[] sAttrIDs;
    private static String sUserAccount = new String("Administrator");
    public LDAPAction(String[] origArgs) {
    this.args = (String[])origArgs.clone();
    public Object run() {
    performLDAPOperation(args);
    return null;
    private static void performLDAPOperation(String[] args) {
    // Set up environment for creating initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    // Must use fully qualified hostname
    env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389/DC=isy,DC=local");
    // Request the use of the "GSSAPI" SASL mechanism
    // Authenticate by using already established Kerberos credentials
    env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    env.put("javax.security.sasl.server.authentication", "true");
    try {
    /* Create initial context */
    DirContext ctx = new InitialDirContext(env);
    /* Get the attributes requested */
    Attributes aAnswer =ctx.getAttributes( "CN="+ sUserAccount + ",CN=Users,DC=isy,DC=local");
    NamingEnumeration enumUserInfo = aAnswer.getAll();
    while(enumUserInfo.hasMoreElements()) {
    System.out.println(enumUserInfo.nextElement().toString());
    // Close the context when we're done
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    }JAAS conf file is :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };krb5.ini file is :
    # Kerberos 5 Configuration File
    # All available options are specified in the Kerberos System Administrator's Guide.  Very
    # few are used here.
    # Determines which Kerberos realm a machine should be in, given its domain name.  This is
    # especially important when obtaining AFS tokens - in afsdcell.ini in the Windows directory
    # there should be an entry for your AFS cell name, followed by a list of IP addresses, and,
    # after a # symbol, the name of the server corresponding to each IP address.
    [libdefaults]
         default_realm = ISY
    [domain_realm]
         .isy.local = ISY
         isy.local = ISY
    # Specifies all the server information for each realm.
    #[realms]
         ISY=
              kdc = 192.168.0.101
              admin_server = 192.168.0.101
              default_domain = ISY
         }

    Now it works
    i will try to explain how i do this :
    step 1 )
    fallow this guide http://www.cit.cornell.edu/computer/system/win2000/kerberos/
    and configure AD to use kerberos and to heve Kerberos REALM
    step 2 ) try windows login to the new realm to be sure that it works ADD trusted realm if needed.
    step 3 ) create jaas.conf file for example in c:\
    it looks like this :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };step 4)
    ( dont forget to make mappings which are explained in step 1 ) go to Active Directory users make sure from View to check Advanced Features Right click on the user go to mappings in secound tab kerberos mapping add USERNAME@KERBEROSreaLm for example [email protected]
    step 5)
    copy+paste this code and HIT RUN :)
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    import javax.security.auth.Subject;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.login.LoginException;
    import com.sun.security.auth.callback.TextCallbackHandler;
    public class Main {
        public static void main(String[] args) {
        java.util.Properties p = new java.util.Properties(System.getProperties());
        p.setProperty("java.security.krb5.realm", "ISY.LOCAL");
        p.setProperty("java.security.krb5.kdc", "192.168.0.101");
        p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
        System.setProperties(p);
        // 1. Log in (to Kerberos)
        LoginContext lc = null;
        try {
                lc = new LoginContext("ISY", new TextCallbackHandler());
        // Attempt authentication
        lc.login();
        } catch (LoginException le) {
        System.err.println("Authentication attempt failed" + le);
        System.exit(-1);
        // 2. Perform JNDI work as logged in subject
        Subject.doAs(lc.getSubject(), new LDAPAction(args));
        // 3. Perform LDAP Action
        * The application must supply a PrivilegedAction that is to be run
        * inside a Subject.doAs() or Subject.doAsPrivileged().
        class LDAPAction implements java.security.PrivilegedAction {
        private String[] args;
        private static String[] sAttrIDs;
        private static String sUserAccount = new String("Administrator");
        public LDAPAction(String[] origArgs) {
        this.args = origArgs.clone();
        public Object run() {
        performLDAPOperation(args);
        return null;
        private static void performLDAPOperation(String[] args) {
        // Set up environment for creating initial context
        Hashtable env = new Hashtable(11);
        env.put(Context.INITIAL_CONTEXT_FACTORY,
        "com.sun.jndi.ldap.LdapCtxFactory");
        // Must use fully qualified hostname
        env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389");
        // Request the use of the "GSSAPI" SASL mechanism
        // Authenticate by using already established Kerberos credentials
        env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    //    env.put("javax.security.sasl.server.authentication", "true");
        try {
        /* Create initial context */
        DirContext ctx = new InitialDirContext(env);
        /* Get the attributes requested */
        //Create the search controls        
        SearchControls searchCtls = new SearchControls();
        //Specify the attributes to return
        String returnedAtts[]={"sn","givenName","mail"};
        searchCtls.setReturningAttributes(returnedAtts);
        //Specify the search scope
        searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
        //specify the LDAP search filter
        String searchFilter = "(&(objectClass=user)(mail=*))";
        //Specify the Base for the search
        String searchBase = "DC=isy,DC=local";
        //initialize counter to total the results
        int totalResults = 0;
        // Search for objects using the filter
        NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
        //Loop through the search results
        while (answer.hasMoreElements()) {
                SearchResult sr = (SearchResult)answer.next();
            totalResults++;
            System.out.println(">>>" + sr.getName());
            // Print out some of the attributes, catch the exception if the attributes have no values
            Attributes attrs = sr.getAttributes();
            if (attrs != null) {
                try {
                System.out.println("   surname: " + attrs.get("sn").get());
                System.out.println("   firstname: " + attrs.get("givenName").get());
                System.out.println("   mail: " + attrs.get("mail").get());
                catch (NullPointerException e)    {
                System.err.println("Error listing attributes: " + e);
        System.out.println("RABOTIII");
            System.out.println("Total results: " + totalResults);
        ctx.close();
        } catch (NamingException e) {
        e.printStackTrace();
    }It will ask for username and password
    type for example : [email protected] for username
    and password : TheSecretPassword
    where ISY.LOCAL is the name of kerberos realm.
    p.s. it is not good idea to use Administrator as login :)
    Edited by: JOKe on Sep 14, 2007 2:23 PM

  • I am trying to use apple configurator with ipads. I have been successful with all our ipads but 1. It will not allow me to add apps. The error I get is that it is refreshed but with errors e

    I am trying to use apple configurator with ipads. I have been successful with preparing and supervising all ipads but one. When preparing it in configurator, I receive an error that it is refreshed but with an error. Under supervise, I am not able to add apps. I have erased all content to start over but this does not work either

    Are you trying to restore a backup, or just sync some apps? Do you have profiles installed on the device?
    Have you plugged the ipad into iTunes, and did a fresh install? I'm assuming the device went through the prepare setup properly. You many have to unsupervise it first, then plug it into iTunes to wipe it completely.
    I'd then do each step seperately. Prepare it, then install 1 app, if that works, try another app, then maybe a profile.

  • Trying to use olite35.jar with JDK1.1.8

    Hi,
    I'm using the olite35.jar in a piece of code that compiles but won't run under JDK1.1.8 When I attempt to run the code I get the following:
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: no oljdbc35 in shared library path
    at java.lang.Runtime.loadLibrary(Compiled Code)
    at java.lang.System.loadLibrary(System.java:561)
    at
    at SelectUser.SelectUser_WindowOpened_Interaction1(SelectUser.java:149)
    at SelectUser.SelectUser_WindowOpened(SelectUser.java:139)
    at SelectUser$SymWindow.windowOpened(SelectUser.java:106)
    at java.awt.Window.processWindowEvent(Window.java:385)
    at java.awt.Window.processEvent(Window.java:364)
    at java.awt.Component.dispatchEventImpl(Component.java:1812)
    at java.awt.Container.dispatchEventImpl(Container.java:946)
    at java.awt.Window.dispatchEventImpl(Window.java:509)
    at java.awt.Component.dispatchEvent(Component.java:1744)
    at java.awt.EventDispatchThread.run(Compiled Code)
    Library? "oljdbc35"? Can anyone help?
    Regards,
    Tobin

    Alrigth, I just bought an iPod Nano. On the car ride
    home, I see that you need 10.3.4 to use it. I can't
    get that unless I buy a new computer... which isn't
    gonna happen. I have an iMac G3, 10.2.8,iTunes 6.0.1,
    and a highspeed 2.0 USB. Can I use the Nano with
    these settings? Do you know for sure?
    Please reply A.S.A.P!
    Thanks
    I'm using just this configuration. The only problem I have is the dreaded "Do not disconnect" message which never goes away. I wait to be sure all downloads are done, then eject the nano, and everything is OK.

  • I am trying to use my account with a new computer.  Now we can't get the new music to download on the IPod.  Any help/

    I am trying to use my I Tunes account with a new computer.  Now we can't get the new music we bought to sync with the Nano.  Any ideas?

    Downloading past purchases
    http://support.apple.com/kb/HT2519
    Recovering iTunes library from your device.
    https://discussions.apple.com/docs/DOC-3991

  • Can you use new Nano with iTunes 6?

    I'd like to get the new iPod Nano, but I have Mac OS 10.2.8, so I can't get iTunes 7. It says on the system requirements that I need 7, but is it really necessary? (i.e. is it possible to use the new iPod Nano with iTunes 6?)

    Welcome to Apple Discussions!
    While I haven't tried, I would image the answer is no.
    Usually when iPods are released with a new iTunes version, they aren't made to be/are made not to be compatible with previous iTunes versions.
    It may work, but I can't be sure either way (someone else may have tested this).
    In the past, even if iTunes updated the iPod, there tended to be problems syncing.
    btabz

  • Can I use my Nano with 2 different computers

    Can I use my Nano on 2 different computers. One at my house and one in my office. Thank you for any insight.

    Sure can.
    Using iPod With Multiple Computers
    Cheers!
    -Bryan

  • I have a hp hpe-595a, i'm trying to use stereo mix with a hot mic. anyone know how to do this?

    I'm trying to sing along with the music in the chat program Paltalk and also host a music room on the same program, I can only use the mic or stereo mix but not both at the same time.
    I have been using this chat program for over 5yrs and have always been able to use Stereo mix with the mic active, using the realteck codecs or soundblaster (what you hear)
    I can't do this with the IDT codecs supplied.

    Hey Redritr,
    Thanks for the question. iTunes purchases are billed to Store Credits first, before Credit Cards, as outlined by the following article:
    When making purchases, content credits are used first, followed by Gift Certificate, iTunes Card, or Allowance Account credits; your credit card or PayPal account is then charged for any remaining balance.
    via iTunes Store: How iTunes Store purchases are billed
    http://support.apple.com/kb/HT5582
    It also may be that the iTunes Store is prompting to verify your billing information:
    When there is a mismatch between the iTunes Store's records and your credit card company's records, you will receive an error message stating that your credit card's security code isn't valid or that your zip code does not match your bank's records.
    In most cases, this issue is caused by a formatting error in the billing address that you have provided. You can correct the issue by verifying that the information you have provided is correct, or by changing the format of your address to match the format that your credit card company has on file.
    via iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/TS1646
    Additional Information:
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/TS5366
    Thanks,
    Matt M.

  • 2013 Honda Civic Si, SMS Text Message Function says "Unsupported Device" when trying to use this feature with iPhone 5. Can anyone help with this?

    In my 2013 Honda Civic Si, I'm trying to use the SMS Text Message Function, but keep getting the error message, "Unsupported Device".
    I use an iPhone 5 with latest iOS 6.1.4.
    HandsFreeLink works perfectly fine with my iPhone for voice calls and for streaming Bluetooth Audio. Does text messaging not work because of iMessage? Does anyone have any suggestions for this issue?
    Thanks in advance!

    In looking for a 2013 Honda Civic (LX model, no Navi), the text feature was very interesting and important to me. Why not have my texts available on the dash and read to me rather than messing with my phone. Anyway I won't go into the whole thing about safety while you're in your driving and all that. We all know what we should and shouldn't do. Anyways...
    I spoke to a salesman who said that this feature was not compatible with the iPhone, only BBs. Of course this didn't impress me and I found it hard to believe that Honda would restrict themselves like that. Anyway, a few searches on the web later and Honda shows that the iPhone 4, 4S and 5 are compatible for receiving texts through the car, just not sending them. I believe you need a minimum of iOS 5+ for it to work though.
    Once I found this the salesman and I did some testing with our phones. He has a 4S with iOS 6.1.3 and mine is a 4 with iOS 6.1.3. Initially we setup the phone using the Bluetooth config on the Civic's iMID display. It was setup and hands-free calling tested o.k. Next the texting was tested. Both of us have iMessage turned on. Neither of us could get the messages we would send each other (1 of us had our phone setup with the car, the other sent the text and vice versa). The messages were received by the phones, just not the car). When we would go under the Text Message section, it would say "Unsupported Device". I knew that couldn't be as Honda said it was compatible. After more web searches and a phone call to Honda by the salesman, I found the following.
    1) It seems like the person who had their phone paired with the Civic had to disable iMessage to start getting texts. The salesman still had it enabled on his though when he sent me texts (as SMS) and the Civic got them so both people aren't necessarily required to disable it. Now under the Text Message section, it would list the messages received.
    2) I changed the Notifications on my phone for Messages from Banner to Alerts. Once I did this it started to work. The texts were showing up on the car. I had read where another person had tried this successfully but then changed it back to Banner and it continued to work. I experienced the same thing.
    Granted this wasn't extensive testing but I was able to get it to do something closer to what I wanted. I'm not sure why Apple and Honda can't put their heads together to make sending texts work on the car but maybe someday it will work when enough people complain. It's kind of a disappointment that I couldn't get iMessage to work but I haven't given up hope yet. As it's a proprietary protocol, I can see Honda not supporting it though.
    Hope this helps someone out!
    FYI I bought car!

  • When trying to use iMessage Share with iPhoto i got this message "couldn't communicate with a helper application"

    I was trying to use imessage to share a photo with iPhoto.  I go the message "couldn't communicate with a helper application"
    My iMessage works fine for everything else.  I am currently running yosemite and every app has been updated.
    I restarted the macbook pro and i didn't resolve the situation.  Is anyone else having this issue?
    dawn

    Are you getting that message window after clicking on the "+" button to access your Contacts?
    That's what happens to me.  I know of now way to fix it. 
    My workaround is to create a new message in Messages and drag the photo from the iPhoto window into the message section of a new message and use the "+" button there to get the address to use

  • Trying to use PowerMac G4 with HD Cinema Display

    I am trying to use a PowerMac G4 Digital Audio with an Apple HD Cinema Display (23-inch). I bought the Belkin connector so I could connect ADC to DVI. When I start up the Mac, I get the startup screen, gray with Apple logo and spinning startup ball, but then it goes dark. Any idea what the problem might be? Could it be a video card issue?  Thanks!

    If you get something like the linked HP, you will want an upgraded card, minimum of a Radeon 9800 Pro.
    The DA can use numerous 4x AGP options, of which the best overall performer is a Geforce 6800 GT (flashed PC version).
    The main issue with the HP is the newer 16:9 ratio, for which most old OEM cards have no firmware resolution support (only 16:10 was available in the day).
    Use of some software like SwitchresX will be necessary with a newer monitor and older OEM cards.
    OEM options are all listed on my page here:
    8923D90A-7AD8-41F1-BD1A-FEA5E1780B95.html
    All performance options are listed here:
    4B4B7BA2-7ABB-47F1-87AC-B03D37942BEE.html
    Like Jon said, if you upgrade your graphics card, your DA will love it (and you, in turn, will love the DA more).

  • Using iPod Nano with 0SX10.1 & USB1

    I want to use my Nano!
    I've a G4 512mb with OSX 10.1 & USB1 with CDRW not DVD.
    I'll need OSX 10.3.9 or later and a USB 2card right? (since it would be sooooo slow otherwise?)
    Will I be able to load this later software with CDRW
    Thanks

    Mac system requirements
    Macintosh computer with USB port (USB 2.0 recommended)
    Mac OS X v10.3.4 or later
    i am not sure if you can load it i dont quite understand your question.
    Black iPod Nano|Black Razr V3|All kinds of cases for nano|Radio/Remote|PSP   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • Trying to use old Iphone with IOS 3.1.3 as Ipod

    My kids are trying to use an old Iphone Gen 1 as a Ipod.  We have successfully loaded music, but now of course they want games.  All games need a newer version of IOS.  Can I upgrade somehow?  Itunes says the IOS is up to date with no opportunity to upgrade.
    My kids will thank you!!!

    Well they are apps and games in the app store which are supported with the iPhone 3G or iOS 3.1.3. Old games of course. BTW remove the sim so your kids cannot make phone calls and send SMS.

  • Trying to use flex pitch with logic pro 9 session in 192k crashes program

    i try to use flex pitch with a previous logic 9 session and and soon as i switch to flex pitch it just crashes no matter what session i bring up in 192k, i dont have any 96k files to test but is flex pitch non-caompatible with 192k sessions

    JofishSamuel wrote:
    Okay? Sorry, I have no experience with .mid files as I've never exported or imported them or moved them before... or even highlighted one before!
    Two ideas, have your friend check and make sure the mid file plays on his/her system.
    and/or
    If the mid file checks out good on his/her system have them compress (ZIP) the file and resend as it could have become corrupted during transfer. It can happen.
    Your description of the file (zero length) sounds like it missed the last few bytes.
    pancenter-

Maybe you are looking for

  • New version import

    Stupidly, i left auto updates on and my FCPX has been updated to the new version,10.1.3. I let it update all my files to work with the updated version but now not only do i have backups running in a constant loop but i can't seem to import any files!

  • High pitch sound (1.0.3).

    Does anyone else's ears tire after listening to their units for 10 minutes or more (of course with the volume level at a reasonable level ~30%)? I'm detecting an almost invisible high pitch sound. I have firmware 1.0.3. I'm reluctant to update to 1.1

  • Output the number of rows returned in a query

    How do I find out the number of rows that are returned in a query? COUNT function I guess can only be used when there is only one table involved. How do I do it for multi table query like JOIN? For example SELECT emp.first_name, emp.last_name, jobs.a

  • I would like to be able to read my books on a non-Apple computer.  Is this possible?

    I would like to be able to read my iBooks on a non-Apple computer.  Is this possible?

  • 1-way Sync: send iCal events to Entourage

    I want to use Sync Services to send my iCal (v. 2.0.5) events to Entourage (2004 v. 11.3.6) and keep Entourage synched with iCal. The reason I'm doing this is because I much prefer how Entourage prints out a calendar; so I use iCal on-screen, but pri