Partitioning a disk in Solaris 10

Hi,
I am new with Solaris 10, and I want to create a partition on the disk, which it has already very important data that is being backuped. I have read the documentation from sun, and it seems that the best way is with the command format and then partition.
But I have seen that is possible to do it in the System Management Console .
What do you recommend me?
And after the partition, I have to mount the file systems, again, do I?
I would appreciate all the help.
Best regards,
Juan

I don't think you can create a Solaris partition with the format command from either DOS or Windows.
Here is how you create a Solaris partition, as far as I know anyway:
1. Use Ranish PM to create Solaris partition before hand so that the installation won't create x86boot.
2. Create some free space available, and then run the installation. The process will let you create the Solaris partition along with x86boot.
3. If you don't create some free space before hand, you will have to install Solaris on other existing partition, which means whatever current operating system of yours will be erased.
-van.

Similar Messages

  • Fdisk and format show different cylinders can't use whole disk for solaris?

    Solaris 10 5/09 s10x_u7wos_08 X86
    Format did not show enough cylinders, so we can't use whole raid5 (4x 146GB) volume.
    How can we fix it? We need the full raid5 volume for our solaris.
    formatAVAILABLE DISK SELECTIONS:
    0. c2t0d0 <DEFAULT cyl 17817 alt 2 hd 255 sec 63>
    /pci@0,0/pci10de,375@f/pci108e,286@0/disk@0,0
    Specify disk (enter its number):
    fdisk outputTotal disk size is 53502 cylinders
    Cylinder size is 16065 (512 byte) blocks
    Cylinders
    Partition Status Type Start End Length %
    ========= ====== ============ ===== === ====== ===
    1 Active Solaris2 1 17819 17819 33
    arcconf getconfigbash-3.00# ./arcconf getconfig 1
    Controllers found: 1
    Controller information
    Controller Status : Optimal
    Channel description : SAS/SATA
    Controller Model : Sun STK RAID INT
    Controller Serial Number : 00919AA0670
    Physical Slot : 0
    Temperature : 71 C/ 159 F (Normal)
    Installed memory : 256 MB
    Copyback : Disabled
    Background consistency check : Disabled
    Automatic Failover : Enabled
    Global task priority : High
    Defunct disk drive count : 0
    Logical devices/Failed/Degraded : 1/0/0
    Controller Version Information
    BIOS : 5.2-0 (16732)
    Firmware : 5.2-0 (16732)
    Driver : 2.2-2 (1)
    Boot Flash : 5.2-0 (16732)
    Controller Battery Information
    Status : Optimal
    Over temperature : No
    Capacity remaining : 99 percent
    Time remaining (at current draw) : 3 days, 1 hours, 11 minutes
    Logical device information
    Logical device number 0
    Logical device name : v
    RAID level : 5
    Status of logical device : Optimal
    Size : 419690 MB
    Stripe-unit size : 256 KB
    Read-cache mode : Enabled
    Write-cache mode : Enabled (write-back)
    Write-cache setting : Enabled (write-back)
    Partitioned : Yes
    Protected by Hot-Spare : No
    Bootable : Yes
    Failed stripes : No
    Logical device segment information
    Segment 0 : Present (0,0) 000849E5RY9A P4X5RY9A
    Segment 1 : Present (0,1) 000849E4TX4A P4X4TX4A
    Segment 2 : Present (0,2) 000849E56KAA P4X56KAA
    Segment 3 : Present (0,3) 000849E5S0GA P4X5S0GA
    Physical Device information
    Device #0 - 3
    Device is a Hard drive
    State : Online
    Supported : Yes
    Transfer Speed : SAS 3.0 Gb/s
    Reported Channel,Device : 0,0
    Reported Location : Enclosure 0, Slot 0
    Reported ESD : 2,0
    Vendor : HITACHI
    Model : H101414SCSUN146G
    Firmware : SA25
    Serial number : 000849E5RY9A P4X5RY9A
    World-wide name : 5000CCA0007B2BFF
    Size : 140009 MB
    Write Cache : Disabled (write-through)
    FRU : None
    S.M.A.R.T. : No
    Device #4
    Device is an Enclosure services device
    Reported Channel,Device : 2,0
    Enclosure ID : 0
    Type : SES2
    Vendor : ADAPTEC
    Model : Virtual SGPIO
    Firmware : 0001
    Status of Enclosure services device
    Temperature : Normal
    Device #5
    Device is an Enclosure services device
    Reported Channel,Device : 2,1
    Enclosure ID : 1
    Type : SES2
    Vendor : ADAPTEC
    Model : Virtual SGPIO
    Firmware : 0001
    Status of Enclosure services device
    Temperature : Normal

    astra666 wrote:
    Hi Smart71,
    I know it sounds complicated, but it really isn't.
    You need to select the option to manually edit the disk label
    when you install solaris.
    Your problem is that you have assigned 73 GB for your / (root)
    and 63 GB for your swap. That's not the problem that I see. The problem is that the Solaris partition (and therefore the Solaris VTOC label inside) is only for 136GB. But the actual underlying storage is 409GB. So the entire partition and the VTOC have to be rewritten.
    You only have 2 options. Either re-install Solaris, of re-partition the disk.
    If you don't have a spare disk to copy root to and you want to use
    the whole disk, with just one / root partition, you will need to shrink /swap
    create another slice to copy root to temporarily, and then re-partition your disk. Agreed reinstalling is easiest. But moving slices around will not let you change the VTOC size.
    eg:
    boot from CD into single user mode.
    partition the disk so that eg:
    swap is 3 GB. eg: ( from cylinder 1 to cylinder 400 )
    partition 3 is 7 GB ( from cylinder 401 to cylinder 1318 )
    ( if 7 GB is enough to hold all your / data )
    write the disk label out
    newfs partition 3
    mount / on /a
    mount partition 3 on /mnt
    Copy everything from /a to /mnt eg:
    rsync -vaxH /a /mnt
    or
    find /a -xdev -print | cpio -pdam /mnt
    umount /a and /mnt
    re partition the disk so that / takes all the free space.If that were your goal, you wouldn't have to move anything. Just repartition and use 'growfs' on the root filesystem directly (while booted from CD).
    eg ( starting at cylinder 1319 to cylinder 17816 )
    write disk label out
    newfs part 0 for /
    mount / on /a and part 3 on /mnt
    copy everything back from /mnt to /a
    Check /a to make sure everything is there.
    umount /a and /mnt
    re partition the disk to make /swap 10 GB
    ( starting at cylinder 1 to cylinder 1318 )
    write disk label out.
    And that's it.
    The disk you are working on is 17816 cylinders in size.
    yet down the bottom you say that :
    Total disk size is 53502 cylinders
    That tells me there are 4 disks in the raid 5 set, and that
    you have probably been presented with 3 x 136 GB disks.
    That means that you should have 2 x 136 GB disks free.
    Use one of these to copy your /root to. and then
    re-partition your first disk and copy data back.
    Or partition another disk correctly, write a boot block to it
    Copy your root data to it, and boot from it.The entire disk is presented to the machine (as seen in the fdisk output), but the Solaris partition is only using the smaller portion of it. You can't create a second Solaris partition and use it at the same time, either. Only one Solaris partition can be used at a time.
    Darren

  • Problem encountered installing new disk on Solaris VMware

    Hi Guys,
    I'm trying my first attempt to create a new disk on solaris 10 filesystem but having a few issues mounting disk. i've been following instructions on google searches but now am stuck and really some expert advice.
    Details:
    Host OS: Windows Vista
    Gues OS: Solaris 10 64x UFS filesystem
    VMware Workstation: Ver 6:00
    Steps undertook:
    1) Shut down the VM; Edit the VMware configuration: Select Virtual Machines -> Settings; Added new hard disk device of 20GB (SCSI:0:0)
    2) Booted Solaris VM
    3)
    *# format*
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0d0 <DEFAULT cyl 2607 alt 2 hd 255 sec 63>
    /pci@0,0/pci-ide@7,1/ide@0/cmdk@0,0
    1. c2t0d0 <DEFAULT cyl 2607 alt 2 hd 255 sec 63>
    /pci@0,0/pci1000,30@10/sd@0,0
    Specify disk (enter its number): 1
    selecting c2t0d0
    [disk formatted]
    4)
    format> p
    PARTITION MENU:
    0 - change `0' partition
    1 - change `1' partition
    2 - change `2' partition
    3 - change `3' partition
    4 - change `4' partition
    5 - change `5' partition
    6 - change `6' partition
    7 - change `7' partition
    select - select a predefined table
    modify - modify a predefined partition table
    name - name the current table
    print - display the current table
    label - write partition map and label to the disk
    !<cmd> - execute <cmd>, then return
    quit
    partition> p
    Current partition table (original):
    Total disk cylinders available: 2607 + 2 (reserved cylinders)
    Part Tag Flag Cylinders Size Blocks
    0 unassigned wm 0 0 (0/0/0) 0
    1 unassigned wm 0 0 (0/0/0) 0
    2 backup wu 0 - 2606 19.97GB (2607/0/0) 41881455
    3 unassigned wm 0 0 (0/0/0) 0
    4 unassigned wm 0 0 (0/0/0) 0
    5 unassigned wm 0 0 (0/0/0) 0
    6 unassigned wm 0 0 (0/0/0) 0
    7 unassigned wm 0 0 (0/0/0) 0
    8 boot wu 0 - 0 7.84MB (1/0/0) 16065
    9 unassigned wm 0 0 (0/0/0) 0
    5)
    partition> 0
    Part Tag Flag Cylinders Size Blocks
    0 unassigned wm 0 0 (0/0/0) 0
    Enter partition id tag[unassigned]:
    Enter partition permission flags[wm]:
    Enter new starting cyl[0]: 3
    Enter partition size[0b, 0c, 3e, 0.00mb, 0.00gb]: 2604c
    partition> p
    Current partition table (unnamed):
    Total disk cylinders available: 2607 + 2 (reserved cylinders)
    Part Tag Flag Cylinders Size Blocks
    0 unassigned wm 3 - 2606 19.95GB (2604/0/0) 41833260
    1 unassigned wm 0 0 (0/0/0) 0
    2 backup wu 0 - 2606 19.97GB (2607/0/0) 41881455
    3 unassigned wm 0 0 (0/0/0) 0
    4 unassigned wm 0 0 (0/0/0) 0
    5 unassigned wm 0 0 (0/0/0) 0
    6 unassigned wm 0 0 (0/0/0) 0
    7 unassigned wm 0 0 (0/0/0) 0
    8 boot wu 0 - 0 7.84MB (1/0/0) 16065
    9 unassigned wm 0 0 (0/0/0) 0
    partition> label
    Ready to label disk, continue? y
    partition> q
    format> q
    6)
    *# newfs /dev/dsk/c0d0s2*
    newfs: construct a new file system /dev/rdsk/c0d0s2: (y/n)? y
    Warning: inode blocks/cyl group (431) >= data blocks (246) in last
    cylinder group. This implies 3950 sector(s) cannot be allocated.
    /dev/rdsk/c0d0s2: 41877504 sectors in 6816 cylinders of 48 tracks, 128 sectors
    20448.0MB in 426 cyl groups (16 c/g, 48.00MB/g, 5824 i/g)
    super-block backups (for fsck -F ufs -o b=#) at:
    32, 98464, 196896, 295328, 393760, 492192, 590624, 689056, 787488, 885920,
    Initializing cylinder groups:
    super-block backups for last 10 cylinder groups at:
    40898592, 40997024, 41095456, 41193888, 41292320, 41390752, 41489184,
    41587616, 41686048, 41784480
    7)
    *# mountall*
    mount: /tmp is already mounted or swap is busy
    mount: /dev/dsk/c0d0s7 is already mounted or /export/home is busy
    8)
    *# df -h*
    Filesystem size used avail capacity Mounted on
    /dev/dsk/c0d0s0 6.9G 5.6G 1.2G 83% /
    /devices 0K 0K 0K 0% /devices
    ctfs 0K 0K 0K 0% /system/contract
    proc 0K 0K 0K 0% /proc
    mnttab 0K 0K 0K 0% /etc/mnttab
    swap 1.1G 968K 1.1G 1% /etc/svc/volatile
    objfs 0K 0K 0K 0% /system/object
    sharefs 0K 0K 0K 0% /etc/dfs/sharetab
    fd 0K 0K 0K 0% /dev/fd
    swap 1.1G 40K 1.1G 1% /tmp
    swap 1.1G 28K 1.1G 1% /var/run
    /dev/dsk/c0d0s7 12G 1.5G 11G 13% /export/home
    Where am i going wrong? I dont see new mount for 20GB new disk that i created?
    Please advice/help
    Thanks!

    Thanks for your response but still no luck??
    # vi vfstab
    "vfstab" 13 lines, 457 characters
    #device device mount FS fsck mount mount
    #to mount to fsck point type pass at boot options
    fd - /dev/fd fd - no -
    /proc - /proc proc - no -
    /dev/dsk/c0d0s1 - - swap - no -
    /dev/dsk/c0d0s0 /dev/rdsk/c0d0s0 / ufs 1 no -
    */dev/dsk/c0d0s2 /dev/rdsk/c0d0s2 /u01 ufs 1 yes -*
    /dev/dsk/c0d0s7 /dev/rdsk/c0d0s7 /export/home ufs 2 yes
    /devices - /devices devfs - no -
    sharefs - /etc/dfs/sharetab sharefs - no -
    ctfs - /system/contract ctfs - no -
    objfs - /system/object objfs - no -
    swap - /tmp tmpfs - yes -
    # mountall
    /dev/rdsk/c0d0s2 is clean
    mount: Nonexistent mount point: /u01
    mount: /tmp is already mounted or swap is busy
    mount: /dev/dsk/c0d0s7 is already mounted or /export/home is busy

  • ASM with Oracle10 cannot see disks on Solaris

    Hi,
    I just installed Oracle10g on Solaris-64 and first thing I tried was to create database using ASM. Seems, ASM cannot find any disks though all 6 of them are available. I tried different ways, but there is no result so far. Any idea what am I doing wrong?
    -Dmitri

    Ooh, ooh. I did. :)
    I had the same problem. Permissions and ownership were set correctly. The path to the disk was set. I could “see’ and touch the disk as the oracle user. But, dbca saw nothing. Connecting to the adm instance and using the gui to create the diskgroup failed to see the disk. After MUCH searching on Oracle’s sites (otn & metalink) I found this note “Create Partitions in Solaris and add them as disks in ASM 271621.1” metalink. It is not really clear way there needs to be “500 MB” in slice 0 on a Solaris partition, I tried it at 10MB and found it worked with either slice 4 (the recommendation from the note) or slice 6 (the one that almost everyone working with Solaris [other than this note’s author] uses). The size may be much smaller. Oracle must be doing something in slice 0, but I don’t know what it is.
    Anyway, after partitioning the disk and reserving 10MB in slice 0, the disk did show up in dbca. I am about to reinstall Oracle and try from the beginning.
    My next challenge is how do I place the control files and online redo logs on a different diskgroup than the main database. I did not see a way in dbca to manage this.
    HTH
    James

  • I am setting up a time machine backup to a external Hard drive.  I want to backup by Mac book Pro running OSX 10.8.5. I would like to Partition the disk and use one partition for Time machine backups and the other for my Lightroom backups. How to do this?

    I want to create a two partition disk. One partition for time machine, the other for Lightroom backup. Currently Time Machine is using the entire drive and it is doing the intial encryption and is about 29% complete after two days.  I've decided that I want to turn encryption off and partition the disk. So I do I start over?

    With the external drive attached, open Finder>Applications>Utilities>Disk Utility.  Select the external drive from the list in the left side panel of the DU window.  In the main window panel, click Partition in the buttons top center of that panel.
    Select the number of partitions you want and adjust their sizes.
    For the first partition, click to highlight the partition, then select the format, Mac OS Extended (Journaled) and then the partition table as GUID [both of those are the defaults].  Click Apply and it will ask to confirm and erase and format that partion...oh, give the partition a name, like Backup. 
    Then repeat those steps for the second partition..and remember to name it...something like Lightroom.
    Close Disk Utilitty and you are ready to send TM to the one partition, and do your backup of Lightroom to the second partition.

  • I can't delete partition in disk utility, it keeps telling me that "the changes are too small"

    I previously split my disk into two different disks, however I want to combine them together again, yet i was unable to delete the second partition. I can't delete partition in disk utility, it keeps telling me that "the changes are too small"
    Plz help!!!!!!

    Make at least two complete backups of all your data. Boot from another drive and partition this one as desired. Restore the data.

  • When I restore my Mac with Time Machine and then want to partition my disk, Disk Utility always says incorrect number of extended attributes

    When I need to restore my Mac from a time machine backup and then partition my hard disk (the disk inside the computer not the time machine disk), Disk Utility always says "Incorrect Number of Extended Attributes". I then boot into Recovery HD and run disk repair. The result? "The volume Macintosh HD appears to be OK". So then I reboot into normal OS and try the partition again, still Incorrect number of extended attributes. I have even tried /sbin/fsck -fy in single-user mode but it still says the volume is ok. I have tried partition my disk in the recovery HD and it still fails.
    Can anyone please help me solve this problem?

    Try something stronger, such as DiskWarrior or TechTool Pro.
    iMac refurb (27-inch Mid 2011), OS X Mavericks (10.9.4), SL & ML, G4 450 MP w/Leopard, 9.2.2

  • Can't create a 3rd partition in Disk Utility

    Long story short I have used Boot Camp to get Windows, so I have 2 partitions. But, I need to create another partition to install another copy of Windows on it, but Disk Utility has grayed out the '+' to allow me to create a new partition. All I can do is delete the 'BOOTCAMP' partition which I don't want to do. I tried another way by going into Boot Camp Assistant and installing Windows through there. I have a bootable USB drive and I know how to install it, all that's stopping me is the partition issue.
    Any ideas?
    If it helps, I'm using a Late 2013 MacBook Pro with a 15" Retina Display, 2.5 GHz, 512 GB SSD, 16 GB RAM and a NVIDIA GT 750 M.
    Thank you for your help

    Good thing to mention that, I forgot to do that.
    Unfortunately it did not help.. The screen to remove the existing Boot Camp partition does not pop up, it just tries to create the new Boot Camp partition.
    The partition I'm trying to create it 150GB. The 50GB mentioned above was on the stock Fujitsu 250GB disk.
    Edit:
    I'm actually trying to avoid using Boot Camp Assistant.. I became to dislike the utility due to problems creating a partition on my previous HD.
    I would like to create a partition using Disk Utility and then install Windows 7 by selecting that DVD to boot from.
    Thank you for the tip though, I'll post it there as well!

  • Resized partition using Disk Utility and now Windows 7 will not boot

    Hi,
    Hopefully someone can help me!!
    I had previously used Boot Camp to install Windows 7. However, I later realised I had not given myself anywhere near enough disk space as I started using Windows for things I hadn't originally planned on using it for.
    Anyway, long story short, to solve the problem I uninstalled some applications on my Mac OSX and used Disk Utility to decrease the size of my Mac partition. My plan was then to reboot to Windows and use a Windows application to increase the size of the Windows partition. However - I coudln't even get that far.
    Upon decreasing the size of my Mac partition (succesfully) I restarted my Mac in order to boot to Windows. However, I was greeted with a message along the lines of "unable to boot to Windows please insert boot disk and press any key" (I can't remember the exact message).
    I was wondering if anyone knows of any way to restore my Windows partition, retaining all of my previously saved files on my Windows disk. It's probably a long shot, but the thought of losing everything I have been working on for the last few months is a sickening one.
    What does give me a bit of hope is that, if I click Boot Camp it seems to recognise that Windows 7 is installed as the option that appears is to uninstall it.
    Furthermore, if I view partitions in Disk Utility, a "DISK0S4" is listed. However, it's only at 20gb - if this WAS my BootCamp partition previously, it was originally at something around 60gb (I think - either way, definitely bigger than 20gb!).
    On top of this, my current Macintosh HD parition is at 260gb and with the DISK0S4 partition at 20.21gb, there seems to be some space missing... I'm hoping this is the files I've been working on over the last few months!
    Anyway, I've done some searching on the net and it *seems* that GPT fdisk *might* be my savour. I've downloaded it but have no idea how to use it and don't plan on playing about with it as I could no doubt do some real damage. If it is likely to solve my problem however, I'm certainly more than capable of being walked through what I need to do.
    Please help!

    Hi Christopher,
    I also have problems with Windows rebooting after partition resize trying to reduce Mac side and increase Windows side. I do not see the BootCamp partition labelled as such while running disk utility. The Windows partition shows up when I boot up while pressing the ALT key. However, when I try to run Windows, it says " error loading operatig system".
    I also followed instruction and went through to run gdisk successfully. Results towards the end.
    What can be done? Windows still does not boot and It shows ? Suspicious MBR at sector 0.
    Below is information based on typical questions you ask.
    diskutil list
    /dev/disk0   #:                       TYPE NAME                    SIZE        IDENTIFIER
       0:              GUID_partition_scheme                        *120.0 GB     disk0
       1:                                           EFI                         209.7 MB     disk0s1
       2:                         Apple_HFS Macintosh HD            78.5 GB     disk0s2
       3:                       Apple_Boot Recovery HD             650.0 MB     disk0s3
       4:                   Microsoft Basic Data                         31.7 GB      disk0s4  
    sudo gpt -r -vv show disk0
    gpt show: disk0: mediasize=120034123776; sectorsize=512; blocks=234441648
    gpt show: disk0: Suspicious MBR at sector 0
    gpt show: disk0: Pri GPT at sector 1
    gpt show: disk0: Sec GPT at sector 234441647
          start       size            index       contents
              0          1                             MBR
              1          1                             Pri GPT header
              2         32                            Pri GPT table
             34          6        
             40     409600           1            GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
         409640  153240016      2            GPT part - 48465300-0000-11AA-AA11-00306543ECAC
      153649656    1269544     3            GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      154919200   17628896        
      172548096   61892608    4            GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      234440704        911        
      234441615         32                       Sec GPT table
      234441647          1                        Sec GPT header
    sudo fdisk /dev/disk0
    Disk: /dev/disk0 geometry: 14593/255/63 [234441648 sectors]Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE    0   0   2 - 1023 254  63 [         1 -  172548095] <Unknown ID>
    *2: 07 1023 254  63 - 1023 254  63 [ 172548096 -   61892608] HPFS/QNX/AUX
    3: 00    0   0   0 -    0   0   0 [         0 -          0] unused     
    4: 00    0   0   0 -    0   0   0 [         0 -          0] unused  
    sudo gdisk /dev/disk0
    GPT fdisk (gdisk) version 0.8.7
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Partition table scan:
      MBR: hybrid
      BSD: not present
      APM: not present
      GPT: present
    Found valid GPT with hybrid MBR; using GPT.
    Command (? for help): r
    Recovery/transformation command (? for help): h
    WARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,
    just hit the Enter key at the below prompt and your MBR partition table will
    be untouched.
    Type from one to three GPT partition numbers, separated by spaces, to be
    added to the hybrid MBR, in sequence: 4
    Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? (Y/N): y
    Creating entry for GPT partition #4 (MBR partition #2)
    Enter an MBR hex code (default 07):
    Set the bootable flag? (Y/N): y
    Unused partition space(s) found. Use one to protect more partitions? (Y/N): n
    Recovery/transformation command (? for help): o
    Disk size is 234441648 sectors (111.8 GiB)
    MBR disk identifier: "DELETED INFO"
    MBR partitions:
    Number  Boot  Start Sector   End Sector   Status      Code
       1                               1    172548095   primary     0xEE
       2           *     172548096    234440703   primary     0x07
    Recovery/transformation command (? for help): w
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/disk2.
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Warning: The kernel may continue to use old or deleted partitions.
    You should reboot or remove the drive.
    The operation has completed successfully.

  • This disk doesn't contain an EFI system partition. If you want to start up your computer with this disk or include it in a RAID set, back up your data and partition this disk.

    As stated above. I get this when I try to resize my HD. Was having issues with BootCamp so I removed it and got this.
    This disk doesn’t contain an EFI system partition. If you want to start up your computer with this disk or include it in a RAID set, back up your data and partition this disk.

    the same problem...
    any help?

  • Can´t install windows 8.1 because boot camp can't partition the disk. I´ve follow many tips but they did´t work

    I can´t install windows 8.1 because boot camp can't partition the disk. I´ve follow many tips but they did´t work (backup, reinstall os, erase space, etc.)
    Macbook pro retina
    os x yosemite 10.10.2
    Thanks

    There are several possibilities.
    1. You do not have contiguous free disk space.
    2. BCA has failed, or you may have a Fusion drive which is causing problems.
    3. You have incorrect permissions on the disk.
    4. Can you boot in OS X Safe Mode - OS X: What is Safe Boot, Safe Mode? - Apple Support?

  • Odd problem with partitioning the disk-- it says it needs to be a single Mac OS Extended (Journaled) volume, but it already is? (Screenshots in post)

    I have a 1 TB Macbook Pro running Mavericks.
    My disk is a single-volume...
    Here is the information on my disk:
    And I'm trying to use boot camp assist to partition my disk, like this:
    But when I do, I get this error message:
    "The disk cannot be partitioned because some files cannot be moved. 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."
    It already is a single Mac OS Extended journaled volume.  Right? Here is an image from Disk Utility:
    Any ideas?

    Hey there!
    It sounds like you are unable to install BootCamp due to an error that your some files cannot be moved, and to format your disk as a single volume, but you have confirmed that it already is. I would verify and repair your disk permissions with the following article next, if you have already restarted your computer and tried again:
    Disk Utility 12.x: Repair disk permissions
    http://support.apple.com/kb/ph5821
    Choose Apple menu > Software Update to make sure you have the latest version of Mac OS X.Software updates sometimes change a file’s permissions to improve security, so updating your software can solve some permissions problems.
    Open Disk Utility, in the Utilities folder in Launchpad.
    Select the disk you want to check.You can verify or repair permissions only on a disk with Mac OS X v10.7 Lion installed.
    Click First Aid.
    Do one of the following:
    Click Verify Disk Permissions to test permissions.
    Click Repair Disk Permissions to test and repair permissions.
    Disk Utility repairs the permissions for files installed by the Mac OS X Installer, Software Update, or an Apple software installer. It doesn’t repair permissions for your documents, your home folder, or third-party applications.
    If that does not resolve the issue, I would next verify and repair the disk with this:
    Disk Utility 12.x: Repair a disk
    http://support.apple.com/kb/PH5836
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Change partitions on disk with NTFS and Mac OS Extended

    I have a 1.5TB external drive formatted with 3 equal size partitions:  1 NTFS and 2 Mac OS Extended formats, each one ~500GB. I'd like to remove the NTFS partition and use the whole drive for the 2 Mac partitions.  Could I copy the NTFS data to one of the Mac partitions, then delete the NTFS partition, and then enlarge the two remaining partitions, of course without losing the information that's already on each of them?  My system is OSX 10.7.5 -- Lion.

    Purple Finch wrote:
    I have a 1.5TB external drive formatted with 3 equal size partitions:  1 NTFS and 2 Mac OS Extended formats, each one ~500GB. I'd like to remove the NTFS partition and use the whole drive for the 2 Mac partitions.  Could I copy the NTFS data to one of the Mac partitions, then delete the NTFS partition, and then enlarge the two remaining partitions, of course without losing the information that's already on each of them?  My system is OSX 10.7.5 -- Lion.
    Probably maybe, with a fair wind & some luck…
    It depends on a few factors, such as the order of the partitions on disk, how the disk was originally created, what partition scheme it uses (e.g. GUID, Master boot record…). It also depends on if all that data can be crammed into an existing partition.
    I doubt you want to hear this, but it is the safest option… backup the data on every partition before you begin modifying the disk structure.
    You have nothing to lose with solid backups on another disk, disconnect it to be extra cautious.
    If this disk fails to repartition or you find that the 2 remaining partitions won't not expand to fill all the free space (it just happens sometimes) you can create a new partition table & start over.
    Disk Utility may also complain when you try to resize or delete a partition - sometimes it waits until the last button is pressed to begin a task only to tell you something isn't possible!
    I wouldn't attempt this 'copy, delete, resize' unless I could afford to lose all the data on this disk, it should work, but there is too much room for error.

  • How to completely erase ( no recovery partition remaining) a lion partition with disk utilities on lion install disk?

    Where in a  lion install disc made from the installer can I find a bootable file with disk utilities?
    I downloaded lion a few hours ago and installed.
    I have 4 large hardrives (1.5TB) arranged in 8 partitions to allow me to work on a varied group of projects. I have some projects that need to be worked on with software running under Tiger, some with software that runs under leopard, some with snow leopard, and now Lion. I own multiple copies of software and multiple user pack system install discs.
    On a regular basis, I back up chunks of work on projects to external discs, and special backup areas on one of my drives. I don't like using time machine because I am running many operating environments on my mac pro and I don't ever want to be tied to one operating environment for important functionality, and I want to maximize the open space on my hard drives.
    Several partitions involve large video files. I am working on them in various versions of final cut, premiere and imovie. Because I have to use the same software versions my different clients are running, I don't want to move all the files " up" to a modern version. It would be professional suicide to stop accommodating my various clients. I say this to try to head off being told to make my clients upgrade. There are too many different clients and they are not going to replace all their equipment.
    On these volumes with video files, I often fill them up and copy off what I need to backup before I erase and do a clean install.  I also run VM Fusion and windows XP. I absolutely do not want to have a Recovery HD partition left on the drive when I erase or influencing the other partions using different OS versions on that same drive.
    Is there a bootable disc on the installer disk I just made? Can I use the disk utilities to do a low level erase on the lion volume that will remove the recovery partition?
    Can I go back to booting from Snow Leopard and erasing the Recovery partition with the drive partition that way? Will the Snow Leopard utility take out the Lion HD recovery partition?
    I am used to erasing my drives and rebuilding my machine and I believe it is the right way to use my multiple drives in my workflow. Now that I've got this invisible recovery partition, can you help me remove it and create a bootable disc that includes disk utilities?

    I assume the unix pdisk command will show you want is going on.
    You may not have a big worry.  There have always been a lot of hidden partitions. Disk Utility under 10.4.11 reports this drive has three (my now report four )  partitions, when pdisk reports that there are 15. 
    Macintosh-HD -> Applications -> Utilities -> Terminal
    Press return when done typing sudo pdisk -l
    -l include a lower case L
    The sudo command will ask for your administration password. No characters will appear when typing your password. Press return when done typing. sudo stands for super user do.  It's just like root. Be careful.
    mac $ sudo pdisk -l
    Password:
    Partition map (with 512 byte blocks) on '/dev/rdisk0'
    #:                type name                    length   base      ( size )
    1: Apple_partition_map Apple                       63 @ 1       
    2:      Apple_Driver43*Macintosh                   56 @ 64      
    3:      Apple_Driver43*Macintosh                   56 @ 120     
    4:    Apple_Driver_ATA*Macintosh                   56 @ 176     
    5:    Apple_Driver_ATA*Macintosh                   56 @ 232     
    6:      Apple_FWDriver Macintosh                  512 @ 288     
    7:  Apple_Driver_IOKit Macintosh                  512 @ 800     
    8:       Apple_Patches Patch Partition            512 @ 1312    
    9:     Apple_Bootstrap untitled                  1954 @ 149319048
    10:           Apple_HFS Apple_HFS_Untitled_1   2254440 @ 263968    (  1.1G)
    11:     Apple_UNIX_SVR2 untitled               6617188 @ 149321002 (  3.2G)
    12:           Apple_HFS Apple_HFS_Untitled_2 146538496 @ 2780552   ( 69.9G)
    13:     Apple_UNIX_SVR2 swap                    363298 @ 155938190 (177.4M)
    14:          Apple_Free Extra                   262144 @ 1824      (128.0M)
    15:          Apple_Free Extra                   262144 @ 2518408   (128.0M)
    Device block size=512, Number of Blocks=156301488 (74.5G)
    DeviceType=0x0, DeviceId=0x0
    Drivers-
    1:  23 @ 64, type=0x1
    2:  36 @ 120, type=0xffff
    3:  21 @ 176, type=0x701
    4:  34 @ 232, type=0xf8ff

  • Bootcamp - I'm trying to install windows 8 on my MBPr but getting an error when partitioning the disk. 'An error occurred while partitioning the disk'

    I'm trying to install windows 8 on my MBPr but getting an error when partitioning the disk. 'An error occurred while partitioning the disk'

    You posted your Bootcamp question in the Macbook Pro forum. Your question has been asked and answered many times in the Bootcamp forum. https://discussions.apple.com/community/windows_software/boot_camp
    When you post in the Bootcamp forum include the complete and exact error message.

Maybe you are looking for