Can I use Keychain without owning a SMS phone?

I can not set-up keychain on my new iMac.  On my iPad and iPod, it gets to a point where it asks for either the telephone number for a SMS (short messaging) phone or tells me a password is being sent to my phone (not SMS).  Can't you use the new keychain without owning a cell phone?

Hi there johnparks,
You can use the steps in the article below to set up iCloud Keychain without an SMS-capable phone number.
iCloud Keychain availability by country
http://support.apple.com/kb/HT6020
Devices using iOS 7.0.3
Go to Settings > iCloud > Keychain.
Enter your Apple ID password.
When asked if you want to use your device passcode as the iCloud Security Code, tap Create Different Code.
Tap Advanced Options, then choose one of these options:
Get a Random Security Code.
Don't Create Security Code. Choosing not to create an iCloud Security Code means that your iCloud Keychain is stored only locally on your device and updates only across your approved devices, not with Apple's servers.
Follow the onscreen instructions to complete setup of iCloud Keychain.
Macs using OS X Mavericks v10.9 or later
Choose Apple () menu > System Preferences. Click iCloud, then select Keychain.
Enter your Apple ID password.
Click Advanced, then choose one of these two options:
Get a Random Security Code.
Don't Create Security Code. Choosing not to create an iCloud Security Code means that your iCloud Keychain is stored only locally on your Mac and updates only across your approved devices, not with Apple's servers.
Follow the onscreen instructions to complete setup of iCloud Keychain.
-Griff W.

