Creating a Striped Raid from two used disks

I have *2 internal 300GB drives* in my G5. My start up disk has *4GB left* and my second drive has *80GB remaining*.
I want to make a *striped Raid* of the two disks to allow me to use the remaining 84GB as startup space.
I am guessing that if I backup the second drive and erase it I can add it to my startup disk without loosing its information and create the RAID. Is this the case?
Can anyone give me any pointers for the process and are there any draw backs to having a striped raid as a start up disk.
Thanks in advance for any help you can give me with this!

Are you using bootcamp for Windows?
Unless something has changed, if your startup disk is a raid (of any flavor), Windows will not see it.
You'll have to use the option key at startup to switch back to X.
If you are using sheepshaver or similar for OS9, 9 will not see the raid.
Both are minor, but can be annoying.
I believe you need 3 disks for a striped raid.
2 for the actual raid, and the 3rd for parity.
This setup allows for data recovery in case of failure.
a 2 disk raid striped is subject to data loss if one of the drives fails.
If I recsll correctly, both drives will be formatted during the raid creation process.

Similar Messages

  • HT5105 I have been trying to create a multicam clip from two camera's. They sync properly when using the sync feature but not when I use the multicam feature does anyone know what I may be doing wrong?

    I have been trying to create a multicam clip from two camera's. They sync properly when using the sync feature but not when I use the multicam feature does anyone know what I may be doing wrong?

    Probably best if you could post screen shots of the Inspecror window in extended view with a couple of the clips you using for the 2 angles.
    If you have audio from both cameras and have identified them separately, the sync is usually pretty reliable.
    Russ

  • How to Create a new column from two different result sets

    How to Create a new column from two different result sets, both the result set uses the different date dimensions.

    i got solutions for this is apply filters in column formula it self, based on the requirement.

  • If leopard won't boot from dvd, use disk utility mount to partition

    wanted to share a way that i successfully installed os 9, tiger, and leopard on 1 hard drive. first of all, leopard was the only installation that i had difficulty with. it would not boot off the original dvd, no matter if i held down the 'c' key or the option key, so this is what i did after a lot of reading on the internet to try and troubleshoot this issue.
    First thing i did was partition my internal hard drive in 3 partitions using disk utility. the 3rd partition was around 9gb. I installed os9 first on the 1st partition, i then installed tiger on that same partition. then i put in my leopard dvd, and opened up disk utility. and clicked on "restore", and dragged the dvd image as the "source", and chose the 9gb partition as the destination, and clicked on restore. then, i changed the "startup disk" to start from the 9gb where i just restored the image, and rebooted, and went through the leopard setup and chose the 2nd partition as the place to install. this should work with the dvd, or if you made an image from the dvd. I hope this helps someone else whose dvd won't boot, because it was very frustrating after you purchase a faster processor, and faster video card so that your system meets the requirements, and then the dvd won't boot.

    Two ways. Use another computer to restore the install disc to one of those ext HD. Then, use it to boot the other machine. Get an ext CD/DVD reader and use it to read the install disc and boot the machine. However, if both the HD and optical reader are kaput, then a trip to an Apple repair station is in order.

  • BUG??? Can't  create a class deriving from ActionForm using wizard

    Has anyone managed to create an class deriving from ActionForm class using the wizard in JDev 9033?
    When I try to do create a class by right-clicking.."New"..etc nothing happens!!

    Yeah. Same thing happens for me. I went to File->New->Web Tier->Struts->ActionForm. Can't get it to do anything.

  • CREATING A STRIPED RAID SET

    Can anyone help?
    I'm new to Final Cut Pro and trying to set up a Striped RAID Set with three internal 500 gb drives...
    I assume I should set the Volume Fomat: Mac OS Extended
    and RAID Type: Striped RAID Set
    Should I leave RAID Block Size at 32K or higher for video?
    Should I partition this RAID set or leave as 1.5 tb (approx)?
    (I plan to be doing most of my work in DV with some SDI)
    Any and all help will be greatly appreciated!
    Todd

    We talked about this very thing no too long ago here... it was concluded with setting the RAID block size to as large as you can, and I'd not partition it at all. (Don't see any gain in doing it - only disadvantages)
    Jerry

  • Automatically create new Excel file from template using data from a selected row in a separate Excel file

    I am fairly new to Macro and VBA in Excel. I am trying to reduce the amount of work involved in a task that is performed often in our office. Currently, the task involves using 2 separate Excel files. One file is a tracking sheet and the second is the document
    that gets sent out to the client. The second document has all the same information that is inserted into the tracking sheet. What I would like to do is have the information that is in one row on the tracking sheet populate into a new excel file that is created
    automatically from an existing template.
    I have been able to make this partially work. What I have been able to achieve is have the cell that is selected in the tracking sheet (the description field) copy into the new file that is created from the template that is on our server.
    Sub NewRFI()
    ' NewRFI Macro
        MsgBox Selection.Address(ReferenceStyle:=xlA1, _
                               RowAbsolute:=False, ColumnAbsolute:=False)
        Selection.Copy
        Workbooks.Add Template:= _
            "template file path goes here"
        Range("C14").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
        Range("C14").Select
        Application.CutCopyMode = False
    End Sub
    What I need to do is get the rest of the information from that same row in the tracking sheet to copy to the new file as well. The other information includes the document number (one cell to the left of the selected cell), who it is from (one cell to the
    right of the selected cell), and the date (two cells to the right of the selected cell). As stated, this information is all in the same row on the tracking sheet. Each piece of information needs to be copied to a certain cell in the new file and I do not want
    the source formatting to be copied to the new file.
    Ideally, I would like it to operate like so: select the first cell in the row (in this case would be the document number field). Then click a button to run the macro that will then copy the information from that row in the tracking sheet to specific cells
    in the new file that is created from the template.
    This process will save us from having to either manually copy and paste the information into the new file or re-type the same information that is already in the tracking sheet.
    This is probably a simple thing to do but it would be great if anybody had some insight on this issue. Thanks in advance!

    Try code like the following. You will have to change the target cells (D25, F1 and H4) to the ones you want, I just used some arbitrary cells as example.
    Sub NewRFI()
    Dim rngCell As Range
    Set rngCell = ActiveCell
    MsgBox Selection.Address(ReferenceStyle:=xlA1, _
    RowAbsolute:=False, ColumnAbsolute:=False)
    Workbooks.Add Template:="template file path goes here"
    Range("C14").Value = rngCell.Value
    ' Change the target cells as needed
    Range("D25").Value = rngCell.Offset(0, -1).Value
    Range("F1").Value = rngCell.Offset(0, 1).Value
    Range("H4").Value = rngCell.Offset(0, 2).Value
    End Sub
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Create a fact table from two Dim Tables - is it possible in powerpivot?

    I have two comma delimited flat files.
    1 - Customer Details (customerCode, Name, Address etc)
    2 - Order Details(OrderNumber, OrderLineNumber, CustomerCode etc)
    The two link by CustomerCode. I can bring both into powerpivot and link them directly, so cna deliver a report quickly. This model will grow however, with product dimension, store dimension and a few others.
    So, i want to design it correctly from the outset, having a DimCustomer & a DimOrderDetail, that both link via a FactTable. I cant figure out how to create a factTable using both Dimensions using only powerPivot & dax. Is it possible?

    Shaping the data before it gets to PowerPivot using Power Query is the easier option:
    http://office.microsoft.com/en-us/excel-help/introduction-to-microsoft-power-query-for-excel-HA104003940.aspx
    http://www.microsoft.com/en-us/download/details.aspx?id=39379
    Ideally, with Power Pivot, the best model is a star schema where you have a single fact table and all the dimensions are linked directly to the fact table and not to one another.  This isn't always possible in real world modeling but it is definitely the
    easiest to deal with when writing measures and designing pivots.  It also generally gives the best performance.

  • Creating SAME SIZED pdf from two pdf's

    i am probably not following instructions very well and i am not finding an explanation in the documentation so i am hoping someone can help me out here.
    i have two pdf's. one is a cover page of a magazine and the other is a page inside the magazine where my work is mentioned. i wish to combine these two pdfs into a SINGLE pdf but in a way that both the pdf's are the same size. i feel like i am missing a settings somewhere for this as each time i do this the inside page is printed into the pdf document at half the size of the cover page.
    i have tried saving out as png and making sure they are the same size and resolution but this prints (out of Preview) with white borders all around.
    i have tried saving out as Optimized pdf and setting the sizes to 8 x 11 and 72 dpi but this then prints out of Acrobat as a highly rasterized document that is unreadable.
    can anyone help me with a step by step on how this can be done? it seems like i should just be able to open two random pdf's in the CREATE pulldown and then tell Acrobat to print them at some specified size (this would be very easy!) but i must be missing something.
    TIA

    Hotwheels 222,
    It might help to think of PDF as a container that can have many things such as text, photos, graphics, vector elements,etc all wrapped up inside it.
    Normally the content is created in another application such as InDesign, Illustrator, MS Word, or many other appliations. In the application you create a blank document and add or place images, type text in any font you desire, place or create some vector elements (if the application actually have any vector tools), and even other multimedia like audio/video as long as the application supports them,
    The photos can all have a different resolution, the vector elements have no resolution (I'll explain), the text may be in many different fonts and they all retain their separate characteristics inside the PDF.
    A PDF created from an application like Photoshop will just have one resolution because PS is a pixel based image editor and a PS document can only have a single resolution.
    . . .the idea that two adobe products cannot communicate from acrobat to photoshop in terms of a pdf resolution in photoshop seems very inconvenient. . . Again, since a PDF may have many photos with different resolutions, even if PS could get this info (which it can't) what resolution should PS decide to use? PS leaves this up to the user to decide based on what they want their final output may be.
    You mention a document you have that "appears to be no images inserted" and "it appears as if it is one image"?
    Are you referring to the Cover pdf?  The PDF producer is "Adobe Acrobat 10.0 Image Conversion Plug-In" is a tip off to "Test Screen Name" and myself that it came from Photoshop. 
    While its possible this document was completly created in Photoshop, it is also likely that it was created in another application like InDesign, etc. exported from there as a PDF and then the PDF was opened in Photoshop which rasterized the content and flattened it into a image file with the resolution that you chose when opening in PS and then saved again as just an image in the PDF format. The graphic artist that created this probably did this because they didn't want to give you a print quality PDF that you might try to extract elements from.
    You mentioned you thought the doc was from Adobe Illustrator (AI)  AI is primarily a vector creation tool which also allow for the inclusion pixel based raster images (with a specific pixel resolution) to be placed in an AI document if wanted.  Strictly speaking, vector objects don't have a resolution. They are based on math,
    It basically says, place a point at such & such X, Y coordinates, now place another poing at some other X,Y coordinates, it takes into account the arc or angle between the two points and says draw a straight line, or draw a curved line ,etc. Since these are only mathematical instructions. this can be enlarged as big as you want and the relationship between the 2 points and the arc of the curve or line will dictate how the enlarged line or curve will be redrawn. 
    Vectors are "resolution independent" you can draw a vector logo at 1 x1 inch, and enlarge it to 50 x 50 inches or even as large as a house and it will still print crisp and clean. Note, this only applies to the vector content in your document; any pixel content is stuck at the resolution it was created at.
    To inspect elements in a PDF use the Object Inspector in Acrobat Pro. Since a PDF may contain many differing objects you need to click exactly on each object to get any info about the selected object. So if you had 10 photos in your PDF you would need to select each in turn and it would give you the pixel dimension, resolution, color space and profile, etc. if you clicked on text it will identify the font. It is well named, an Object Inspector rather than a Document inspector. Try it yourself with different PDFs you may encounter. If for example, it gives you the exact same info (resolution, pixel dimensions. etc) no matter when you click, then you are likely dealing with a whole single image. If you get different pixel dimension, resolutions when you click in various different areas you are dealing with a PDF that had separate distinct elements.
    . . . i can't see why i shouldn't be able to get a document that is 17.7 x 22.9 at 72 ppi down to one that is 8 x 11 at 300 ppi.
    In Photoshop, go to the Image menu, Image Size. This will show the pixel dimensions (width & height) at the top. If you don't interpolate (Resample) Photoshop can only put the same number of pixels into different size documents. When you squeeze the same # of pixels into a smaller doc the resolution goes up. When you place the same # of pixels in a larger doc the resolution goes down.
    Remember, that resolution is PPI (Pixels Per Inch)! If you do the math this will start to make sense.
    Below note that each dialog box has the EXACT same pixel dimensions.
    In the first box it shows the 1275 x 1650 pixels in a document of  17.708 x 22.917 inches. This yields a resolution of 72 PPI.
    In the second box I changed the document size to 8.5 x 11 inches and the same 1275 x 1650 pixels now increase the resolution to 150 PPI.
    In the third box I changed the resolution to 300 PPI and the same 1275 x 1650 pixels now decrease the document size to 4.25 x 5.5 inches.
    If you click the Resample Image box, Photoshop will interpolate (resample) the image by throwing away pixels or by adding pixels, but there is no magic involved, and the results are never as good as one might hope for.
    Like Goldilocks and the 3 Bears, some things are best when they are "just right"

  • How to create a Purchase order from XI Using ORDERS05

    Hello Experts,
    I need to create a purchase order using OREDRS05 from XI. I was not able to create and I am having these quires.
    1. What are all the mandatory fields that I need to fill in to create a purchase order?
    2. Which part of the SAP will take care of the control record? Is this done by SAP or Integration Tool?
    3. When I have tryed with an existing Inbound Idoc(On R/3 Side) its showing Satus 51 what should I do?(Error: There is no article description for item 000010)
    If Possible give me the step by step procedure to reslove..
    Thanks in Advance,
    Sai Suma

    Hi Suma,
    Check this link
    Creating Purchase Order IDOC through XI
    /people/ravikumar.allampallam/blog/2005/03/03/creating-purchase-order-idoc-through-xi
    Sachin

  • Some example to create an static page from WCM using templates

    Hi,
    I am new to Oracle WCM. I want to create a simple page with header, footer, side navigation and page content. Please can you provide me some examples from end-to-end creation of page?
    Thanks
    Neetu

    The Developer Guide has some detail on FSII - http://docs.oracle.com/cd/E29495_01/doc.1111/webcenter_sites_11gr1_bp1_developer_guide.pdf
    All documentation can be found on OTN - http://docs.oracle.com/cd/E29495_01/index.htm
    Phil

  • Can I create a mirrored RAID1 from an existing striped RAID0 without erasing the data?

    I have a 1.5 TB striped RAID0 with 3 500 GB drives. I have a clone of the data from the 1.5TB RAID on a non-RAID 1TB drive and a 500GB drive. I'd like to create a RAID1 mirrored set out of all of these disks. I can partition the 1TB into 2 500GB drives and combine that with the other 500 GB. I'd rather not erase the data to create the mirror. Is there a way to rebuild a mirrored set from the existing 1.5 TB striped set, or do I need to start all over? I have a third copy of the data that I could put on the new mirrored RAID if necessary.
    The data is aperture, itunes and imovie libraries. To back up a minute, is having a RAID1 a good option or is there a better solution that I am not considering?
    PS I'm using a 2.53 GHz macbook pro unibody with 8GB of RAM.

    First off a mirrored RAID requires two drives of equal size (could be two striped RAIDs of equal size.) So, as I understand what you have to work with you can create a single 500 GB mirrored RAID using two of the 500 GB drives.
    You could create a striped RAID array using two of the 500 GB drives, then combine it with the 1 TB drive you have to create a 1 TB mirrored RAID. But this would not be the best alternative because if one of the smaller drives in the striped array fails then you lose everything on those drives. Not so bad as long as the single 1 TB drive is OK.
    Also, you might find this information helpful:
    RAID Basics
    For basic definitions and discussion of what a RAID is and the different types of RAIDs see RAIDs.  Additional discussions plus advantages and disadvantages of RAIDs and different RAID arrays see:
    RAID Tutorial;
    RAID Array and Server:
    Hardware and Service Comparison.
    Hardware or Software RAID?
    RAID Hardware Vs RAID Software - What is your best option?
    RAID is a method of combining multiple disk drives into a single entity in order to improve the overall performance and reliability of your system. The different options for combining the disks are referred to as RAID levels. There are several different levels of RAID available depending on the needs of your system. One of the options available to you is whether you should use a Hardware RAID solution or a Software RAID solution.
    RAID Hardware is always a disk controller to which you can cable up the disk drives. RAID Software is a set of kernel modules coupled together with management utilities that implement RAID in Software and require no additional hardware.
    Pros and cons
    Software RAID is more flexible than Hardware RAID. Software RAID is also considerably less expensive. On the other hand, a Software RAID system requires more CPU cycles and power to run well than a comparable Hardware RAID System. Also, because Software RAID operates on a partition by partition basis where a number of individual disk partitions are grouped together as opposed to Hardware RAID systems which generally group together entire disk drives, Software RAID tends be slightly more complicated to run. This is because it has more available configurations and options. An added benefit to the slightly more expensive Hardware RAID solution is that many Hardware RAID systems incorporate features that are specialized for optimizing the performance of your system.
    For more detailed information on the differences between Software RAID and Hardware RAID you may want to read: Hardware RAID vs. Software RAID: Which Implementation is Best for my Application?
    Do You Really Need a RAID?
    There is only one thing a RAID  provides - more space.  Beyond that a RAID can’t help you with:
    Accidental deletion or user error
    Viruses or malware
    Theft or catastrophic damage
    Data corruption due to other failed hardware or power loss
    Striped RAIDs have a higher failure risk than a single drive
    The purpose of a RAID is to provide high speed mass storage for specialized needs like video editing, working with extremely large files, and storing huge amounts of data.
    If your array fails it means complete loss of data and hours of time to rebuild.  RAIDs degrade over time necessitating many hours of restoration.  And, if you don't know much about RAIDs then you really don't need one.
    You can use a RAID for backup.  But unless your backup needs involve TBs of data requiring rapid and frequent access, why bother?  TM works in the background.  It's not like you have to sit there waiting for your backup to be completed.  Furthermore, you're buying two drives possibly to solve a problem where a single drive will do.  And, one drive is less expensive than two.
    Ignoring overhead, two drives in a RAID 0 (striped) array should perform about twice as fast. However, as the array fills up with files that performance will degrade.
    RAID was a technology that in it's time was meant to solve a problem.  Large capacity, fast drives were extremely expensive.  Small drives were cheaper but slower.  However, combining these cheaper drives into arrays gave faster performance and the larger capacity needed for data storage needs.  Thus, the reason why it's called Redundant Array of Inexpensive Drives.  But today you can buy a 3 TB drive with performance that's better than the 1 TB drives of two or three years ago.

  • HT3275 I continue to get the following error message: Unable to complete back up.an error occurred while creating backup folder. It's a brand new drive. When I attempt to repair it using disk utility I get:unable to repair disk cannot unmounted

    I have been trying to use time machine on a new lacie 2tb usb 2 drive for back up. I continue to get: "unable to complete backup.An error occured while creating backup folder". When I use disk utility to repair I get another error message: unable to repair disk unmountable.
    Help me Obie One Canobie you are my last hope

    I have confused myself with the facts!  Started out keeping track of every step and every variable but have sort of lost it as we progress here.  First I quit all applications then swapped connections between mouse port and backup disk port to influence possible bad connections question.  Changed power outlet receptacle for the backup disk. Disabled the put-the-HD-to-sleep option.  Then powered down the computerator.
    Next started up computerator.  Turned Time Machine ON  and experienced multiple successful backups!  Then I started up a few applications, Mail and Text Edit (but not Safari so far).  Had a few more successes.  After each backup, I used Disk Utility to verify the backup disk is still OK.  This because the error about unable to unmount the backup disk seems to go hand in hand with Disk Utility finding the backup disk to be bad.
    Put computer to sleep for the night.  Upon starting up in the morning, and before doing anything else, I did a backup disk verification... BAD!   Did a restart and verified the backup disk... OK.
    Did a few    Sleep-bad, Restart -OK    repetitions.
    It seems consistent:  Sleeping the computer apparently messes up the backup disk but doing a Restart "repairs" it.
    =============================
    Now then, I don't understand everything I know here.  Methinks that maybe keeping the HD from sleeping during lulls in activity has allowed successful backups through the day but manually putting everything to sleep for the night causes a return to the problem of spinning-back-up-too-slowly (which was explained earlier).  Is there any truth in this?
    I may abandon this Seagate thing for something more compatible.  What's out there that we know works reliably for us?

  • Using Acrobat X and creating a PDF File from EXCEL 2010, I notice that the Pagination restarts at 1 for each Worksheet included in the PDF.

    I use Acrobat X Standard and created a PDF file from two or more worksheets using EXCEL 2010.
    The resulting PDF file restarts the PAGE # (In header/footer settings of Excel) at 1 for each worksheet.
    However, a colleague of mine who has Acrobat X Pro version, using EXCEL 2010 and same exact file does the same task, he gets a file that starts at page 1 and second worksheet continues the page # from the last page of the First worksheet.
    We both are using the ACROBAT menu (not the print to Adobe printer) to create the file so that we can get Bookmarks included in the resulting file for each worksheet.
    We cannot figure out any option in Acrobat's preferences that controls the pagination on either of these versions of Acrobat.
    So is this just a feature that works one way in Standard version and another way in the Pro version, and the user has no control over it?

    This is so sad. I read your comments and I said, "Huh?" Haha!
    I tried the indexed color option and it did make the final file smaller. Around 600KB. But there's probably another way to make it even smaller like the gazillion-paged pdf file that I mentioned that was only about 300KB.
    And by saying a layout program, does that mean like Adobe InDesign? Does that mean that I should just make my graphics in Photoshop and then import using another program and finish the file there?
    What other layout programs can I use?
    Thank you so much!

  • RAID 0+1 using ExpressCard/34 with double eSata

    I have a problem, and maybe someone here can help me a bit. Many thanks in advance.
    I am doing a lot of RAW photo editing and also sometimes video processing. I want my pictures and video to be stored on an external hard drive connected to my MAC BOOK PRO using ExpressCard/34 and at the same time I want to have continuous backup of my files. I am thinking of playing a bit with RAID 0+1. Here is my plan:
    I am planning to buy two WD My Book® Studio Edition™ II 1TB external drives (http://www.wdc.com/en/products/products.asp?driveid=409). The drive itself operates as RAID 0 (striped) build from two drives 500 GB each - I understand that this way it is faster than one 1TB drive. I think of connecting these two drives to my Mac Book Pro using eSata Interface using eSATA II 2-Port ExpressCard-M form SIIG (http://siig.com/ViewProduct.aspx?pn=SC-SAEE12-S1 - seems to be recommended by WD). Then, by using Disk Utility, I plan to create a RAID 1 (mirrored) set consisting of these two external drives.
    What I am expecting is to have something like RAID 0+1 and I expect this to be a better (faster) solution than buying one big WD My Book® Studio Edition™ II 2TB (2x1T internally) and using it in the RAID 1 configuration (which can be set by using the software provided by WD with the drive).
    If anyone have some experience with RAID (main is close to 0) then I would be very thankful to read your comments.
    I expect the configuration with 2 external drives connected via eSata to be faster than one 2TB (2x1TB) drive working in RAID 1 configuration. I am also wondering if my "RAID 0+1" will be much slower than one WD 1TB external drive (which is 2 drives working as RAID 0) or this is still comparable.
    Thank you for your help. Much appreciated !
    Marcin

    Hi Danny,
    Yes, I did read it, but it did not address my particular situation - i.e. all four drives connected to the promise controller.  The bits that do seemed to be saying "look at the manual", which isn't helping me.  Last night, I updated the mainboard bios to 2.4, which didn't make any difference, so I'm still stuck.
    Thanks for taking the time to reply
    Tony

Maybe you are looking for

  • Recover Corrupted Project file

    I got this message when trying to load a WIP file: "The project could not be loaded, it may be damaged or contain outdated elements." I've searched the forums as well as on other sources on how to deal with it. So far I've tried: 1. Check files on Au

  • Dictation not working on Mountain Lion?

    I enabled dictation on my mac through the System Preferences. First I tried going to notes and pressed the fn key twice, the Siri like mic appeared and I began to say simple words such us "hello" "how are you" and pressed done. The thre dots appeared

  • Session id

    i am using 9iDS and 9iAS. we are not using SSO. i have created my own parameters forms as jsps and i am passing the values to my reports (pdf). we generate our own session id numbers and retrieve the name of the user from the database. anyone have an

  • Cannot send files to trash...cannot empty trash of certain folders...

    Hi, Bit of a problem with deleting certain files from my external hard drive. There seems to be some files that finder doesn't like moving to the trash, I move them, and it asks for my password. I do this and they remain in place. I've tried over and

  • IPhoto unexpectedly quits (repeatedly) after restoring disk w/ SuperDuper

    I am trying to use my backup hard drive that was created doing a full backup using Super Duper. However, when I logged in to OS X for the first time, all my iLife apps in my dock had odd icons (like normal folder icons). However, I could drag them of