Partitioning External FantomDisk With Files Already On It

When I got my Mac Mini I got a 1TB external drive and configured Time Machine to work with it. I'm told that I can create a bootable clone to this drive with SuperDuper and then boot from it. SuperDuper suggests that I clone to a separate partition than the one used by Time Machine, which is what I would like to do.
The question is, can I carve out a new partition without trashing the file contents of the existing single partition? Any hints on how to proceed? I can copy the external drive contents to another system if I have to.

Depends on how large you Mini's hard drive is. Your TM backup volume should be at least twice the capacity of the Mini's hard drive. If the 1 TB drive just meets that, then you need to get another drive for the clone. Otherwise, figure out how much space you must reserve for TM, then the difference can be allocated for the clone.
You can partition on the fly using Disk Utility.
To resize the drive do the following:
1. Open Disk Utility and select the drive entry (mfgr.'s ID and size) from the left side list.
2. Click on the Partition tab in the DU main window. You should see the graphical sizing window showing the existing partitions. A portion may appear as a blue rectangle representing the used space on a partition.
3. In the lower right corner of the sizing rectangle for each partition is a resizing gadget. Select it with the mouse and move the bottom of the rectangle upwards until you have reduced the existing partition enough to create the desired new volume's size. The space below the resized partition will appear gray. Click on the Apply button and wait until the process has completed. +(Note: You can only make a partition smaller in order to create new free space.)+
4. Click on the [+] button below the sizing window to add a new partition in the gray space you freed up. Give the new volume a name, if you wish, then click on the Apply button. Wait until the process has completed.
You should now have a new volume on the drive.
OS X 10.5- About resizing disk partitions.

Similar Messages

  • Partition external drive with files already on it - ?

    I just received a 465g glyph harddrive with some video files on it from our editor that i need to convert. The idea was that I was going to use the same drive since it has 444g of free space on it, but now i realize that the entire drive is formatted to ntfs. Is there any way i can partition this without erasing/having to copy the files first?
    Thanks!

    By itself, MacOS X can read but cannot write to NTFS-format HD's. On the other hand, Windoze computers cannot read or write to Apple-format HD's. If you need to exchange files between the two using a HD, the only middle ground would be formatting in FAT32, which both can read and write. If you must keep the HD in NTFS format (company policy, etc.) you will need to install a third-party driver on MacOS X so it can write to that disk; for example, [Paragon makes a shareware option|http://www.paragon-software.com/home/ntfs-mac>.
    You can erase the volume by selecting it (not the device) on Disk Utility, clicking on the Erase tab, choosing the appropiate format and applying.
    You can repartition the drive (creating new volumes) by using a workaround because the Leopard Disk Utility has a bug when dealing with NTFS partitions. [Here's a writeup of what to do|http://discussions.apple.com/message.jspa?messageID=7783365#7783365].
    In either case, the current contents of the HD will be lost.

  • Recover external drive with file salvage

    Hi guys, By mistake I hit erase on disk utility on the wrong drive. I didnt use the drive at all after that so file salvage did recovered a lot of stuff. My problem is the media is grouped in the folders dv and quictime but Im not able to see the video, on the dv folder the quictimes have all square colors around the screen and the quictime folder is all white. and on both cases theres no audio. Im doing the process again and see if it works but does anyone has any experience recovering an external drive with it? is there another way to recover the media?
    Please let me know, im desperate to recover this drive!
    thanks a lot

    My recommendation is use one Caldigit in RAID 0 for editing (we'll call it C 1) and use the other Caldigit (C 2) as a backup.
    When you get new material, copy it to C 1, then to C 2. Take C 2 off line. You can not accidentally erase a drive if it is not connected and/or turned on.
    Edit your projects.
    At the end of the day, back up C 1 to C 2.
    As C 1 and C 2 fill, you will need to move older and/or finished material off of them. Get a MacBurly or other 2 drive enclosure with swapable drive bays. You could also just get a simple bare drive housing like the Voyager Q. Purchase a pair of bare drives (always purchase your drives in pairs). We'll call this first pair: Archive01 and Archive01.back. Backup whatever you need to remove from the Caldigits to your Archive01 and Archive01.back drives. Test that the material transferred ok to the new drives then take them offline. If you are using the Voyager, put them on a shelf. Delete what you just copied from the Caldigits.
    Rinse and repeat as necessary.
    Keep in mind, a drive placed on a shelf and not used is probably more prone to failure than one used constantly. So, every few weeks, spin all the drives up and run disk utility on them to verify they are ok. This gives the heads a workout and keeps the drive from seizing up.
    Aren't you glad you asked?
    Good luck,
    x

  • Create a Playlist from external folder with tracks already existing in iTunes

    I was just wondering if its possible to create a playlist from an external folder (on my desktop) with tracks that already exist in iTunes.
    I basically have a folder on my desktop that i use with Serato, i was wondering if it'd be possible to sort a playlist in iTunes with the tracklist from the folder? I already have all the tracks on iTunes so i don't want to add them onto iTunes again just to put them into a playlist as i'd have to sort through all the duplicates to delete the non playlisted tracks (theres around 1500 so it wouldn't be a quick task).
    Would be much appreciated if anybody can help!

    Hi,
    I have an AppleScript that does this.
    This script need Spotlight metadata, all files in the folder that you use with Serato should be indexed.
    Works well if the tags (name and artist) are defined
    In this script :
    it will display a dialog to select your folder
    iTunes search track from the library playlist according to (artist, album and title in the Spotlight metadata of each file).
    If iTunes found a track, iTunes will add this track to the new playlist.
    The script takes 35 seconds for 1000 files on an old machine (PowerMac G5 2 X 1.8 GHz) .
    This should take less than 100 seconds for 3500 files on the new machine
    Here is the script :
    -- this script need Spotlight metadata, files in the folder should be indexed
    set folderPath to (choose folder with prompt "Select the  folder that you use with Serato")
    set f to quoted form of POSIX path of folderPath
    my makePlaylist(do shell script "/usr/bin/find " & f & " -type f \\! -name '.*' -print0 | /usr/bin/xargs -0 /usr/bin/mdls -name kMDItemTitle -name kMDItemAlbum -name kMDItemAuthors | /usr/bin/sed 'H;$!d;x;s/\\n[^k]//g'")
    on makePlaylist(t)
          script o
                property L : paragraphs of t
          end script
          set tc to (count o's L)
          tell application "iTunes"
                set newPlaylist to make new playlist with properties {name:"Serato"}
                set masterLibr to (get first playlist whose special kind is Music)
          end tell
          repeat with i from 2 to tc by 3
                set {tAlbum, tArtist, tTitle} to my getvalue(items i thru (i + 2) of o's L)
                tell application "iTunes" to try
                      set t to (get first track of masterLibr whose name is tTitle and artist is tArtist and album is tAlbum)
                      duplicate t to newPlaylist -- add founded track from the library playlist to the  new playlist
                end try
          end repeat
    end makePlaylist
    on getvalue(tList)
          set oTID to text item delimiters
          set text item delimiters to "\""
          set {alb, aut, title} to {"", "", ""}
          try
                repeat with i in tList -- if line does not contains a double quote then the tag is  empty -->  = (null)
                      if i starts with "kMDItemAlbum" then
                            tell i to if it contains "\"" then set alb to text item 2
                      else if i starts with "kMDItemAuthors" then
                            set text item delimiters to "(   "
                            -- if artist contains one word, it doesn't contains double quote
                            tell i to if it does not contain "(null)" then
                                  if last text item starts with "\"" then
                                        set aut to text 2 thru -2 of (last text item)
                                  else
                                        set aut to (last text item)
                                  end if
                            end if
                            set text item delimiters to "\""
                      else --kMDItemTitle
                            tell i to if it contains "\"" then set title to text item 2
                      end if
                end repeat
          end try
          set text item delimiters to oTID
          return {alb, aut, title}
    end getvalue

  • Transport takes a long time with 'file already in use' message in tp log

    Hello,
    We are implementing SAP ECC 6.0 on IBM iSeries, i5/OS V5R4.
    I am encountering the following problem when conducting an import on TQA system from a transport request done from DEV :
    The import takes a very long time without being implemented, with the following message in the tp system log :
    'WARNING: /usr/sap/trans/tmp/TQA.LOB is already in use (10), I'm waiting 1 sec (20080515222358). My name: pid 621 on MASAPTQA (tqa00)
    The message keeps repeating continuously, with the pid changed each time, and the waiting time (in seconds) also changed each time.
    In general, the pid does not even exist.
    What could be the cause of this problem ?
    Thank you in advance for your cooperation.
    Best regards.
    Reda Khalifa

    Hello Sally,
    Thank you for your interest.
    I've gone through SAP note 12746.
    I deleted the log file /usr/sap/trans/tmp/TQA.LOB after making sure that pid 640 which appeared in the old message in the tp system log did not exist.  But this resulted in the message :
    'WARNING: Cannot remove /usr/sap/trans/tmp/TQA.LOB : No such file or directory' to appear once in the tp system log and for a very long time.
    I re-generated the transport profile file, and released a new transport from DEV to TQA, and tried to import this new request, and now the message in the tp system log is :
    WARNING: /usr/sap/trans/tmp/DEVKK917158.TQA is already in use (20), I'm waiting 4 sec (20080516225456). My name: pid 663 on MASAPTQA', where DEVKK917158 is the transport request number generated from the DEV system.
    pid 663 now corresponds to an active job (I used command WRKPID)
    Any clues ?
    Thank you for your cooperation.
    Best regards.
    Reda Khalifa

  • Re-partitioning External HD with Leopard, originally formatted by Tiger

    I'm about to install Leopard on a *Mac Pro.* First I plan to format (GUID) and partition an external firewire hard drive into three volumes -- +volume one+ for a bootable, cloned back-up of my current OS X Tiger 10.4.11 HD contents (via CCC) -- +volume two+ for a weekly (bootable) back-up of the OS X Leopard HD contents (again, via CCC) -- and +volume three+ for sound library storage.
    I would of course be formatting this external hard drive using my current operating system (Tiger).
    _Even though I will have formatted the external hard drive using Tiger, can I, at a future date (after I've installed Leopard), use Leopard's more flexible partitioning capabilities to adjust the boundaries/sizes of the partitions even though I didn't originally format the external hard drive with Leopard?_
    Or will this process require two external drives -- the first to solely clone my OS X Tiger system, and following the installation of Leopard on my Mac Pro-- the formatting and partitioning of a second external drive by Leopard so as to ensure the flexible, virtual partitioning capabilities of Leopard.

    I am trying to partition my LaCie external from my PowerBook G4 so I can use it to clone my failed Hardrive on my MacPro. I just go to Partition and choose the GUID? It seems kinda stuck in that process... I hope I'm doing it correctly.
    Any tips? I am trying to save my failed HD by cloning it but I feel like my Ext HD is not proper to receive this info

  • HT201250 If I have a Hard Drive with files already on it, will backing up my MacBook Pro delete the files already on the Hard Drive?

    I have recently bought a Hard Drive to store files that can no longer fit on my MacBook Pro. I also want to use this Hard Drive as a back up for my entire computer. Will backing up my computer delete the files i already have on my Hard Drive??????

    It shouldn't.
    If you are planning to use Time Machine, then no, it will never overwrite files that aren't part of an old Time Machine backup; only old data put there by Time Machine will ever be touched by Time Machine.

  • Re Time Machine I have an external  hard drive with files I backed up manually over the past 2 years 1TB of memory. I am finally taking the leap to use Time machine to back everything.   will I have to reformat that drive, thus wiping my previous bac

    Re Time Machine
    I have an external  hard drive with files I backed up manually over the past 2 years 1TB of memory.
    I am finally taking the leap to use Time machine to back everything.
    will I have to reformat that drive, thus wiping my previous back ups?
    can I split it the drive in two partitions?
    Also
    as I have two separate Macbook Pro's- one older than the other.
    OSX 10.68
    the other is
    OSX 10.75
    can I back them up separately?
    or even synch and merge files and folders etc? between the two?

    You CAN use a drive with files already on it to store Time Machine backups. But long term, that is not recommended. You do not need to reformat or re-partition the drive to do this. Once Time Machine Backups are established, you could remove the old files.
    But do not delete Time Machines files with the Finder -- that can cause it to lose its place and lose everything.
    With the cost of backup drives under US$100, it might be a better idea in the long run to get another drive. Best results from Time Machine is a drive about 3 times larger than the drive(s) you are backing up.

  • Using an external drive with shared files (iPhoto, iTunes), attached to a Time Capsule, can the contents of the external drive be backed-up to the internal Time Capsule drive? Perhaps a RAID1 mirror to a partition?

    Using an external drive with shared files (iPhoto, iTunes), attached to a Time Capsule, can the contents of the external drive be backed-up to the internal Time Capsule drive? Perhaps a RAID1 mirror to a partitioned Time Capsule? I understand that the Time Machine (software) cannot backup a networked drive (the external) and that Time Capsule (the router/wireless hard drive) does not have its own backup software... so it won't backup the connected drive. What I would like is an alternate solution for having an automated backup of a networked drive. A 2TB Time Capsule has more than enough space for Time Machine backups of my family of Macbooks, so I had hoped to mirror a 500GB external drive (with shared media files) to a portion of the Time Capsule internal hard drive. I assume this would require a partition of the Time Capsule drive. If not, would the sparse file from the various computers being backed up need to be copied to the external drive as part of the RAID1 setup? This seems like overkill for the Time Machine backup, but it would cover the media files.  

    The complexity with this idea is the software has to run from a Mac computer on your network.. so you need a Mac turned on, probably most of the day.
    It isn't possible to partition the TC although you can create a image area.
    The software would have to copy the material, that means all files to be copied, go from USB drive, back to the Mac, then back to the TC, and written to the drive. In other words you have just added Network congestion, although a proper incremental backup type software will not actually use a lot of capacity.
    Finally it will be slow.. network drives are slower than internal drives. Well USB connected drive is much slower than the same drive connected directly to the computer.. and if the drive is connected directly to a computer it can be shared with the network.
    http://www.anandtech.com/show/4577/airport-extreme-5th-gen-and-time-capsule-4th- gen-review-faster-wifi-/4
    Read carefully the speed of the USB drive plugged into the TC.

  • I try to export my Imovie and I always get the error code"Unable to prepare project for publishing...File already open with write permission"  it even does it when I am just trying to export to my external hard drive to save the file

    I try to export my Imovie and I always get the error code"Unable to prepare project for publishing...File already open with write permission"  it even does it when I am just trying to export to my external hard drive to save the file

    Thanks!!! I had same error (with -49) and the mac had an external hard drive attached.. and it was doing a backup.  Stopped, disconnected and the project exported!

  • How can I set up an external harddrive with time machine that already has data on it without losing the data?

    I have an external hard drive that I use to hold photos and other files on that no longer fit on my macbook. I also use the external hard drive for back ups set up with time machine. I don't believe I ever did anything to partition it, I've just always had separate folders (Photos, Music, etc) with one being called "Back Ups" (or Backups.backupdb) that my time machine back ups would automatically go into. Recently, I made the switch from my HDD in my macbook to a new SSD of the same size. I used the back ups on the external hard drive to restore all my content, which all worked out fine. My problem now is in using my external hard drive. When I plug it in, it no longer seems to be working with time machine. Also, I was organizing some files within the external hard drive, and when I dragged one into a folder, it took a while to load. Before, it was instantaneous moving a file already on the external hard drive to another location within it. Can anyone help me in getting the external hard drive to work with my new SSD? I don't want to delete any of the folders or back ups that are already on it, since that's the only place I have some of those files. Please let me know if you need anymore details. Thanks! (sorry if this is posted in the wrong forum)

    First, she has to be logged in to the same iTunes account as she used on the old computer.
    Second, when she plugs the iPhone in to iTunes, right click on the phone name and select transfer purchases.
    Third, enter one contact and one calendar entry into the new computer's addressbook/calendar.
    After that, she should be fine.

  • Error while Creating External definition with WSDL file

    Hi ALL,
    I need to create a External defination with a WSDL file in PI 7.1.so i selected the Option WSDL & From all available message defination while creating External defination  & imported the WSDL file.
    I am getting an error
    javax.ejb.EJBException: nested exception is: java.lang.RuntimeException: java.lang.NoSuchMethodError: com.sap.aii.utilxi.wsdl.api.WsdlHandler.parseWsdlWithOrderRearrange(Lcom/sap/aii/utilxi/xml/xdom/XElement;Z)Lcom/sap/aii/utilxi/wsdl/api/Wsdl; java.lang.RuntimeException: java.lang.NoSuchMethodError:
    Note : i checked the WSDl file in altova its no error's ,i know there is no problem with the WSDL file ,i tried importing the same in other XI 3.0 system it has no problem.
    help me in solving this ..
    Regards
    Shakeif

    Hi Tony,
    Somehow I solved this issue. I dont remember what exactly I did, as it was sometime back in December. I think I used the Wizard initially to do the configurations in Solution Manager and again i tried to do the same manually as the earlier one threw some errors.
    It seems the wizard proceeded half-way through and hence the entry was made in the database already and hence that error.
    Anyways thank you for replying me.
    best regds,
    Alagammai.

  • I have a seagate external hard drive with files copied from windows pc. If I will download NTFS driver from seagate to my mac, could I install it safely without harming my files in the external hard drive? I am afraid I may erase all files in there.

    I have a seagate external hard drive with files transferred from my windows pc. If I will download NTFS Driver from seagate to my mac, could I install it safely without harming my files? I am afraid.. I might erase all my important files during the installation..

    Thanks a lot! I have already downloaded Paragon Driver and it works well with seagate external hard drive. I am copying as of now my important files from my mac to it. However, I have only the trial version which will expire in 10 days. I don't have credit card to buy for it.

  • I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    To locate large files, you can use Spotlight as described here. That method may not find large folders that contain a lot of small files.
    You can also use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual.
    Triple-click the line of text below to select it, then copy the selected text to the Clipboard (command-C):sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the Terminal 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 Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means.
    When you're done with ODS, quit it and also quit Terminal.

  • External HDD with Partitions not functioning in Yosemite

    I was part of the Public Beta for Yosemite and didn't have any issues. But since upgraded to the full version of Yosemite, by external HDD with 2 partitions (one for files and one for Time Machine) has been acting strangely. I can still access (read/write) the partitions with my files on. But the Time Machine Partition doesn't mount and is greyed out in Disk Utility. I have tried to repair, erase, reformat the drive but none of these options work because it says that it can't access the drive (because it won't mount). I don't have access to a non-Yosemite Mac at the moment, but even so, I still need to use the HDD on my Yosemite Mac. Any suggestions?

    I had exactly the same problem after installing Yosemite.  Had the drive checked out by a local PC repair company who could not find anything wrong with the HD (Segate) but suggested I checkout the warrantee.  I tried using the Apple disk verification and repair tools - hopeless.  So I returned the drive to Seagate who replaced it with another "re-certified" drive.  I was not comfortable with using this as it had (in theory) failed; so might another second hand unit. So I bought a new Western Digital which does the job.  No changes to the operating system needed.
    This leave me with a strange taste in my mouth! 
    Was the original drive faulty or not (Seagate didn't tell me what was they simply replaced it)?
    Did Yosemite trash the dish - I will never know?
    Why did the WD HD work and not the Seagate?
    Life is too short - I moved on - but it did cost me over £100 to restore my backup facility for no apparent reason.
    PS the Seagate replacement is now used for backing up a laptop - OS Windows Vista - no problems...........

Maybe you are looking for

  • HT2476 how do i clean my start up disk and free up space

    how do i clean my start up disk and free up space

  • Can I pull iWeb files back from MobileMe after hard drive failure?

    I suffered a recent hard drive failure and while I had my pictures backed up I didn't have my iWeb files back up and don't want to start the website from scratch if at all possible. Is there any way to save the files I uploaded to MobileMe back to my

  • Create dinamic component

    i want to create as many image component as many are in an array For example private var data:ArrayCollection = new ArrayCollection(); data[0] = "pic0.jpg"; data[1] = "pic1.jpg"; data[2] = "pic2.jpg"; data[3] = "pic3.jpg"; data[4] = "pic4.jpg"; in th

  • Noob - TABLE BREAKING MADNESS!

    Hi, I'm still learning DW so be nice ;) I am using CS3 to make a website for a client. It looks fine in DW: Dreamweaver But then when I preview in Fireworks I get this: Fireworks IE, looks fine however. Is this a known issue or is there something I a

  • Script Text Editor alignment

    Hi Folks, I have an allignment problem w.r.t the text editor in a Script. C5   ,,&printtab-wt_qsshh(IC)& <b>/:   IF &PRINTTAB-BUDAT(ICZ)& NE '..' C5   ,,   &printtab-BUDAT(ICZ)& /:   ELSE C5 /:   ENDIF =    ,,,,&printtab-wt_qbshh(IC)&,,&printtab-qsat