Similar Messages

  • Can I use MainStage without owning Logic?

    I use Pro Tools and Reaper in the studio, so I won't to jump ship to Logic; simply b/c however nifty it is,  it's not worth the steep time-consuming learning curve.  However, for live performance as a keyboardist, I'm looking for a Mac-based VST host to be controlled by a USB/MIDI keyboard controller, and am wondering if  MainStage might be the way to go.  The price is so cheap, how could I go wrong?  But no matter where I search, I don't get a clear answer to these questions:
    Can I use MainStage without owning Logic?
    For a $29 download, does MainStage also come with all the content (sounds, etc.) for its built-in instruments, or is it assuming you already have those b/c you presumably own Logic?
    This question may need its own separate thread, but: Ideally, my keyboard setups for a "concert" may need as many as five VSTs per song (e.g., custom samples in Kontakt, Wurly, B-3, piano, glockenspiel, whatever) spread out in various discrete layers across a keyboard.  Has anyone tested this more-complex and memory-taxing sort of a setup out in a live situation?
    Thanks for any insight,
    Peter

    SASPro wrote:
    Can I use MainStage without owning Logic?
    If you buy it from the AppStore, YES
    SASPro wrote:
    For a $29 download, does MainStage also come with all the content (sounds, etc.) for its built-in instruments, or is it assuming you already have those b/c you presumably own Logic?
    All the instrument and FX plugs are included, and a (massive) additional free download within the Mainstage application will get you all the extra content.
    SASPro wrote:
    This question may need its own separate thread, but: Ideally, my keyboard setups for a "concert" may need as many as five VSTs per song
    Caution: Logic/Mainstage will only work with Audio Unit (AU) plugins, NOT VST. Most 3rd party plugs are available as AU plugs, but you need to make sure you have installed them.
    SASPro wrote:
    Has anyone tested this more-complex and memory-taxing sort of a setup out in a live situation?
    Yes, and memory/CPU issues not withstanding, Mainstage generally works extremely well for this.
    CCT

  • Can i use keypad without cutting out speaker?

    When I need to use the keypad to input numbers while I'm in a call, the speaker cuts out. Sometimes it takes a few seconds for the sound to return, so I lose the answer, usually from an automated system. Other iPhone users say this should not happen. Any way I can fix this, or is the phone broken?

    SASPro wrote:
    Can I use MainStage without owning Logic?
    If you buy it from the AppStore, YES
    SASPro wrote:
    For a $29 download, does MainStage also come with all the content (sounds, etc.) for its built-in instruments, or is it assuming you already have those b/c you presumably own Logic?
    All the instrument and FX plugs are included, and a (massive) additional free download within the Mainstage application will get you all the extra content.
    SASPro wrote:
    This question may need its own separate thread, but: Ideally, my keyboard setups for a "concert" may need as many as five VSTs per song
    Caution: Logic/Mainstage will only work with Audio Unit (AU) plugins, NOT VST. Most 3rd party plugs are available as AU plugs, but you need to make sure you have installed them.
    SASPro wrote:
    Has anyone tested this more-complex and memory-taxing sort of a setup out in a live situation?
    Yes, and memory/CPU issues not withstanding, Mainstage generally works extremely well for this.
    CCT

  • Can you use appltv without an iphone or ipad?

    can you use appltv without an iphone or ipad?
    can you use appltv without an iphone or ipad?
    can the apple tv be used if I do not own another apple prouct?

    The Apple Tv is a stand alone device. It does not require an iPhone, iPad or other Apple Product.
    An Apple Tv is simply plugged into an HD Tv via an HDMi cable, and has a control remote to select the options form its onscreen menu.
    https://www.apple.com/appletv/

  • Can I use one iCloud account for two phones without sharing contacts

    Can I use one iCloud account for two phones without sharing contacts

    If so how do I unmerge the two phones?

  • How can i use RemoteObject without mxml?

      hi:
       in my flex project , i use blazeds + puremvc , so i want to put my business code in actionscript as proxy to communicate with java code, the proxy code like :
    public function requestServer(page:PageInfo):void{
       userServiceRM = new RemoteObject();
       userServiceRM.destination="userService";
       userServiceRM.getsimpleList();
       var pageResult :Object= userServiceRM.getsimpleList.lastResult;
       sendNotification(UserStartupCommond.USERLIST_GOT,pageResult );
    but i have a problem that pageResult is a  null value .(the Configuring and the server side have no problem .)
    how can i use RemoteObject without mxml?
     thanks.

    Hi. Remote object calls are asynchronous so you can't access the result immediately after making the call. You need to wait until the server returns the result. There are a couple ways to set this up. Probably the easiest thing to do is to add an event listener that will be called when the result comes back from the server. Here is what that would look like.
    public function requestServer(page:PageInfo):void {
    userServiceRM = new RemoteObject();
    userServiceRM.destination="userService";
    userServiceRM.addEventListener("result", resultHandler);
    userServiceRM.addEventListener("fault", faultHandler);
    userServiceRM.getsimpleList();
    public function resultHandler(event:ResultEvent) {
    var pageResult :Object= userServiceRM.getsimpleList.lastResult;
    sendNotification(UserStartupCommond.USERLIST_GOT,pageResult);
    public function faultHandler(event:FaultEvent) {
    //handle remote object fault
    Look at the RPC Components section of the BlazeDS Developers guide for more information about using the RPC components. Hope that helps.
    -Alex

  • Can i use store without payment cards?

    can i use store without payment cards?

    You can buy an iTunes gift card in most supermarkets.  Just register it in iTunes and you are good to go.

  • Is it manitory to have an airport antenna or can you use it without the antenna (powermac g5 dual processor 10.4.11)

    Is it manitory to have an airport antenna or can you use it without the antenna (powermac g5 dual processor 10.4.11)

    On the PowerMac G4 I had it had to be connected, but not sure about the model you have.  My guess would be yes due to shielding in the case, but would rather wait and hear from someone else.

  • Can I use JavaMail without Mailing Server??

    Dear All,
    My name is Jonathan Wong, a final year student.
    I am going to develop an internet application for my final year project that contains a part to sent e-mails by using JavaMail.
    Can I use JavaMail without setting up any Mail Server?? If no, can I use the ISP one?? Also, how can I retreive the mailing list from database to JavaMail?? Please advise.
    Thanks in advance.
    Best Wishes
    Jonathan

    You dont neend to set up a Mail server , You just have to connect to the desired mail server to send and retreive mails............. You should read the Javamail Api , you will find all the classes and required methods there ,, to retreive and send emails........

  • Can i use my itouch to make skype phone calls without wifi.

    Can i use my itouch to make skype phone calls away from a wifi source just like a conventional mobile phone.

    No. The iPod does not have a cellular connection. Thus, an iPod without wifi can't connect to the Internet

  • Can I use indesign without being online

    can I use indesign without being online.

    Creative Cloud aplications are installed on and run from your computer. You must have an internet connection to activate, and CC will "phone home" periodically to verify that your subscription is valid, but otherwise no network connecton is required. If CC is unable to make a connection to verify subscription status you should still have 30 days grace period to work.
    As far as the file being too large, I'm not a Publisher user so I don't know haow it handles images, but the correct method in InDesign would be to Place the images which creates a link to the original of only a few bytes in the file, and it would not be unusual to have a document with hundreds of pages and hundreds of linked photos.

  • Can I use MapViewer without Oacle Spatial?

    Can I use MapViewer without Oacle Spatial and get spatial data from other method (such as Java Caches or directly from other application)?

    MapViewer requires an Oracle database for metadata storage, coordinate transforms, and spatial computations.

  • HT3258 What is correct update or upgrade for Mac OSX v 10.5.8? Also can't use sites without updates on firefox & safari. Auto update shows none available?

    What is correct update or upgrade for Mac OSX v 10.5.8? Also can't use sites without updates on firefox & safari. Auto update shows none available?

    Click here.
    (89934)

  • Can I use my fully owned CS2 on my iMac OX 10.9.5 as I paid over $1850.00 some 7 years ago for it and have been told by "Experts" that I can reinstall from my original software disks (which I have including all passwords etc required. Please assist as whe

    Can I use my fully owned CS2 on my iMac OX 10.9.5 as I paid over $1850.00 some 7 years ago for it and have been told by "Experts" that I can reinstall from my original software disks (which I have including all passwords etc required. Please assist as when my old iMac died I find I could not get my CS2 to work.  Very frustrating for some one my age who cannot afford a new InDesign.  Thomas Bain

    CS2 was created for the Power PC processor which your old iMac obviously was.
    Your new Mac with OSX 10.9.5 is an Intel Mac and no longer runs Power PC applications.
    For several years after the transition from Power PC to Intel Apple had provided an emulator called Rosetta that allowed Intel Macs to run Power PC applications.
    However, the last version of the Mac OS that had Rosetta was OSX 10.6.8 Snow Leopard.
    Even if you could find a copy of OSX 10.6.8 it would be highly unlikely that it would ever install on a newer Mac due to different firmware versions.
    Your only hope is to buy an older used Mac that can run OS 10.6.8 Snow Leopard or earlier.
    Sorry, but that ship has sailed.

  • My mac seems to have a virus thats connected with a few apps i use and i can't use them without my computer glitching out even though i've reinstalled the apps a few times.

    My mac seems to have a virus thats connected with a few apps i use and i can't use them without my computer glitching out even though i've reinstalled the apps a few times.  It's very frusterating especially when i'm doing someting when my  computer randomly freezes or justs logs out for no reason when i'm using the apps.

    Matthew,
    if you boot your MacBook Pro in Safe mode, do those apps still behave in the same way?

Maybe you are looking for