Changing Drives

A while back I had a larger second drive installed as I was reaching the peak of the original drive. I recently tried to install an application on the original drive, but don't have enough memory. The second drive has been used as my Time Machine backup, but it still has quite a bit of memory left. When I attempted to make the second drive the start-up disk to install the application, I got nowhere and had to reboot from the installation disk to set the startup disk back to the older drive. I'm thinking I could partition the larger drive just a little freaked at any consequences. Can I partition the larger drive and leave the backup, or should I just not freak, partition and do a backup on one of the partitions. Have never partitioned before am a bit wary.

It's a very bad idea to put active things (apps, data, etc.) on your Time Machine drive.
If they're in the same partition, Time Machine can't back them up, and they'll be competing for the same space. See #3 in [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of this forum).
If they're in a different partition, Time Machine can back them up, but that's not much better -- when that drive fails (and they all do, sooner or later), you risk losing both the original and the backup.
One option is to archive some old stuff off the main drive, to make room (your OSX drive should have 15% or more free).
Or, since you have a desktop Mac, get a large external HD, at least 2-3 times the size of all your data, and use it for your backups. Then you can erase the second internal drive and use it for the stuff that won't fit on the first one, and use Time Machine to back up both internals.

Similar Messages

  • TS3694 My Ipod is not recognized by Itunes with my Windows 8 PC. Works fine with Windows 7 PC. Device sync test says "No device found". Already performed all of the Ipod device troubleshooting including reload Itunes, stop start Ipod device, changed drive

    Need help? Some of my Ipods are not recognized by Itunes with my Windows 8 PC. (Ipod Nano 4th gen  and Ipod Nano 6th gen), but on my Windows 7 PC, they work fine.  My Ipod 3rd gen and Ipod shuffle work both on Windows 8 and 7 PC's.  On the non-working Ipods, the  Device sync test says "No device found". Already performed all of the Ipod device troubleshooting including reload Itunes, stop start Ipod device, changed drive letter...
    any help is appreciated. Chris4sail

    Hello there, chris4sail.
    The following Knowledge Base article offers up some great step-by-step instructions on troubleshooting your iPod not being recognized in iTunes:
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Edit code for change drive letters in paths for links, to also work with Fonts that have been moved.

    I have the following code that looks through my links and changes all of the drive letters to the new locations where they exist.  So if something stays in the same folder structure, but moves to a new drive E: and InDesign can not longer find it, you can run the code and have it fix them all.
    Well I want to do the same but for fonts that have also moved.
    Thank you in advance for any and all help!
    if (app.documents.length == 0) {
        err("No open document. Please open a document and try again.", true);
    if (File.fs != "Windows") {
        err("This script is for Windows only.");
    var myDoc = app.activeDocument;
    var myLinks = myDoc.links;
    var myCounter = 0;
    if (myLinks.length == 0) {
        err("This document doesn't contain any links.", true);
    var mySettings = CreateDialog();
    for (i = myLinks.length-1; i >= 0 ; i--) {
        var myLink = myLinks[i];
        if ( myLink.status == LinkStatus.LINK_MISSING || (myLink.status != LinkStatus.LINK_MISSING && mySettings[2] == false) ) {
            var myOldPath = myLink.filePath;
            var myNewPath = myOldPath.replace(mySettings[0] + ":\\", mySettings[1] + ":\\");
            var myNewFile = new File(myNewPath);
            if (myNewFile.exists) {
                myLink.relink(myNewFile);
                try {
                    myLink.update();
                catch(e) {}
                myCounter++;
    if (myCounter == 1) {
        alert("One file has been relinked.", "Finished");
    else if  (myCounter > 1) {
        alert(myCounter + " files have been relinked.", "Finished");
    else {
        alert("Nothing has been relinked.", "Finished");
    function err(e, icon){
        alert(e, "Change drive letter in path", icon);
        exit();
    function CreateDialog() {
        var myDrives = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "y", "Z"];
        var myDialog = new Window("dialog", "Change drive letter in path");
        var myPanel = myDialog.add("panel", undefined, "");
        myPanel.orientation = "column";
        myPanel.alignChildren = "left";
        var myGroup = myPanel.add("group");
        myGroup.orientation = "row";
        var myStText1 = myGroup.add("statictext", undefined, "Change ");
        var myDropDownList1 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1") != "") {
            myDropDownList1.selection = myDropDownList1.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1")];
        else {
            myDropDownList1.selection = myDropDownList1.items[2];
        var myStText2 = myGroup.add("statictext", undefined, " to ");
        var myDropDownList2 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2") != "") {
            myDropDownList2.selection = myDropDownList2.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2")];
        else {
            myDropDownList2.selection = myDropDownList2.items[3];
        var myCheckBox = myPanel.add("checkbox", undefined, "relink only missing links");
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox") != "") {
            myCheckBox.value = eval(app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox"));
        else {
            myCheckBox.value = true;
        var myButtonsGrp = myDialog.add("group");
        var myOkBtn = myButtonsGrp.add("button", undefined, "Ok", {name:"ok"});
        var myCancelBtn = myButtonsGrp.add("button", undefined, "Cancel", {name:"cancel"});
        myOkBtn.onClick = function() {
            if (myDropDownList1.selection.index == myDropDownList2.selection.index) {
                alert("Both drive letters should not be the same.", "Change drive letter in path");
            else {
                myDialog.close(1);
        var myDialogResult = myDialog.show();
        if (myDialogResult == 1) {
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1", myDropDownList1.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2", myDropDownList2.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox", myCheckBox.value + "");
            return [ myDropDownList1.selection.text, myDropDownList2.selection.text, myCheckBox.value ];
        else {
            exit();

    ok, so I have discovered where the issue came from...
    The code you helped me with before, were I removed all links and my link character styles that I had (found here: http://forums.adobe.com/message/5881440#5881440)
    Well it set all the items I was finding/replacing to unknown fonts that my machine doesn't have (Like Helvetic Neue Bold, instead of just Helvetica Bold, etc).
    Is there an easy way of fixing this?
    The only way I know to fix it right now is:
    Go to Package >> go to Fonts >> Select the the font that says it's missing >> Select Find First >> CLOSE ALL OF THIS, then use the eye-dropper to select the text around that font which copies the formatting and then apply it to the text who's formatting got messed up.  And then start the process all over again for the next occurence of that word whose formatting got stripped.

  • Changing Drive labels (letters)

    Hi, I partitioned the HDD on the K210 to a "C" (for Windows, programs and applications) and "D",  the next letter in the drive sequence somehow was assigned to the DVD Drive and the "E" Drive to the HDVD Drive and then the (Partitions that I created) "F", "G" and "H" Drives (where I store data files, photos,....).
    I would like to change (reassign) the "D" and "E" Drives (which are CD-DVD drives) to "outta" letters and use the "D" and "E" letters to reassign (the newly created) "G" and "H" Drives.
    Any suggestions on the best / easiest way to do this with out screwing things up even more?
    Thanks,
    Bob 
    Solved!
    Go to Solution.

    Click the start button and then run, or Win+R.
    Type "diskmgmt.msc" without the quotes and then click OK.
    Right-click on any partition or optical disk drive and click "Change Drive Letter and Paths...".
    \\ I do not respond to PM regarding individual tech support. Keep discussions in the forum for the benefit of others //

  • Change drive labels

    Hi Everyone
    I

    Start by writing a script to change the label and see how that goes.
    You cannot change the label on a CD. 
    Start these things by searching for you answer.  It will save yo much time:
    Here is a complete blog on  this:
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/03/14/change-drive-letters-and-labels-via-a-simple-powershell-command.aspx
    If you are admin on VMs and WMI is open on firewall you can easily do the blogs method.
    ¯\_(ツ)_/¯

  • ISCSI Initiator - Cannot Change Drive Letters

    Good afternoon-
    I added two iSCSI LUNs to one of my servers using the Microsoft iSCSI Initiator on a Windows Server 2008 R2 server. Everything seems to be working fine, except for the fact that the drive letters are reversed - Volume 1 is my F: drive and Volume 2 is E:.
    Because I need to use one script across multiple servers, I need to change these drive letters. When I right click them in Server Manager, the Change drive letter option is greyed out. Is there a different way to do this?
    Thank you!

    Please start by that:
    http://forums.cnet.com/7723-6142_102-139635/change-drive-letter-grayed-out-in-disk-management/
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Thanks Mr. X! I was able to fix this with DISKPART. Here are the instructions taken from your link:
    1. Open Command Prompt.
    2.Type:
    diskpart
    3.At the DISKPART prompt, type:
    list volume
    Make note of the number of the simple volume whose drive letter you want to assign, change, or remove.
    4. At the DISKPART prompt, type:
    select volume n
    Select the volume, where n is the volume's number, whose drive letter you want to assign, change, or remove.
    5.At the DISKPART prompt, type one of the following:
    assign letter=L
    Where L is the drive letter you want to assign or change.
    remove letter=L
    Where L is the drive letter you want to remove.

  • Changed Drive Letter Still In Restore Loop

    I have an iPod mini (2nd Gen) that is in the restore loop and I have changed the drive letter. I am using Windows XP. I can read and write to the iPod. I have tried it (changing drive letter and restore) on another computer and with iTunes 10 and iTunes 8. Can anyone please help?

    ok over 100 people have look at this and on one has an answer to suggest?
    Some one must know what is going on.
    Does anyone have the files that belong on the hard drive of the mini? I think that is all that is needed for iTunes to recognize the mini.

  • External HFS encrypted password change & Drive mounting in Disk Utility without password

    I have two questions:
    1. I have an external HFS encyrpted drive that was encrypted via Mavericks Disk Utility. I have the password for it in 1password but I cannot cut and paste it when it attempts to mount. It is a very long password and it would not be practical to type it manually. It seems that Apple does not permit pasting such passwords (I have also tried to copy the password to a sticky note and then into the drive mount password prompt with no results, thus it is not unique to 1Password). At any rate, to remedy this situation, I would like to change the password to something smaller and memorizable (which is very very unfortunate as I find this a gaping security issue for who, in their right mind will manualy type in a 60 character password every time?). I have not been able to locate a method to change this external drive's password. Any assistance would be greatly apprecaiated.
    2. Alarmingly, I AM able to mount the drive WITHOUT entry of the password if I do a verify disk and repair disk. This is horrifying. This means that without any password someone can mount the drive just by running these utilities.
    Thanks in advance.

    You wrote: "It's definitely formatted for windows...I have Disk Warrior, but it doesn't see my drive "DiskWarrior only works on disks in Mac OS formats, e.g. "Mac OS Extended" (aka HFS Plus or HFS+), "Mac OS Extended (Journaled)." It won't fix disks in MS-DOS/FAT32 format.
    There are PC-specific disk utilities, akin to DiskWarrior for Mac, so if you have a PC as well, a PC disk utility might help repair the directory corruption if run from a PC.
    External drives, whether they're formatted for PCs or Macs, can be subject to the same causes of directory corruption discussed in See my "Data corruption and loss: causes and avoidance" FAQ. Some of those causes have nothing to do with hardware failure and many are preventable.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • How to easily change drive location .. from O: to F: in Itunes

    I have had to move my external drive with all music to new port.  That has changed the drive letter from O to F.  O is now taken by another drive.  Is there a simple way to tell iTunes files are now on F and not O?

    mracole wrote:
    May be easier simply to get Windows to switch F and O.
    In iTunes, you can create a new library on the desired drive and restore the Song files into that library.
    But that new library has no ratings, playlists, play counts and can be seen as "new" to any devices which might then need to be unnecessarily wiped and reloaded.
    tt2

  • Problem with date fields in where clause after changing driver

    Hi,
    We have changed the oracle driver we use to version 10
    and now we have some trouble with date-fields.
    When we run this SQL query from our Java program:
    select *
    from LA_TRANS
    where LA_TRANS.FROM_DATE>='20040101' AND LA_TRANS.FROM_DATE<='20041231'
    We get this error code:
    ORA-01861: literal does not match format string
    The query worked fine whit the previous driver.
    Is there some way I can run a SQL query with date fields
    as strings in the where clause?
    Thanks!

    Keeping the argument of standard SQL or not aside, comparing DATE columns to a constant string (which looks like a date in one of the thousands of the formats available, but not in others) is NOT one of the best programming practices and leads to heartburn and runtime errors (as you have seen yourself).
    I would rather compare a DATE to a DATE.
    Also, constants like that would be another issue to fix in your code:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:6899751034602146050::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:528893984337,

  • Change drive share IP address on 160nl

    I have two routers linksys 310n and a 160nl.  The 310 is the master router on the second floor hooked to the cable modem.  The 160nl is down stairs and its the main wirless access point.  I have a 8 gig thumb drive (sandisk) in the 160nl in the USB port for drivers and other such basic files.  The problem is I want to know how to change the IP address of the drive share.  The 310 is on IP address 1.1 and the 160nl is on 1.2.  However the drive (thumb disk) will only use the ip address of 1.1 and that conficts with the 310 router and I can not get to the share.  How do I change this.  You would think it would be smart enough to know that the 160nl router is 1.2 and it would use that address.  I have removed the drive and put it back in but it always takes the IP address of 1.1.  

    The drive does not "take" any IP address. Where do you see that the drive would use 192.168.1.1? Did you try to access the drive on 192.168.1.2?

  • [SOLVED] wine. can't change drive C mapping

    hi! i use winecfg to change the mapping of the C drive, but i realized that i cant change it because, if i change it with winecfg, when i close winecfg and open it again, it revert all my mappings to the defaults:
    C -> /mnt/cdrom
    D -> /mnt/cdrom
    when i start winecfg give me some errors:
    [aleyscha@aleyscha ~]$ winecfg
    Warning: the specified Windows directory L"c:\\windows" is not accessible.
    Warning: the specified System directory L"c:\\windows\\system32" is not accessible.
    Warning: could not find DOS drive for current working directory '/home/aleyscha', starting in the Windows directory.
    ALSA lib conf.c:3949:(snd_config_expand) Unknown parameters 0
    ALSA lib control.c:909:(snd_ctl_open_noupdate) Invalid CTL default:0
    Warning: the specified Windows directory L"c:\\windows" is not accessible.
    Warning: the specified System directory L"c:\\windows\\system32" is not accessible.
    Warning: could not find DOS drive for current working directory '/', starting in the Windows directory.
    when i start a game:
    [aleyscha@aleyscha ~]$ wine "/sda1/bin/drive_c/Program Files/FlatOut2/FlatOut2.exe"
    Warning: the specified Windows directory L"c:\\windows" is not accessible.
    Warning: the specified System directory L"c:\\windows\\system32" is not accessible.
    Warning: could not find DOS drive for current working directory '/home/aleyscha', starting in the Windows directory.
    wine: cannot find '/sda1/bin/drive_c/Program Files/FlatOut2/FlatOut2.exe'
    [aleyscha@aleyscha ~]$
    so i cant change my mappings :S i try, i put a "config" file in my ~/.wine with:
    [Drive C]
    "Path" = "/sda1/bin/drive_c"
    "Type" = "hd"
    "Label" = "Drive_C"
    "Filesystem" = "win95"
    [Drive D]
    "Path" = "/mnt/cdrom"
    "Type" = "cdrom"
    "Label" = "CD-Rom"
    "Filesystem" = "win95"
    ; make sure that device is correct and has proper permissions !
    "Device" = "/dev/cdrom"
    [Drive E]
    "Path" = "/downloads/New"
    "Type" = "hd"
    "Label" = "Downloads"
    "Filesystem" = "win95"
    with no sucess... i dont know how everybody plays so easy with wine... the frustration here is killing me softly :'(
    Last edited by leo2501 (2007-10-23 11:41:20)

    a friend tells me to delete my ~/.wine dir, and NOW WORKS must be some trouble because my /home partition is from another arch installation, cause i change my computer a month ago, in the dir i map to C IS a windows structure
    im playing flatout 2 and prey perfectly... better than in windows in a window coz i like it to view other things in my desktop and with a 22" lcd there's no problem with space :D:D:D:D:D

  • HP D110 ePrinter - Changing Drive Letter for SD Card Slot

    How do I change the drive letter mapped for the SD card (z.  This is conflicting with my backup drive.

    Hi,
    I think by default the first letter for Network drive is Z then Y then X... This may help:
       http://windows.microsoft.com/en-US/windows7/Create​-a-shortcut-to-map-a-network-drive
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Change drive mapping using Powershell?

    Is there a way in Powershell to change a drive mapping from one location to another.  Example below:
    Drive M: is mapped to \\Server1\test_drive share
    That share has moved to another server with the same share name and now I want to have the following
    Drive M: now mapped to \\Server2\test_drive share
    As I will not know what drive letter each user is using mapping to what share,  I am basically trying to see if the user has a drive (any drive letter) mapped to Server1 and change that to Server2 (assuming the same share using same share name
    is on Server1 and Server2).
    I cannot wrap my head around this.
    Thanks,
    Dave
    Dave

    I found the following script however it does not seem to be working.  But, I think it will do what I am trying to do.
    $OldServer = "\\EXAMPLE-FS-001\"
     $NewServer = "\\companyname.local\shares\"
     $drives = Get-WmiObject win32_logicaldisk |
        ? {$_.ProviderName -like "$($OldServer)*" } |
                $Name = (($_.DeviceID) -replace ":", "")
                $NewRoot = (($_.ProviderName) -replace $OldServer, $NewServer)
                Get-PSDrive $Name | Remove-PSDrive -Force -whatif
                New-PSDrive $Name -PSProvider FileSystem -Root $NewRoot -WhatIf
    Dave
    Dave

  • Pasta configuration - change driver settings.

    Hello Xperts,
    I'm currently configuring printers for a R12 site and there is an issue with the alignment, after running the diagnostics I noticed that the print style is LANDSCAPE I woul like to make it LANDWIDE and test, can one please let me know how do we make this change for this particular printer.by doing this the changes made to the driver settings to alter the printing on the right hand side would take effect as per note 358879.1
    This printer type has both style and driver settings for LANDWIDE and LANDSCAPE not sure why it's picking only the LANDSCAPE.
    Thanks in advance.

    Please see these docs.
    PASTA 3.0 Release Information [ID 239196.1]
    How To Setup Custom Pasta A4 Print Styles And Drivers [ID 763274.1]
    How to Setup Pasta for PCL Based Printers [ID 365111.1]
    The Pasta Landwide Driver Truncates / Cuts Off The Right Side Of The Report [ID 358879.1]
    Thanks,
    Hussein

  • Laserjet 4200dtn after change driver Have a problem with windowsXP

    Laser jet 4200 dtn and windows server 2003
    Hi, The last week In accord with your chat support I change the driver of my Hp 4200  dtn from P6 to PS. You told me that the PS driver is better to print with .pdf files and to print  the layout like book A4/2.
    About to print everything is right but now I have a big problem:
    When I switch on my computer Windows XP server  2003 and I'm in a desktop . If I open application like firefox, iexplorer, office etc. all this application remain close.
    If I open a TASK manager Window I see all this application open but the use CPU is 0% and there's no mutter to use the program.
    When I close the process SPOOLSV.EXE immediately all the process work and I can work with all programs.
    Where is the problem? What can I do to save the situation? Thanks a lot

    Hi there,
    You seem to be trying to open a new reference to a resource that has already been reserved every time you execute the while loop.
    Error -50103 is a resource reserved error. (If you go to Help>>Explain Error and in the dialogue box input the full error, you will get an indication of the problem.)
    I would also try highlight execution.
    I would suggest that you take all of the configuration vi's outside of the while loop.  You only ever need to update the channel names and frequency once.
    See attached:
    Hope this helps
    AdamB
    Applications Engineering Team Leader | National Instruments | UK & Ireland
    Attachments:
    PWM.JPG ‏112 KB

Maybe you are looking for

  • Reset Cleared Items Options

    Dear Gurus, Please clear my doubt i am new isu environment.when i am going to reset cleared items i am confusing below options . I hve to amounts in one Doucment No.,now i want to reset only one partical payment  from same documents no. Tab: Setting

  • Loss of sound on HP Pavilion dV6000 - Vista

    I've suddenly lost sound on my dV600 laptop.  Volume control shows 100% and small green bar moves when sound should be heard.  This is affecting all sound:  internet, cd's, stored music, etc.  Sound is fine when I plug in a headphone or external spea

  • Font appearance and bullets

    When a line is formatted using a bullet, the font size appears to change when viewed in the published or compiled modes. I've checked the font and it is the same. Try it and see. Add a text caption and type something with no bullets. Add another text

  • Special coding for Internet Explorer

    We are modifying a website that was constructed in 2007 using Dreamweaver.  In a .css file containing code for external stylesheets, there are numerous instances of double-coding, based upon brower type-one set of code for IE and another for "other b

  • Clickable Button in PDF File

    Sorry for the duplicate post, but I'm not sure which forum to ask this is... I have some old PDF files that have buttons on them that, when clicked hide, and show when the mouse is released. These are for bank of questions I use for my business. I am