To activate my second HD

I have a POwer MAc G5 2.7 and I want to activate my second hard drive. I tried to use it but it appears lock. I am new in Macs computers. What can I do...?

If you haven't already done so, you gotta use Disk Utility to format the drive.

Similar Messages

  • Trying to activate a second iphone and itunes doesnt recognize

    I am trying to activate a second iphone, and itunes doesnt recognize that it is plugged in.  This is also the case with my other iphone and my itouch.  Tried restarting everything and also tried uninstalling itunes and reinstalling it, nothing has worked.  Is there a way to fix this or another way to activate the phone?

    Try activating it on a different computer, and using a different dock connector to USB cable if possible.
    If that doesn't work, it may be a hardware problem. Take it to your Apple Store for testing.

  • I can't activate my second version of photoshop CC on my second computer

    Hi,
    I can't activate my second version of photoshop CC on my second computer. My first version is at work and works fine, but when I try to install the second license on a second computer, the creative cloud doesn't reconize that I purchase Photoshop. It only gives me trial. Now the trial is over and it asks me to enter a serial. I follow up the instructions here Creative Cloud applications ask for serial number but it did nothing.
    What can I do ?

    Hey,
    Sorry for the missing infos.
    At work, I am currently using PS CC 2014 on windows 7 with the lastest updates and everything is working fine. At home, I logged-in on the Creative Cloud with the same login I use at work, on my computer also running with Windows 7 full updated. But the creative Cloud seems to not reconize me as it only proposes me the trial of Photoshop CC 2014. I used all the 30 days trial and now asks me to enter a serial number. I read on the forum that missing infos in my profile could make creative cloud to not reconize my license (here : I can't activate my second version of photoshop CC on my second computer). I tried all the steps described on the link but nothing new.
    What can I do to use my second copy of photoshop CC 2014 on my computer ?

  • HT201441 need to activate a second hand purchase of i pad. previous owner not availble at all. ipad on IOS 7. any help ??

    need to activate a second hand purchase of i pad. previous owner not availble at all. ipad on IOS 7. any help ??

    There's no way around activation lock.  If you can't find the previous owner you won't be able to use it.

  • Hot to activate a second window

    I want to programm a game. when you lunch the game, a window where you enter your name, color etc will open. by clicking on the 'start game' button, the window becomes invisible and a new window opens with the game. first window is a JFrame, second is Canvas.
    my problem: in the second window i have no mouse and i can´t close the window by clicking on the red cross.

    i made a new project and i hope this is sth like a SSCCE, but this code doesn´t exactly do the same thing than my projekt, because it doesn´t work(mouse gets not shown but don´t know why)
    i don´t know if i made the second window the smartest way but it worked. now there is the strange thing that closing the second window works as long as there is nowthing drawn on the canvas.
    first window:
    package mygame;
    import java.awt.event.ActionEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class FirstWindow extends JFrame{
        public static void main(String[] args) {
            new FirstWindow();
        JButton button = new JButton();
        public FirstWindow(){
            setDefaultCloseOperation(3);
            button.setText("start game");
            button.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    new SecondWindow();
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(button)
            layout.setVerticalGroup(
                    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(button)
            pack();
            setVisible(true);
    }second window:
    package mygame;
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.GraphicsConfiguration;
    import java.awt.GraphicsEnvironment;
    import java.awt.Image;
    import java.awt.Point;
    import java.awt.Transparency;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.image.BufferStrategy;
    import java.awt.image.BufferedImage;
    import java.net.URL;
    import java.util.HashMap;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class SecondWindow extends Canvas{
        private class MousePos implements MouseMotionListener{
            private Point mousePos = new Point();
            public MousePos (){
            public void mouseDragged(MouseEvent e) {
                mouseMoved(e);
            public void mouseMoved(MouseEvent e) {
                mousePos = e.getPoint();
            private Point getMousePos() {
                return mousePos;
        private class Mouse{
            private Sprite sprite;
            public Mouse(String ref) {
                sprite = SpriteStore.get().getSprite(ref);
            public void draw(Graphics g, Point p){
                sprite.draw(g, (int) p.getX(), (int) p.getY());
        private static class Sprite{
            private Image image;
            public Sprite(Image image) {
                this.image = image;
            public int getWidth(){
                return image.getWidth(null);
            public int getHeigth(){
                return image.getHeight(null);
            public void draw(Graphics g, int x, int y){
                g.drawImage(image,x,y,null);
            public Image getImage(){
                return image;
        private static class SpriteStore{
            private static SpriteStore single = new SpriteStore();
            private HashMap sprites = new HashMap();
            public SpriteStore(){
            public static SpriteStore get() {
                return single;
            public Sprite getSprite(String ref){
                if (sprites.get(ref) != null) {
                    return (Sprite) sprites.get(ref);
                BufferedImage sourceImage = null;
                try{
                    URL url = this.getClass().getClassLoader().getResource(ref);
                    sourceImage = ImageIO.read(url);
                } catch (Exception e){
                GraphicsConfiguration gc = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration();
                Image image = gc.createCompatibleImage(sourceImage.getWidth(),sourceImage.getHeight(),Transparency.BITMASK);
                image.getGraphics().drawImage(sourceImage,0,0,null);
                Sprite sprite = new Sprite(image);
                sprites.put(ref,sprite);
                return sprite;
        private Mouse mouse;
        private MousePos mousePos = new MousePos();
        private int height = 700;
        private int width = 1000;
        private BufferStrategy strategy;
        public SecondWindow(){
            JFrame container = new JFrame("game");
            JPanel panel = (JPanel) container.getContentPane();
            container.setDefaultCloseOperation(3);
            container.setResizable(false);
         panel.setPreferredSize(new Dimension(width, height));
         panel.setLayout(null);
            setBounds(3,23,width,height);
         panel.add(this);
            setIgnoreRepaint(true);
            container.pack();
            container.setResizable(false);
            container.setVisible(true);
            createBufferStrategy(2);
            strategy = getBufferStrategy();
            mouse = new Mouse("sprites/mouse.jpg");
            addMouseMotionListener(mousePos);
            setCursor(java.awt.Toolkit.getDefaultToolkit().createCustomCursor(java.awt.Toolkit.getDefaultToolkit().getImage(""), new Point(), "Cursor"));
            setVisible(true);
        public void gameLoop() {
            while (true) {
                Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
                g.setColor(Color.DARK_GRAY);
                g.fillRect(0,0,width,height);
                g.setColor(Color.WHITE);
                g.drawString("my game",(800-g.getFontMetrics().stringWidth("my game"))/2,50);
                mouse.draw(g, mousePos.getMousePos());
                g.dispose();
                strategy.show();
                try { Thread.sleep(5); } catch (Exception e) {}
    }

  • Activate A Second Worksheet In Excel 2013 VBA

    I have an Excel 2013 workbook with 2 worksheets:
    1) Summary   MNA.Sheets("Summary")
    2) Agreement 1  MNA.Sheets("Agreement 1")
    I've tried all sorts of code to get from 1 to 2 in VBA, but keep getting an error.
    What is the proper code?
    Thanks.
    A. Wolf

    Have you tried
    Worksheets("Agreement 1").Select
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Any program in finder blinks off every 5 seconds I have to hit the program to activate

    Ihave an issue in finder any program I have open wil blink off every 5 seconds I will have to hit the openprogam to activate 5 seconds later it blinks off anyone have this issue? using OS9.2 Mavericks. Thanks Harold

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents—again, the text, not a screenshot. I know the report is long. Please post all of it anyway.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • How do I activate Photoshop CC on a second computer?

    I just downloaded and purchased Photoshop CC on my desktop.
    I understand that it can be run on two computers.
    I just downloaded it on my laptop, however it is showing only as a trial version, even though I am signed in using my exact same Adobe ID.
    How do I activate this second installation? 

    True, Adobe has made it practically impossible from their website but you can still download the CS6 trials.
    Go to http://prodesigntools.com/adobe-cs6-direct-download-links.html
    Follow the Very Important Instructions on that page before you click the download links.
    Launch the trial then enter your serial number to license it.

  • Can't activate second iPhone- HELP!

    Bought 2 new iPhone on Saturday, one for me, one for my wife. Sunday night, I activated my phone first (porting over from Sprint/Nextel) in 15 minutes. Tried to activate the second phone and received the message "Your activation requires additional time to complete." Okay.... figured it might take awhile from everything I've read on forum discussions about porting.
    Connected the second phone on Monday morning and got the same message. Tried a few time, same message. Called AT & T. Basically told that there was "some delay in porting" from someone in the "porting department." Was told to try later that night because she said that my wife's phone number (for the second phone) was appearing on the account.
    Okay. Tried later that night and got the same message- "Your activation requires additional time to complete."
    This morning, after connecting the phone to iTunes and getting the same message, I got on the phone to AT&T and, after working my way through two reps who really couldn't tell me anything further, I was connected to a rep who really sounded like she knew what she was talking about.
    After explaining the entire situation to me, she said that it sounded like "the sim card in my wife's brand new iPhone was burnt." That was her word- "burnt." So, I asked her how could that be since the only thing I had done since I brought the phone home two days ago was to connect it to my computer and connect to iTunes. She didn't have an answer, but said that at this point, the phone should be activating and, since it's not, they would give me a new sim card, no charge, to install in the phone. First, she asked if I wanted to go out to an AT&T store and when I told her I really didn't have the time, she said that someone from AT&T would call me tomorrow about mailing a card out to me. I asked her if I was the first lucky one to have this problem and she laughed and said, "No," actually we've had several of these problems."
    Here's my question... or, should I say questions????
    First... since the phone has never been activated since I bought it in person at an Apple store, should I just take it back to that store and tell them what happened? Is it possible that the phone just came with a bad sim card (I didn't think to ask the AT&T rep that question, I was so tired.)
    Would they just take the phone back and give me another one?
    Also... has anyone else had this specific problem while trying to immediately activate a second phone?
    Would appreciate any help anyone can offer... thanks.

    "First... since the phone has never been activated since I bought it in person at an Apple store, should I just take it back to that store and tell them what happened? Is it possible that the phone just came with a bad sim card (I didn't think to ask the AT&T rep that question, I was so tired.)"
    Yes,I'd return to the Apple Store to have a Genius take a look at it.
    "Would they just take the phone back and give me another one?"
    Quite possibly.

  • Activate second copy of Windows license on Mac?

    I bought Adobe Design Premiere CS5 with the Windows package to run on my Windows 7 desktop. I know the license allows you to activate this on two computers I own. Can I use the same serial number to activate my second copy on my MacBookPro in OSX? I presume I can download the trial Mac version and install that on the MBP, will the serial number work?
    Thanks for any clarification!
    Michael

    Wow, that's tragic! Thanks for the info Jeffrey. I just reread the EULA and I don't see anywhere in the agreement where you are restricted to installing a Windows license only on another Windows system:
    "2.2 General Use. You may install and use one copy of the Software only on the Permitted Number of your
    compatible Computers into which you enter a valid serial number."
    "2.5 Portable or Home Computer Use. Subject to the important restrictions set forth in Section 2.6, the
    primary user of the Computer on which the Software is installed under Section 2.2 (“Primary User”) may
    install a second copy of the Software for his or her exclusive use on either a portable Computer or a
    Computer located at his or her home, provided that the Software on the portable or home Computer is not
    used at the same time as the Software on the primary Computer."
    So now I have to find a way to get the second copy I'm entitled to installed on my Mac portable Computer !
    Any suggestions?

  • How activate second logic-installation on  my Macbook?

    How do I activate my second installation on my Macbook? For the moment I can´t open recorded documents in open-previous-mode on my Macbook-installed Logic?
    Greatful for help...

    Hi,
    can you open any projects at all or are you able to create projects? Did you install the Update for Logic 8.02 onto the Macbook?
    Fox

  • Applet won't proceed past "activate" command

    I am unable to work around this any longer.
    I have a script saved as an application bundle:
    (*BEGIN SCRIPT FOR APPLET 1*)
    set BA_ to ((path to me as Unicode text) & "Contents:Resources:BeepApplet.app")
    beep 3
    display dialog "Okay, this dialog shows.  But will the one AFTER the activate command show?"
    tell application BA_ to activate --should cause another 5 beeps, and probably will
    --But will the following dialog show?
    display dialog "Foiled Again?"
    --THE ANSWER IS NO!
    (*END SCRIPT FOR APPLET 1*)
    As you can see, the applet contains a second applet (in the bundle, but it could be anywhere if its path is properly specified).
    When the second applet is called (tell application BA_ to activate), the second applet does its thing properly (provides another 5 beeps), but for me the first applet won't proceed past the "activate" command.
    I've tried calling application BA_ in a variety of ways, but always seem to get the same result.  Is this normal behavior?  Is there a way around it?
    (Here's the very simple underlying script for application BA_:
    beep 5)

    Please see my response to red_menace.  I've indicated that both your and his response were "helpful"
    It appears that my response to red_menace has disappeared.  Basically, it provided a version of the applet script that seems to work;
    (*BEGIN REVISED SCRIPT FOR APPLET 1*)
    set BA_ to ((path to me as Unicode text) & "Contents:Resources:BeepApplet.app")
    beep 3
    display dialog "Okay, this dialog shows.  But will the one AFTER the launch-run command show?"
    tell application BA_ to launch
    tell application BA_ to run
    --But will the following dialog show?
    display dialog "Foiled Again?"
    --THE ANSWER IS (it seems to)!
    (*END REVISED SCRIPT FOR APPLET 1*)
    I also experimented with the load script/run script approach; while promising, it wasn't suited to my purposes.

  • How to set a plugin to "Never activate" without disabling it

    Hello,
    Here in Brazil almost every bank use this "Internet Banking Helper" plugin from a third-part local security company in their internet banking services.
    I want to enable this plugin only for two domain names from my bank website and get rid of the "Allow domain.name to run 'Internet Banking Helper'?" notification for all other websites.
    Basically, the activation rules would be:
    - my.first.allowed.bank.com = Always activate
    - my.second.allowed.bank.com = Always activate
    - * (default) = Never activate
    With Firefox 26 I can set to "Always activate" for the allowed domains in site preferences but there's no way to set the default behavior to "Never activate" without disabling the plugin itself and if I do that the plugin will stop working even for the sites were the preferences says to "Always activate" (of course, the plugin is disabled).
    I do believe that someone are making a little confusion about these options. You replaced the disable/enable button with activation options in the Addons/Plugin page but these are two completely different things.
    Would be perfect if you offer these activation options: [Ask, Always, Never, Disable Plugin].
    So, there's a solution for this situation?
    Thank you.

    I'm using Firefox 26, in this version it's enabled by default and I checked about:config and it's set to true.
    The problem is that if I set to "Ask to activate" I'll be asked on every website I visit and it's really annoying! Also, I don't want to manually block it for every website I visit.
    If I set to "Always activate" this plugin causes some strange and unexpected behavior on normal websites.
    And again, if I set to "Never activate" this plugin will be completely disabled and if I access my Internet Banking the click to play feature will ask to activate only plugins in "Ask to activate" state.

  • How to activate my Include file

    Hi,
    I have an main file whish has a variable declared, we are using that variable in another include file, when i use that variablein the second include file and tried activate the second include file. It comes out with an error saying that 'variable not found'.
    How can i activate my include file with the variable declared?,
    Appreciate your help.
    Thanks

    Hi
    Your include program must be an include of a main program and the data declaration should have been done before the include statement.
    e.g.
    DATA: gv_var TYPE i .
    INCLUDE <my_include> .
    That way, when you want to activate your include it asks the main program to be considered as Nablan mentioned.
    *--Serdar

  • Advice Needed: Activating Second iPhone

    I'm about to activate a second iPhone on a new FamilyTalk account. The second iPhone will be used with a different computer/iTunes-username than mine, which the first iPhone was activated with.
    If I activate the second iPhone using my computer, and my iTunes username, does that mean it will only be able to sync with my computer/user? Or is syncing separate from activation?
    Or put another way:
    Which computer and/or iTunes-username should a second iPhone be activated with assuming it needs to be added to a FamilyTalk plan?
    Thanks,
    Chris.

    Yes, AT&T cares about the phone numbers. Mine was an existing Family Talk account, and I just had to convert one of the lines to an iPhone. ITunes did this just fine. If the second line already exists, and is on the family talk now, it will work from iTunes.
    If you are setting up a brand new FamilyTalk account, I am not sure that iTunes is that sophisticated, hence the possible need to call AT&T, but you will find them very helpful on this. After all, they are getting a new customer.

Maybe you are looking for

  • Creating an instance of a class at runtime?

    Does anyone know how to create an instance of a class at RunTime? For example, I want to load classes from a JAR file at RunTime, and then create instances of certain classes of each JAR. I ask this because I do not see how to create an instance of o

  • Can anyone from the flex community answer this question?

    Hello, Does anyone know if its possible to load a AS2 swf into a AS3 swf, and then have that AS2 swf load other AS2 swfs onto different levels (e.g. _level1, _level2, ect...). I'm trying to include a preexisting AS2 swf that manages the loading of se

  • Disk Utility crashing...

    PB17" 1.0GHz 60GB HDD Running a rather routine "Before Software Updates" perms repair - just a habbit I have adopted. it crashes.... indicating the following: "Disk Utility internal error: Disk Utility has lost it's connection with the Disk Managemen

  • Query formulation help

    hi guys, basically I need to formulate a query which will give me the records in which the primary key appears the most on the table. IE AOI EID CID PRICES DATES o10 e02 c11 330000 15-JUN-08 o17 e03 c13 500000 21-JUL-08 o18 e06 c16 515000 13-AUG-08 o

  • HT1386 why did I lose all my contacts when I installed new 5.1 version???

    Why did I lose all of my contacts when I installed 5.1.1 version on my iphone 4? I did back-up and got everything else back except the contacts???