More than 2 drive?

I can't use more than 2 drives on my TC at a time otherwise I get crashes.
Why is that?

Sorry I have 2 drives connected external and one drive internal on the TC so a total of 3 drives. If I connect a 4th drive or more, the my TC fails to connect any drives.

Similar Messages

  • Not able to create More than 1 Partition in USB Drive using kernel32 and DeviceIoControl

    I have successfully created 2 or more partitions in USB drive using DeviceIoControl in C++. Now I am trying to convert this code into C# using kernel32 and DeviceIoControl. But I am not getting more than 1 partition. Can anybody tell me what is wrong
    with this code?
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Diagnostics;
    using System.Runtime.InteropServices;
    namespace PartitionWrapper
    public class IOWrapper
    public static bool CreatePartitions(string selectedDrive)
    bool RetCode = false;
    try
    bool bSuccess = false;
    uint dwBytesReturned = 0;
    IntPtr hDisk = OpenVolume(selectedDrive);
    if (hDisk == null || hDisk == FSConstants.INVALID_HANDLE_VALUE)
    RetCode = false;
    goto FINAL;
    bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_DELETE_DRIVE_LAYOUT, IntPtr.Zero, 0, default(IntPtr), default(uint), ref dwBytesReturned);
    // Get the partition information
    uint PartitionInfomations = (uint)(Marshal.SizeOf(typeof(FSStructures.DRIVE_LAYOUT_INFORMATION_EX)) + 3 * Marshal.SizeOf(typeof(FSStructures.PARTITION_INFORMATION_EX)));
    byte[] DBuffer = new byte[PartitionInfomations];
    GCHandle handle = GCHandle.Alloc(DBuffer, GCHandleType.Pinned);
    FSStructures.DRIVE_LAYOUT_INFORMATION_EX pDriveLayout = (FSStructures.DRIVE_LAYOUT_INFORMATION_EX)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(FSStructures.DRIVE_LAYOUT_INFORMATION_EX));
    IntPtr pDriveLayoutPtr = Marshal.AllocHGlobal(Marshal.SizeOf(pDriveLayout));
    Marshal.StructureToPtr(pDriveLayout, pDriveLayoutPtr, false);
    // bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_GET_DRIVE_LAYOUT_EX, default(IntPtr), default(uint), pDriveLayoutPtr, PartitionInfomations, ref dwBytesReturned);
    pDriveLayout = (FSStructures.DRIVE_LAYOUT_INFORMATION_EX)Marshal.PtrToStructure(pDriveLayoutPtr, typeof(FSStructures.DRIVE_LAYOUT_INFORMATION_EX));
    if (bSuccess || dwBytesReturned != PartitionInfomations)
    RetCode = true;
    else { RetCode = false; goto FINAL; }
    pDriveLayout.PartitionEntry = new FSStructures.PARTITION_INFORMATION_EX[0x16];
    pDriveLayout.PartitionStyle = FSStructures.PARTITION_STYLE.MasterBootRecord;
    pDriveLayout.PartitionCount = 4;
    pDriveLayout.DriveLayoutInformatiton.Mbr.Signature = 0xA4B57300;
    pDriveLayout.PartitionEntry[0] = new FSStructures.PARTITION_INFORMATION_EX();
    pDriveLayout.PartitionEntry[0].PartitionStyle = FSStructures.PARTITION_STYLE.MasterBootRecord;
    pDriveLayout.PartitionEntry[0].Mbr.BootIndicator = true;
    pDriveLayout.PartitionEntry[0].Mbr.RecognizedPartition = true;
    pDriveLayout.PartitionEntry[0].Mbr.PartitionType = 0x0B;
    pDriveLayout.PartitionEntry[0].PartitionNumber = 1;
    pDriveLayout.PartitionEntry[0].StartingOffset = 32256;
    pDriveLayout.PartitionEntry[0].PartitionLength = 3221225472;
    pDriveLayout.PartitionEntry[0].RewritePartition = true;
    pDriveLayout.PartitionEntry[0].Mbr.HiddenSectors = 32256 / 512;
    pDriveLayout.PartitionEntry[1] = new FSStructures.PARTITION_INFORMATION_EX();
    pDriveLayout.PartitionEntry[1].PartitionStyle = FSStructures.PARTITION_STYLE.MasterBootRecord;
    pDriveLayout.PartitionEntry[1].Mbr.BootIndicator = false;
    pDriveLayout.PartitionEntry[1].Mbr.RecognizedPartition = true;
    pDriveLayout.PartitionEntry[1].Mbr.PartitionType = 0x0B;
    pDriveLayout.PartitionEntry[1].PartitionNumber = 2;
    pDriveLayout.PartitionEntry[1].StartingOffset = 32256 + 3221225472;
    pDriveLayout.PartitionEntry[1].PartitionLength = 2147483648; //2147483648;//3221225472;
    pDriveLayout.PartitionEntry[1].RewritePartition = true;
    pDriveLayout.PartitionEntry[1].Mbr.HiddenSectors = 32256 / 512;
    for (int i = 0; i < pDriveLayout.PartitionEntry.Length; i++)
    pDriveLayout.PartitionEntry[i].RewritePartition = true;
    try
    bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_SET_DRIVE_LAYOUT_EX, ref pDriveLayout, PartitionInfomations, default(IntPtr), default(uint), ref dwBytesReturned);
    catch (Exception ex)
    if (bSuccess)
    RetCode = true;
    else { RetCode = false; }
    bSuccess = FSStructures.DeviceIoControl(hDisk, FSConstants.IOCTL_DISK_UPDATE_PROPERTIES, IntPtr.Zero, 0, default(IntPtr), default(uint), ref dwBytesReturned);
    if (bSuccess)
    RetCode = true;
    else { RetCode = false; }
    FINAL:
    // Close the disk handle.
    if (hDisk != null && hDisk != FSConstants.INVALID_HANDLE_VALUE)
    FSStructures.CloseHandle(hDisk);
    catch { return false; }
    return RetCode;
    private static IntPtr OpenVolume(string DeviceName)
    try
    IntPtr hDevice;
    hDevice = FSStructures.CreateFile(
    @"\\.\" + DeviceName,
    FSConstants.GENERIC_EXECUTE | FSConstants.GENERIC_READ | FSConstants.GENERIC_WRITE | FSConstants.FILE_SHARE_READ | FSConstants.FILE_SHARE_WRITE,
    FSConstants.FILE_SHARE_WRITE,
    IntPtr.Zero,
    FSConstants.OPEN_EXISTING,
    0,
    IntPtr.Zero);
    if ((int)hDevice == -1)
    throw new Exception(Marshal.GetLastWin32Error().ToString());
    return hDevice;
    catch { return FSConstants.INVALID_HANDLE_VALUE; }
    internal static class FSConstants
    public const uint FILE_SHARE_READ = 0x00000001;
    public const uint FILE_SHARE_WRITE = 0x00000002;
    public const uint OPEN_EXISTING = 3;
    public const int GENERIC_EXECUTE = 0x10000000;
    public const uint GENERIC_READ = (0x80000000);
    public const uint GENERIC_WRITE = (0x40000000);
    public static IntPtr INVALID_HANDLE_VALUE = new IntPtr(-1);
    public const uint IOCTL_DISK_GET_DRIVE_LAYOUT_EX = 0x00070050;
    public const uint IOCTL_DISK_SET_DRIVE_LAYOUT_EX = 0x7C054;
    public const int IOCTL_DISK_UPDATE_PROPERTIES = 0x70140;
    public const int IOCTL_DISK_DELETE_DRIVE_LAYOUT = 0x0007c010;
    public const int IOCTL_DISK_CREATE_DISK = 0x7C058;
    internal static class FSStructures
    [DllImport("kernel32.dll", EntryPoint = "CreateFile", SetLastError = true)]
    public static extern IntPtr CreateFile(
    string lpFileName,
    uint dwDesiredAccess,
    uint dwShareMode,
    IntPtr lpSecurityAttributes,
    uint dwCreationDisposition,
    uint dwFlagsAndAttributes,
    IntPtr hTemplateFile);
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern int CloseHandle(IntPtr hObject);
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern bool DeviceIoControl(
    IntPtr hDevice,
    uint dwIoControlCode,
    [Optional]ref DRIVE_LAYOUT_INFORMATION_EX lpInBuffer,
    uint nInBufferSize,
    [Optional] [Out] IntPtr lpOutBuffer,
    uint nOutBufferSize,
    [Optional] ref uint lpBytesReturned,
    [Optional] IntPtr lpOverlapped);
    [DllImport("kernel32.dll", SetLastError = true)]
    public static extern bool DeviceIoControl(
    IntPtr hDevice,
    uint dwIoControlCode,
    IntPtr lpInBuffer,
    uint nInBufferSize,
    [Optional] [Out] IntPtr lpOutBuffer,
    uint nOutBufferSize,
    [Optional] ref uint lpBytesReturned,
    [Optional] IntPtr lpOverlapped);
    [StructLayout(LayoutKind.Sequential)]
    public struct DRIVE_LAYOUT_INFORMATION_EX
    public PARTITION_STYLE PartitionStyle;
    public int PartitionCount;
    public DRIVE_LAYOUT_INFORMATION_UNION DriveLayoutInformatiton;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 0x16)]
    public PARTITION_INFORMATION_EX[] PartitionEntry;
    [StructLayout(LayoutKind.Sequential)]
    public struct PARTITION_INFORMATION_EX
    [MarshalAs(UnmanagedType.U4)]
    public PARTITION_STYLE PartitionStyle;
    public long StartingOffset;
    public long PartitionLength;
    public int PartitionNumber;
    public bool RewritePartition;
    public PARTITION_INFORMATION_MBR Mbr;
    public PARTITION_INFORMATION_GPT Gpt;
    [StructLayout(LayoutKind.Sequential)]
    public struct PARTITION_INFORMATION_MBR
    public byte PartitionType;
    [MarshalAs(UnmanagedType.U1)]
    public bool BootIndicator;
    [MarshalAs(UnmanagedType.U1)]
    public bool RecognizedPartition;
    public uint HiddenSectors;
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct PARTITION_INFORMATION_GPT
    public Guid PartitionType;
    public Guid PartitionId;
    [MarshalAs(UnmanagedType.U8)]
    public EFIPartitionAttributes Attributes;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 36)]
    public string Name;
    [Flags]
    public enum EFIPartitionAttributes : ulong
    GPT_ATTRIBUTE_PLATFORM_REQUIRED = 0x0000000000000001,
    LegacyBIOSBootable = 0x0000000000000004,
    GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER = 0x8000000000000000,
    GPT_BASIC_DATA_ATTRIBUTE_HIDDEN = 0x4000000000000000,
    GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY = 0x2000000000000000,
    GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY = 0x1000000000000000
    [StructLayout(LayoutKind.Explicit)]
    public struct DRIVE_LAYOUT_INFORMATION_UNION
    [FieldOffset(0)]
    public DRIVE_LAYOUT_INFORMATION_MBR Mbr;
    [FieldOffset(0)]
    public DRIVE_LAYOUT_INFORMATION_GPT Gpt;
    [StructLayout(LayoutKind.Sequential)]
    public struct DRIVE_LAYOUT_INFORMATION_GPT
    public Guid DiskId;
    public long StartingUsableOffset;
    public long UsableLength;
    public int MaxPartitionCount;
    [StructLayout(LayoutKind.Sequential)]
    public struct DRIVE_LAYOUT_INFORMATION_MBR
    public uint Signature;
    public enum PARTITION_STYLE : int
    MasterBootRecord = 0,
    GuidPartitionTable = 1,
    Raw = 2

    Hello,
    in the links below you can found many informations to help you:
    https://msdn.microsoft.com/en-us/library/windows/desktop/aa365730(v=vs.85).aspx
    http://www.codeproject.com/Articles/696388/Recover-Data-From-Corrupted-Drives-File-Systems-FA
    http://www.functionx.com/vcsharp/fileprocessing/drives.htm
    http://forums.codeguru.com/showthread.php?548305-partitioning-USB-Falsh-drive
    http://forums.codeguru.com/showthread.php?548169-USB-Flash-drive-Partitioning

  • How can I put more than One ComboBox in the Driving Frame of a Frame Driver

    Hi,
    I am working with a Frame Driver and I want that in the Driving Frame put more than one ComboBox to filter the report, for example, I want to put one combobox for City, another for Year, and another for Month, and when the user select the City, Year and Month and do click in Submit button, then in the Target Frame appears the information for those filters.
    Does anybody know how to do that?
    Thanks a lot.
    Bye,

    Hi,
    It is not possible to have more than one combo in the source frame. This is because frame drivers can take only
    two columns in the sql query, one is the display value and the other the return value.
    Thanks,
    Sharmila

  • I keep my library on an external hard drive 4TB.  It's full.  Can I use more than one hard drive to keep my library on?

    I keep my iTunes library on an external hard drive 4TB.  It's full.  Can I use more than one hard drive to keep my library on? Like two 4TB next to each other.

    Create a concatenated disk set
    Increase storage space with a concatenated RAID set (also called “Just a Bunch of Disks” or JBOD). If you need one large disk, but you have only several smaller disks, you can create a concatenated disk set to use several small disks as one large disk.
    Open Disk Utility, in the Utilities folder in Launchpad.
    Select one of the disks that you want in the set, and then click RAID.
    Click Add (+), and type a name for the RAID set.
    Choose a format from the Format pop-up menu. Usually you’ll choose the Mac OS Extended (Journaled) format.
    Choose Concatenated Disk Set from the RAID Type pop-up menu.
    Drag the disks you want to add to the set to the list on the right.
    Click Create.
    Exerpt from:
    Disk Utility 12.x: Create a RAID set - Apple - Support
    Note that the biggest CON to concatenated RAID configurations is vulnerability to volume failure. If either disk fails, the whole volume fails. If you choose this option, I would highly recommend backing up your music to a cloud service. There are very cheap per GB/storage, and some of the most reputable actually offer unlimited storage:
    Five Best Cloud Storage Providers - Lifehacker

  • Can I use a USB hub to connect more than 1 hard drive/flash drive device to the EA4500?

    Can I use a USB hub to connect more than 1 hard drive/flash drive device to the EA4500?

    That's not possible, it was designed to handle one device at a time. 
    I don't work for Cisco. I'm just here to help.

  • Can iTunes utilize more than one external hard drive at once?

    A couple of years ago we had the bright idea to get a mac mini with an external hard drive and load it up with movies and such, so when we wanted to watch a tv show or movie, we could just scroll through the titles and pick without having to deal with the actual DVD (the mini is hooked up to a flatscreen tv). Needless to say, this monster has grown to epic proportions and we have since upgraded to 2 external hard drives (totaling 5 TB), and we now use another program that utilizes both hard drives without problem.
    The issue I am having is that we bought an AppleTV tonight, and have not had any problems getting iTunes to see the movies in the "Movies" External HD, but the tv shows are on another External HD and they take up a little more than 345 GB of space. I kinda liked having the two drives separate, but was wondering if there was a way to make the mini think these two drives were just one? I know it is a strange question, but I can't think of a solution at this point.
    Is there a way to tell iTunes to look in two locations for content?

    I am wondering if this set-up will work if I daisy chain the external drives. My iTunes library is stored on a 1.5 TB external drive. I have about 350 GB of storage left. I have been trying to find a way to add a drive instead of replacing the drive with a larger drive. If I can daisy chain, this will allow me to add storage without losing another firewire port. I just want to make sure this all works before I attempt any changes. Thank you.

  • I have very little space left on the hard drive on my macbook, on my storage report it says "other" is taking up more than two thirds of the space on the hardrive. How can I identify what these files are?

    I have very little space left on the hard drive on my macbook, on my storage report it says "other" is taking up more than two thirds of the space on the hardrive. How can I identify what these files are?

    Hello,
    There is free software you can download that gives you a graphical image of what files are used on your hard drive. http://www.derlien.com/
    This may help you clean down your hard drive for more space.
    Best of luck

  • My hard drive has 70.93 GB available, yet when i have more than one internet tab open, i have to force quit google chrome because 'there is no more available application memory'. How can I solve this? I have a 2009 macbook pro running on 10.6.8.

    My hard drive has 70.93 GB available, yet when i have more than one internet tab open, i have to force quit google chrome because 'there is no more available application memory'. How can I solve this? I have a 2009 macbook pro running on 10.6.8. I have tried updating to mavericks through the mac app store but after it downloading for a day i got an error message saying there was a problem with the download. The same thing happens if i try to update itunes or the mac app store. After research, i have also tried repairing disk permissions, but every time they do get repaired the 'repair' button still appears, i'm not sure if it's because it was unable to repair the initial problems or if it just keeps detecting new ones.

    2 GBs is a minimum in which you can do many things, but not concurrently. Be very careful to not install third-party add-ons, limit the number of applications you choose to enter in Login Items, run as few applications concurrently as you demand.
    I would consider adding more RAM to your computer. Your model supports 8 GBs, so I would install that.

  • External Hard Drive(ERROR CODE 0) .DMG Back Up Issues. How to get more than 4gbs in .DMG back ups.

    I am currently using a my external hard drive for my late 2009 Mac Mini, my brothers MBP and my sisters HP laptop. I have a Western Digital My Passport 1T external Hard Drive to back up all are information. I formatted it to work on mac and pc and its on the "MS-DOS(FAT) setup at the momment. Im trying to back up DMG files from my HDD hard drive in my computer to the External Hard Drive to pass them onto my brother. I understand the whole part of me getting the "Error Code 0" where i can only put 4gbs of storage for that. I wanted to no is there a way for me to format my external hard drive for it to work on a Mac and a PC but for me to also transfer my .dmg files with more than 4gbs of that storage to my external hard drive?
    p.s Im running on OSX 10.6.8 and the DMG files are alittle more than 4 gbs. From 5-10gbs. Thank you for all the replys. It helps me out and others in the Apple community out!

    Hi, Steve. Your proposed procedure is just fine until you get to this point:
    ...reformat the WD to be Mac friendly *and reformat in FAT32* ...
    Reformatting the newly-reformatted Mac-friendly drive as FAT32 will, as you say, simply put you back where you were before, but with your data on a different drive. Omit that step, and you'll have a Mac-friendly drive that you can copy your data back onto.
    If you normally work with files exceeding 4GB in size, you won't want any hard drive in FAT32 format. If for some reason you'd like all your external drives in NTFS format, download and install the NTFS-3G driver, which will enable your Mac to read *and write to* that disk format.

  • I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect to my MacBook it erases everything on had on there. Can someone please help with this problem?

    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.

    dwgar1322 wrote:
    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.
    Yes, you have WD software installed  REMOVE IT !! 
    WD has warned its customers about their huge mistake that their software doesnt work on Mavericks and causes data loss.
    (also dont use WD drives anymore)
    Read all about it here:
    https://discussions.apple.com/thread/5475136?start=255&tstart=0
    See their website on removing the destructive WD software here:
    http://community.wd.com/t5/External-Drives-for-Mac/External-Drives-for-Mac-Exper iencing-Data-Loss-with-Maverick-OS/td-p/613775
    Western Digital External Hard Drives Experiencing Data Loss On OS X Mavericks
    http://www.cultofmac.com/252826/western-digital-external-hard-drives-experiencin g-data-loss-on-os-x-mavericks/

  • I am trying to copy more or less 30G from my MacbookPro to an external hard drive and it is stuck in the "preparing to copy" step. But that for more than one hour. What should I do to make it faster? Thanks a lot in advance!

    I am trying to copy more or less 30G from my MacbookPro to an external hard drive and it is stuck in the "preparing to copy" step. But that for more than one hour. What should I do to make it faster? Thanks a lot in advance!

    Thanks Shootist007, by blockd files I mean files that I have changed to blocked and when I tried to move then for the first time, I had to unblock again. I am trying to backup my pictures, my songs and other files like word documents and excel tables. First I put all of them as blocked, what caused the first problems on trying to move them. Then, I've unchecked the block option and if I try to move one by one, there is no problem. The issue is to move all together, because it gets stuck in the preparing to copy files step. Anyway, if I cannot do all by once, I'll do it one by one, event though that was not suposed to happen if we are talking about technology, right? Anyway, I thank you again for trying to help me!

  • Why does Boot Camp Assistant already think I have more than one partition on my hard drive?

    Greetings...
    I'm surprised I've found no remedy for this problem in my searches so far. My symptom is that when I run the Boot Camp Assistant app, I get the following error message:
    "The startup disk cannot be partitioned or restored to a single partition." The instructions that are provided along with the error message are: "Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again."
    When I try to follow the instructions, I see that Disk Utility shows my drive as having a single partition. Nevertheless, I've backed up my Macintosh HD volume, re-artitioned the drive into a single Mac OS Extended (Journaled) volume (once using the Snow Leopard Installation disk and once using Drive Genius 3), and restored my Macintosh HD volume. After all that, I still get the same error message. I even defragged my hard drive, which seems to have helped some users I've read about, but it hasn't helped me.
    Something worth noting is that I recently upgraded to a bigger internal hard drive, and before doing so, I deleted the Boot Camp volume. I innocently thought I'd just do a fresh install sometime after replacing the hard drive, but hindsight tells me that I might have fallen victim to my own ignorance.
    Is there a value stored in a register somewhere that's telling my OS that I have more than one partition when I really don't? Can someone out there help me do battle against my ignorance?
    I'd be grateful for any help that can be sent my way...

    I used DG3 to initialize the HD, which essentially erases the disk if I understand correctly. I haven't used Superduper before, so perhaps that's worth looking into.
    I did mentioned the use of DG3 to ensure that I had a single disk partition. I guess the restore from a clone or Time Machine was implied...
    ;o)
    Thanks for putting some effort into helping me. I'll look at Superduper and let you know if that gets me anywhere...

  • Why does Boot Camp think I have more than one partition on my hard drive?

    I'm surprised I'm finding no remedy for this problem in my searches so far. My symptom is that when I run the Boot Camp Assistant app, I get the following error message:
    "The startup disk cannot be partitioned or restored to a single partition." The instructions that are provided along with the error message are: "Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again."
    When I try to follow the instructions, I see that Disk Utility shows my drive as having a single partition. Nevertheless, I've backed up my Macintosh HD volume, re-artitioned the drive into a single Mac OS Extended (Journaled) volume (once using the Snow Leopard Installation disk and once using Drive Genius 3), and restored my Macintosh HD volume. After all that, I still get the same error message. I even defragged my hard drive, which seems to have helped some users I've read about, but it hasn't helped me.
    Something worth noting is that I recently upgraded to a bigger internal hard drive, and before doing so, I deleted the Boot Camp volume. I innocently thought I'd just do a fresh install sometime after replacing the hard drive, but hindsight tells me that I might have fallen victim to my own ignorance.
    Is there a value stored in a register somewhere that's telling my OS that I have more than one partition when I really don't? Can someone out there help me do battle against my ignorance?
    I'd be grateful for any help that can be sent my way...

    Your welcome and good luck finding the solution. BTW as a newbie you benefit from:
    Switch 101 & Mac 101.
    Also you may want to reassess to see if you really need Windows on your computer. Remember if you install it you have all the issues every Windows users has to deal with. When I switched almost 4  years ago I installed Windows too but now I only turn it on to see if it still works. Of course your situation is different you may have proprietary software only designed for Windows and have to have it installed.

  • Remaining hard drive space more than actual drive capacity!

    I have a retina macbook pro, and installed mountain lion so not sure which forum to put this post in.
    I guess posting on Mountain Lion might be better.
    My drive says 548GB available on my finder window.
    I actually only have 170GB left based on my About My Mac.
    The funny thinh is that my flash drive is only 500GB!!!
    So why is this happening? Anything I can do to fix it?

    That's more than a bit odd. 
    You may get different figures from the Finder vs. Disk Utility and the Storage display, because of local snapshots, but none ought to show that.
    Select the HD and click on Get Info. See if the results agree.

  • Using more than one external drive with apple tv and itunes

    I've searched the forums and haven't found a clear answer for this. Is it possible to use two seperate drives for the itunes library? I've already filled up my external firewire drive and would like to get another one.
    I've read in several places that people are doing this, but haven't found clear instructions on how its done.
    Much thanks!
    Brown.Recluse

    I don't think you can have more then one folder designated as you itunes library folder, so you can not have more then one drive for your library folder. However you can use more than one drive for you content. I have 6 drives that I use right now. I store the movies and tv shows on those drives. I drag a movie into then library tab in itunes and it just links itunes to the path of the movie. To do this however you have to unclick a option in itunes. It is the menu that you tell the path to you library, you have to unclick “copy to your library” not sure if this is the exact name of this. If you don't do this it will try to copy the movie you dragged in instead of linking it. I actually have nothing in my Itunes library folder. You can also do this with purchased content as well. Just move the purchase content to a drive of your choice from the itunes library. Delete it from itunes. Then drag it into itunes from the new drive. I hope this all makes sense, let me know if you have any other questions.

  • Sol 2.6 (Intel) install won't recognize more than 8GB of my hard drive

    <also posted under the 'Intel platform' topic>
    I am trying furiously to install Sol 2.6 on a Dell PC that has a 40GB hard drive. I DOS Fdisk to create one huge partition, which fdisk makes active. When I get to "customize fdisk Partitions for disk" in the
    install program, it shows me:
    1 Other 39070
    2 <unused>
    3 <unused>
    4 <unused>
    Capacity: 8001 MB
    Alocated: 39079 MB
    Rounding error: -31078 MB
    Free: 0 MB
    To create partitions, it forces you to delete the "Other" partition first. When I do this, Solaris declares that my disk is now 8001 MB, not 39079 MB.
    Due to problems with installing a network card (somewhat desirable for a UNIX operating system), I have gone through this install about 30 times in the last 3 days. At least once, I think I managed to trick
    it into using the entire disk, and letting me create the large file systems I need. But I can't get back there now.
    Does anyone know how to work around this?

    I have the same problem. I can't power up any more than 3 firewire devices or my imac kicks them all off. I have 2 Lacie drives piggybacked on the 800 port and then a powered firewire hub plugged into the 400 port. I can have either another firewire external HD OR an external Cd/Dvd recorder plugged into the hub. If I try both ( or any combination of 2 firewire devices) - the imac kicks everything off firewire, both on the 800 port and the 400 port. All my devices have their own external power supply.
    This is a bummer for me. I migrated from a G5 2GB duo with 4 external HDs and an 2nd external DVD writer. My drives are 2 1Ts, a 800 GB and a 400 GB. I do a lot of photography and video editing so I really need the external space. I guess this imac really isn't a Pro model but I didn't need any more speed so I wanted to save the space and money. I think Apple should say up-front that there are significant limits to the Firewire capabilities.
    Are any of you you able to attach 4 firewire devices at one time? If so, then I guess my machine is defective! Please let me know.
    Thanks,

Maybe you are looking for

  • Help Me Choose A Dock

    I have to choose between two docks- the Ipod Universal Dock, or the Ipod Nano dock. I know that you can do more with your ipod with the universal dock, but is the Nano dock more simple to use? Tell me what you recommend.

  • Tab canvas never displayed

    Hello alll, i have just created a form with master form and tab canvas have no reason why on run time only the master block is displayed ..?!!! ================================================== Have any one some reasons...?? Regards, Abdetu..

  • Specify either address number or address handle(AM053)

    Hi Experts, We have this error when we try to create a purchase order from a purchase requisition. This problem just appears for only one User, the same purchase requisition is ok to create the PO in the rest of the user. So we donu2019t know what is

  • Extension of IDOC

    Hi Guys, I am working on IDOC Extension.. My quesry is i have 3 different structure to be extended for 3 different reciever system in PI. Based on some conditon i will select one of these 3 structure and that wil go to PI. Can we add these 3 diffrent

  • Cost Center Master Data Issue for Hierarchy

    Hi, We are building a hierarchy on Cost Center and realized that the way Master data on Cost Center is stored in SPM it's getting concatenated with Controlling Area. So CC 1234 becomes 1234_010 where 010 is a controlling area. While we understand a n