Connecting to an internal HD

I am going to replace my internal HD with a 120 GB HD. After I install it I want to transfer stuff from the old HD to the new HD. Is there any cable that will connect the old HD, (now outside the computer) to a USB or Firewire port?
Mark

You will need an enclosure for that, but be sure to get one that has a SATA connection internally as well as the Oxford chipset.
I like the drives from OWC, and they do ship inernationally, but you may be able to find something local as well.
I suggest that you use SuperDuper to clone the hard drive. You can take the internal drive and put it in your enclosure, then boot off it in in that enclosure and copy every last bit and byte to the new internal drive.
Your Mac will be exactly as it was before with the bonus of some more free space.

Similar Messages

  • Can't connect to server internally when external internet goes out

    Whenever our internet service goes down, we can't even connect to our internal server through our own internal network. As soon as our external internet service comes back up, we can connect just fine. I can't figure out why the two would be related - here's the setup we have:
    Internet
    +
    Modem (bridge mode, passes internet signal straight through)
    +
    Airport Extreme (acting as DHCP Server)
    +
    Gigabit Switch (feeds ethernet drops to all offices)
    +
    OS X Server (acting DNS Server, with only itself identified as primary zone and verified)
    All client machines are set to use OS X Server as the DNS server using it's direct IP address. The OS X Server machine is set to use the Airport Extreme as DNS Server, Airport extreme has Open DNS set for DNS servers.
    So what about this setup causes our client machines to NOT find the server through our local network when we lose internet connection?
    Thanks for any help!

    What happens when you click this link, same thing? :
    https://www.google.com

  • Remote desktop connection. An internal error has occurred.

    Hello,
    The error occurs from a Windows 7 Home computer to a Windows 7 Professional computer.
    I connect successfully through a Sonic Wall VPN client.
    I can ping the IP address of the remote computer.
    I run remote desktop (using IP address of the remote computer) and get error:
    "Remote desktop connection.  An internal error has occurred."
    It used to work flawlessly and all of a sudden quit working.
    Please advise.

    It was a VPN configuration issue on the Sonic Wall.
    What was the VPN configuration issue on the Sonicwall? 

  • When connecting to an internal website, I'm getting an error: "Certificate contain unknown critical extension." What does this mean?

    I am getting a connection failure when trying to connect to an internal web site:
    Secure Connection Failed
    An error occurred during a connection to <sitename>.
    Certificate contains unknown critical extension.
    (Error code: sec_error_unknown_critical_extension)
    Can you give me a general idea what the error is and why I would be getting this error?
    Thanks in advance...

    The instructions here might help
    http://support.apple.com/kb/TS3297

  • Ssl_error_internal_error_alert error in firefox when connecting to an internal website with self signed certificate.

    Firefox 26.0 . The website is running on tomcat 7 server . Using java key store .java version "1.6.0_29"
    Can test the site with openssl s_client and response seem ok.
    SSL handshake has read 2335 bytes and written 303 bytes
    New, TLSv1/SSLv3, Cipher is EDH-RSA-DES-CBC3-SHA
    Server public key is 4096 bit
    Secure Renegotiation IS supported
    SSL-Session:
    Protocol : TLSv1
    Cipher : EDH-RSA-DES-CBC3-SHA
    Session-ID: 52B896D8E3B7D0B1A03C5D2E5FF8B594D6AA74E94CB193E24685A041C5BEBF3A
    Session-ID-ctx:
    Master-Key: 1063AB71B3389D139FD7DD490FE3DF2188FA24B5E090390D2A899B32E2895B1D7A093590BE8D6FCDEFD22ACF10D94544
    Key-Arg : None
    Start Time: 1387828953
    Timeout : 300 (sec)
    Verify return code: 18 (self signed certificate)
    closed

    Hello,
    Can you please confirm what the issue is? Are you not able to setup a SSL connection to the internal website running on Tomcat. If so, have you tried installing the root CA certificate into Firefox? You can do that by going to Firefox -> Preferences -> Advanced -> View Certificates -> Certificate Authorities and then importing the root CA certificate.
    Please check this and let us know if this helps in resolving the connectivity issue. Though, I am a bit surprised that the connection is not getting established. Typically, Firefox would warn you if you would like to continue with the connection. Are you not seeing this warning?
    Thank you

  • I have a WiFi connection from an international hotel, but cannot get on line even though my laptop wireless is working fine.  I have the Cell off.  Also tried Airplane Mode ON and WiFi On.  Any suggestions?

    I am using WiFi for my laptop from the hotel room in an international location.
    I have tried everything but cannot get my iPhone5 to connect to the internet from the room (where room # and name need to be entered first) OR the lobby (open WiFi).
    Cell is off, Roaming is off.
    I tried turning phone off, turning on with Home button pressed to reset, Forget Network and re-connect. No luck.
    A friend has an iPhone 5 and it works just fine. 
    Any suggestions?

    Catch 22
    I need Safari to get to that first page so I can do that!
    I am already logged on via the laptop, and can add the iPhone if Safari could only get to the first page!!
    The lobby wifi is open, and doesn't need the sign in page, but I can't get to the Internet even though it seems to have connected to the hotel's wifi.

  • Connect external audio + internal audio in the same time

    Hello,
    how I can connect my bose companion 2 and permit to operate at the same time the integrated speaker and the external audio speaker? I can with usb-rca cable. where I should bay?

    Welcome to the Apple Discussions!
    I do not know anyone who has figured out how to do that! You can either use the external speakers or the internal speakers, but not both at the same time.
    Dah•veed

  • Jdbc thin driver to connect oracle as internal

    I need to connect to Oracle as Internal using jdbc driver, is there a way we can do this using jdbc thin driver. Actually I don't want to pass username and password as it will be harcoded in a properties file.
    Please let me know.

    Hi Minol,
    Have a look at this code example that shows how to Connect to Database as internal ( as sysdba ). In this code sample the properties are hard-coded, you can supply these Properties by loading them from a properties file.
    Connecting to Oracle Database with DBA privileges
    http://myjdbc.tripod.com/basic/codeindex.html
    The code snippet to load properties from a properties file
    //Import IO related classes
    import java.io.IOException;
    // Necessary support classes
    import java.util.Properties;
    import java.util.Enumeration;
    import java.util.ResourceBundle;
       * This method reads a properties file which is passed as
       * the parameter to it and load it into a java Properties
       * object and returns it.
       * @param file File path
       * @return Properties The properties object
       * @exception IOException if loading properties file fails
       * @since 1.0
      public static Properties loadParams(String file)
          throws IOException {
        // Loads a ResourceBundle and creates Properties from it
        Properties     prop   = new Properties();
        ResourceBundle bundle = ResourceBundle.getBundle(file);
        // Retrieve the keys and populate the properties object
        Enumeration enum = bundle.getKeys();
        String      key  = null;
        while (enum.hasMoreElements()) {
          key = (String) enum.nextElement();
          prop.put(key, bundle.getObject(key));
        return prop;
      }Regards
    Elango.

  • Jdbc thin driver connect oracle as internal

    I need to connect to Oracle as Internal using jdbc driver, is there a way we can do this using jdbc thin driver. Actually I don't want to pass username and password as it will be harcoded in a properties file.
    Please let me know.

    Hi Minol,
    Have a look at this code example that shows how to Connect to Database as internal ( as sysdba ). In this code sample the properties are hard-coded, you can supply these Properties by loading them from a properties file.
    Connecting to Oracle Database with DBA privileges
    http://myjdbc.tripod.com/basic/codeindex.html
    The code snippet to load properties from a properties file
    //Import IO related classes
    import java.io.IOException;
    // Necessary support classes
    import java.util.Properties;
    import java.util.Enumeration;
    import java.util.ResourceBundle;
       * This method reads a properties file which is passed as
       * the parameter to it and load it into a java Properties
       * object and returns it.
       * @param file File path
       * @return Properties The properties object
       * @exception IOException if loading properties file fails
       * @since 1.0
      public static Properties loadParams(String file)
          throws IOException {
        // Loads a ResourceBundle and creates Properties from it
        Properties     prop   = new Properties();
        ResourceBundle bundle = ResourceBundle.getBundle(file);
        // Retrieve the keys and populate the properties object
        Enumeration enum = bundle.getKeys();
        String      key  = null;
        while (enum.hasMoreElements()) {
          key = (String) enum.nextElement();
          prop.put(key, bundle.getObject(key));
        return prop;
      }Regards
    Elango.

  • Remote connect to Windows Internal Database from another server

    Hello,
    I have a WSUS server which has Windows Internal Database installed. Now If I have to manage the database using SQL Server management studio, then I need to connect using the Server Name as \\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query
    Now, if I want to connect to the server that has Windows Internal Database installed, but does not have SQL Server Management Studio installed, then how to connect?
    Please advice. Thanks in advance.
    Rajiv

    You can either install SQL Server management Studio or SQLCMD and then work with Windows Internal Database
    Both of these are freely downloadable from microsoft website.
    Please find the links for SQL 2014
    Management Studio
    http://www.microsoft.com/en-gb/download/details.aspx?id=42299
    You can download one of these based on 32/64bit
    MgmtStudio 32BIT\SQLManagementStudio_x86_ENU.exe
    MgmtStudio 64BIT\SQLManagementStudio_x64_ENU.exe
    SQLCMD
    http://www.microsoft.com/en-gb/download/details.aspx?id=29065
    Check the section  Microsoft® SQL Server® 2012 Command Line Utilities
    HTH
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Which HDD connection is faster -- Internal ATA or External Firewire?

    I want to set up a HDD as a scratch drive for Photoshop. Which connection would be faster -- hooking it up to my internal ATA 100 cable or an external firewire enclosure? I do not have a drive presently hooked up to my ATA 100 cable since I'm running my boot drive off a SATA controller card, so there would NOT be two drives on the ATA 100, just the scratch drive. Thanks.

    The speed ratings of drives above ATA-66 is mostly specsmanship.
    A 10,000 RPM drive can only source data off the platters at about 50 MBytes/sec. So an ATA-133 drive has a tremendous pipe, but very seldom can fill that pipe with continuous data. The processor can write to the drive cache that fast, but at some point the cache will fill up and you will still have to wait for the discs to spin around so that the data can be written into the right block.
    The data density per square inch on a 7200 RPM drive is about the same as the 10,000 RPM drives, but you have to wait for it to move under the read/write head, and the platters are spinning slower, so the transfer rates are lower.
    If transfer rates were the most important factor, we would all be using Fiber Channel SCSI drives with transfer rates in the GigaBytes/second. Oh, and one meter cables cost over US$30 EACH.

  • Sql Server 2012 Encrypted Connection Accept only Internal IP

    Hi Friends,
    As we are using sqlserver 2012 is it possible we can configure  Sql Server to Accept  connection only internal ip (local) network as wel encrypted connections only , if possible please let me know how we can A chive this .
    thank you.
    Regards,
    asad

    Hello,
    SQL Server TCP/IP protocol is a common protocol widely used over the Internet. It communicates across interconnected networks of computers that have diverse hardware architectures and various operating systems. Named Pipes is a protocol developed for
    local area networks. In this case, you can configure SQL Server only use Named Pipes protocol via SQL Server Configuration Manager.
    Choosing a Network Protocol:
    http://technet.microsoft.com/en-us/library/ms187892(v=sql.105).aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • WiFi connectivity in Miami International Airport

    I have recently experienced a strange WiFi problem while traveling to the US. While waiting for my flight in the Miami International Airport (MIA) i was unable to connect my PlayBook to the free WiFi network. After realizing that many travelers around me were not experiencing similar technical difficulties, I tried connecting from my TouchSmart PC tablet... again, without success. After some experimentation it found out that I needed to set the parameter "Region and language | Language for non-unicode programs" to "English (United States)" rather than to "English (Canada)". This fixed the problem on my PC. However, I have been unable to find a similar setting for my PlayBook. I had this WiFi problem in Miami International Airport but not in the Miami hotel where I stayed. I was able to access the free WiFi network in Philadelphia International Airport (PHL) and Tampa International Airport (TPA).
    Any suggestions? Tx.

    There are no Apple Autorized resellers in Miami International Airport. You could have googled and found that out.

  • FaceTime connecting fails for international use only

    I have always been able to FaceTime locally and internationally.  Now it seems international FaceTime use, both incoming and outgoing fails.  Connection is fine on local numbers.  How can the international connection be solved?

    Hello tanyafromjohannesburg
    If you are having issues with making FaceTime calls, then check out the article below. You will also want to send this to the person that you are trying to FaceTime because the issue could be on their device.
    iOS: Troubleshooting FaceTime
    http://support.apple.com/kb/ts3367
    Regards,
    -Norm G.

  • Cisco ASR - How to connect an OTV internal interface to a FabricPath domain

    Scenario - migrate servers while maintaining their existing IP address from data centre 1 to data centre 2 with minimal downtime. Diagram attached.
    I'm planning on using a Cisco ASR1001-X with AES license at DC1 and DC2 and configuring the routers with OTV to extend 10 x VLANs between the data centres. The join interface would connect directly to the WAN circuit NTU and the Internal Interface would connect to the switch and be configured as a service instance with 10 VLANs tagged using dot1q. The problem is that DC1 switch infrastructure is using Cisco Nexus 56xx configured with FabricPath. I can't find any information that suggests that i can patch the Cisco ASR router's internal interface directly into a FabricPath switchport or what the configuration would be.
    Older OTV documentation refers to Nexus 7000 and OTV stating the following: "Because OTV encapsulation is done on M-series modules, OTV cannot read FabricPath packets. Because of this restriction, terminating FabricPath and reverting to Classical Ethernet where the OTV VDC resides is necessary."
    Is this true for the Cisco ASR also? The only workaround i can think of is to install a cheap catalyst switch connected to the FabricPath domain and re-introduce spanning-tree at the edge but this seems backwards to me. Any help or suggestions appreciated? Thanks

    Thanks Minh,
    So it is possible to have switchports configured as routed, fabricpath and trunk/access in a fabricpath configuration? Do i need to add any spanning-tree pseudo or priority configuration?
    Sample configs:
    #ASR
    interface GigabitEthernet0/0/1
     no ip address
     service instance 1 ethernet
      encapsulation dot1q 1
      bridge-domain 1
     service instance 2 ethernet
      encapsulation dot1q 2
      bridge-domain 2
     service instance 3 ethernet
      encapsulation dot1q 3
      bridge-domain 3
    #Nexus 56xx
    interface e1/5
      switchport mode trunk
      switchport trunk allow vlan 1,2,3

Maybe you are looking for