Can an external HD be partitioned into 2: one for OSX and the other for XP?

As the topic says, i got an external HD to backup all the stuff. But since I use a desktop PC as well as my macbook everyday, it would be nice to use the HD for both of them.
If the answer is yes, what program should i use? Thanks in advance.

A couple of things to be aware of for what you want to do:
1. File size: If you want to avoid the file size limitations of FAT32, then set one partition as NTFS and one as the OS X partition. Then, if you connect the external HDD to the Mac, you'll be able to read the NTFS partition but not write to it. The Windows PC will not be able to read or write to the OS X partition. Use FAT32 and both operating systems will be able to read and write to the FAT32 partition, but file size is limited to 4GB on the FAT32 partition.
2. Access the external HDD across a network, and the format is irrelevant--you can have an OS X (HFS) partition and an NTFS partition, and both operating systems can read and write to it. The reason is the SMB protocol, which does the translations for you, on the fly. For, example, I have several Mac and PC systems on a network, sharing is enabled on each computer, and two of the computers have an external HDD (one HFS, one NTFS) connected. From any computer on the network, I can access (read and write) any file on any other computer or external HDD.

Similar Messages

  • I have duplicate pictures in "my catalog" that I believe come from two Adobe folders found under "my pictures/adobe/ one is Revel and the other is Photoshop express which preceded revel. Can I delete those two folder without causing a problem with my cata

    I have duplicate pictures in "my catalog" that I believe come from two Adobe folders found under "my pictures/adobe/ one is Revel and the other is Photoshop express which preceded revel. Can I delete those two folder without causing a problem with my catalog?

    Thanks for the links, Limnos.
    If you are willing to continue helping, here's what I found.
    Just to clarify the two iTunes folders I am refering to are:
    username-->Music-->iTunes
    HD-->iTunes
    I am presuming each location has a full set of files as outlined in the above links?
    Not all the files are in both locations. Most are.
    - The Itunes folder in my home folder does not have itunes library.xml.
    - The Itunes folder in my home folder has a subfolder called Mobile Applications (username-->Music-->iTunes--> Mobile application). The Itunes folder at the HD level also has a Mobile Application folder but it is a subfolder of Itunes Media folder (HD-->iTunes--> iTunes Media-->Mobile applications) and has no files in it.
    - I do not have an iTunes Media in the iTunes folder in my home folder.
    - also the Itunes media folder (HD-->iTunes--> iTunes Media) has subfolders by type (books, movies, itunes u, music etc...) but the iTunes Media-->Music also has some of the same subfolders ( iTunes Media-->Music-->books, iTunes Media-->Music-->Movies, iTunes Media-->Music-->iTunes U). Is this normal repetition?
    You say:
    /itunes/itunes media/ music
    but it is important to note what comes before all that.
    There is nothing as far as I can tell before that first forward slash. Since the only iTunes Media folder I have is in the iTunes folder that resides at the HD level (HD-->iTunes--> iTunes Media folder) not the iTunes folder in my home folder (username-->Music-->iTunes) , I assume that's the one that holds the music.
    Keep iTunes media folder organized and Copy files to iTunes Media folder when adding to library are both checked on
    Does that give more clarity into my problem?

  • When I open my itunes it shows me two sides one is iTunesU and the other side is Podcasts and I can't connect with iTunes.How can I fix it

    When I open my itunes it shows me two sides one is iTunesU and the other side is Podcasts and I can't connect with iTunes.How can I fix it?

    Hi emzigal,
    Thank you for using Apple Support Communities. 
    Take a look at the following article to make sure that you are not missing any steps necessary for downloading past purchases. 
    Download past purchases - Apple Support
    Cheers,
    Jeff D. 

  • Can I have two yahoo mail accounts on my iPad but only have one account push and the other fetch or manuel?

    I have two yahoo email accounts but I want my main one to push email and the other one to be manuel or even fetch, is this doable? 

    You don't know what push means.
    Push means new messages received at the incoming mail server are pushed out by the incoming mail server without the email client being used to access the account having to check the account automatically or manually which is called fetch. An account can be checked automatically without having to open the Mail app which is not push.
    Manual with the Mail app on an iOS device is not the same as manual with an email client on your computer.
    If you launch the Mail app, all email accounts will be checked for new messages even when manual is selected for an account. If manual is selected for an account, it should not be checked for new messages until to launch the Mail app.

  • Can in a form do two things :one is query and the other is upload ?

    Hi,
    I have a table with which I create a form, I want to after I had upload a file at the same time compare with a query in the form. But, the problem occur that
    I uploaded the file name cannot insert into the table. I had created insert in the Process, however, the insert OK message can see, but there is not able found the file in the table.
    Best Regards,
    Simon Wong

    Hi,
    Now, I can upload file into the table. But, I want while I upload a file and the data input in the form also save into the same table together. When I save data in the form alone it is ok, then now I only do one thing in this form. So can I do both
    of saving into the same table.
    Regards,
    Simon Wong

  • Can someone explain why one code works and the other one doesn't?

    Hi,
    I have been doing a little work with XML today and I wrote the following code which did not function properly. In short, it was as if there were elements in the NodeList that disappeared after the initial call to NodeList.getElementsByTagName("span"); The code completely drops through the for loop when I make a call to getTextContent, even though it is not a controlling variable and it does not throw an exception! I'm befuddled. The second portion of code works. For what it is worth, tidy is the HTML cleaner that's been ported to java (JTidy) and parseDOM(InputStream, OutputStream) is supposed to return a Document, which it does! So why I have to call a DocumentBuilderFactory and then get a DocumentBuilder is beyond me. If I don't call Node.getTextContent() the list is processed properly and calls to toString() indicate that the class nodes are in the list! Any help would be appreciated!
    import com.boeing.ict.pdemo.io.NullOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.util.Properties;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import org.w3c.tidy.Tidy;
    public class HTMLDocumentProcessor {
        // class fields
        private Properties tidyProperties   = null;
        private final String tidyConfigFile =
                "com/boeing/ict/pdemo/resources/TidyConfiguration.properties";
         * Creates a new instance of HTMLDocumentProcessor
        public HTMLDocumentProcessor() {
            initComponents();
        private void initComponents() {
            try {
                tidyProperties = new Properties();
                tidyProperties.load(ClassLoader.getSystemResourceAsStream(tidyConfigFile));
            } catch (IOException ignore) {
        public Document cleanPage(InputStream docStream) throws IOException {
            Document doc = null;
            NullOutputStream nos = new NullOutputStream(); // A NullOutputStream is
                                                           // is used to keep all the
                                                           // error output from printing
            // check to see if we were successful at loading properties
            if (tidyProperties.isEmpty()) {
                System.err.println("Unable to load configuration file for Tidy");
                System.err.println("Proceeding with default configuration");
            Tidy tidy = new Tidy();
            // set some local, non-destructive settings
            tidy.setQuiet(true);
            tidy.setErrout(new PrintWriter(nos));
            tidy.setConfigurationFromProps(tidyProperties);
            doc = tidy.parseDOM(docStream, nos);
            // assuming everything has gone ok, we return the root element
            return doc;
        public static void main(String[] args) {
            try {
                String fileName = "C:/tmp/metars-search.htm";
                File htmlFile = new File(fileName);
                if (!htmlFile.exists()) {
                    System.err.println("File : " + fileName + " does not exist for reading");
                    System.exit(0);
                FileInputStream fis = new FileInputStream(htmlFile);
                HTMLDocumentProcessor processor = new HTMLDocumentProcessor();
                Document doc = processor.cleanPage(fis);
                if (doc == null) {
                   System.out.println("cleanPage(InputStream) returned null Document");
                   System.exit(0);
                NodeList spanTags = doc.getElementsByTagName("span");
                int numSpanTags = spanTags.getLength();
                System.out.println("Number of <span> tags = " + numSpanTags);
                for (int i = 0; i < numSpanTags; i++) { // Loop falls through here!
                    System.out.println("Span tag (" + i + ") = " +
                                        spanTags.item(i).getTextContent());
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                System.exit(0);
    }This segment of code works!
    import com.boeing.ict.pdemo.io.NullOutputStream;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.util.Properties;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import org.w3c.tidy.Tidy;
    import org.xml.sax.SAXException;
    * Class designed to remove specific notam entries from the
    * HTML document returned in a request. The document will contain
    * either formatted (HTML with CSS) or raw (HTML, pre tags). The
    * Formatted HTML will extract the paragraph body information from the
    * document in it's formatted state. The raw format will extract data
    * as simple lines of text.
    * @author John M. Resler (Capt. USAF, Ret.)<br/>
    * Class : NotamExtractor<br/>
    * Compiler : Sun J2SE version 1.5.0_06<br/>
    * Date : June 15, 2006<br/>
    * Time : 11:05 AM<br/>
    public class HTMLDocumentProcessor {
        // class fields
        private Properties tidyProperties   = null;
        private final String tidyConfigFile =
                "com/boeing/ict/pdemo/resources/TidyConfiguration.properties";
         * Creates a new instance of HTMLDocumentProcessor
        public HTMLDocumentProcessor() {
            initComponents();
        private void initComponents() {
            try {
                tidyProperties = new Properties();
                tidyProperties.load(ClassLoader.getSystemResourceAsStream(tidyConfigFile));
            } catch (IOException ignore) {
        public Document cleanPage(InputStream docStream) throws IOException {
            Document doc = null;
            NullOutputStream nos = new NullOutputStream(); // A NullOutputStream is
                                                           // is used to keep all the
                                                           // error output from printing
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            // check to see if we were successful at loading properties
            if (tidyProperties.isEmpty()) {
                System.err.println("Unable to load configuration file for Tidy");
                System.err.println("Proceeding with default configuration");
            Tidy tidy = new Tidy();
            // set some local, non-destructive settings
            tidy.setQuiet(true);
            tidy.setErrout(new PrintWriter(nos));
            tidy.setConfigurationFromProps(tidyProperties);
            doc = tidy.parseDOM(docStream, bos);
            DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder docBuilder = null;
            try {
                docBuilder = docFactory.newDocumentBuilder();
            } catch (ParserConfigurationException ex) {
                ex.printStackTrace();
            try {
                doc = docBuilder.parse(new ByteArrayInputStream(bos.toByteArray()));
            } catch (IOException ex) {
                ex.printStackTrace();
            } catch (SAXException ex) {
                ex.printStackTrace();
            // assuming everything has gone ok, we return the root element
            return doc;
        public static void main(String[] args) {
            try {
                String fileName = "C:/tmp/metars-search.htm";
                File htmlFile = new File(fileName);
                if (!htmlFile.exists()) {
                    System.err.println("File : " + fileName + " does not exist for reading");
                    System.exit(0);
                FileInputStream fis = new FileInputStream(htmlFile);
                HTMLDocumentProcessor processor = new HTMLDocumentProcessor();
                Document doc = processor.cleanPage(fis);
                if (doc == null) {
                   System.out.println("cleanPage(InputStream) returned null Document");
                   System.exit(0);
                NodeList spanTags = doc.getElementsByTagName("span");
                int numSpanTags = spanTags.getLength();
                for (int i = 0; i < numSpanTags; i++ ) {
                    System.out.println(spanTags.item(i).getTextContent().trim());
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                System.exit(0);
    }

    Thank you Dr but the following is true:
    I placed this code in the for loop before I posted the question :
    for (int i = 0; i < numSpanTags; i++) { // Loop falls through here!
          System.out.println("Span tag (" + i + ") = " + spanTags.item(i));
    }And I receive 29 (The correct number) of non-null references to objects (Node objects) in the NodeList.
    When I replace the exact same for loop with this code :
    for (int i = 0; i < numSpanTags; i++) { // Loop falls through here!
          System.out.println("Span tag (" + i + ") = " + spanTags.item(i).getTextContent());
    }Nothing prints. This discussion has never been about "clever means to suppress exceptions" it has been precisely about why a loop that has the
    exact same references, exact same indices prints one time and doesn't print the other and does not throw an exception. If you can answer
    that question then I am interested. I am not interested in pursuing avenues that are incorrect, not understood and most importantly shot from the hip without much thought.

  • My iPod has two small dots on it. The first one is red and the other is white. The red one came first and a few weeks later the white one showed up. Can I take it to the Apple store and have it exchanged?

    I've had it for less than a year and noticed a few weeks ago that it had a red dot on the center of the screen. About a week ago I noticed another dot, a white one, right next to it. I've never dropped it and even went out of my way to buy a decent case to keep it safe. I spent over 200$ on my 4Gen iPod Touch it and I'm very concerned that these dots will spread across my screen. Can I send it to the Apple store by me and have it replaced?

    Make an appointment at the Genius Bar of an Apple store and find out. If defective, within warranty and not abused Apple may exchange it at no cost.
    See:
    About LCD display pixel anomalies for Apple products released in 2010 and later

  • How can I merge two iTunes folder, one with music and the other without?

    Two years ago Apple support suggested moving my iTunes folder out of my Home folder to the HD level in order to share it across users. This is no longer necessary. How do I move my music back to my Home folder since now I have an Itunes folder at the HD level (along with application, library, system, users folders) and an Itunes folder under Music in my Home folder. For example both those itunes folders have a mobile application, album artwork, and previous itunes library subfolder as well as itunes library extras.itdb and itunes library genius.itdb. How do I merge them or which ones do I delete? The files in the mobile app folder in my Home folder have a newer "last modified" date. Currenty under Itunes-->Preferences-->Advanced, it says Itunes media location is /itunes/itunes media/ music. I assumes that is the HD level folder. What happens if I hit reset?
    I am using Itunes 10.6.3.
    Any help tailored to a novice would be great. Thanks.

    Thanks for the links, Limnos.
    If you are willing to continue helping, here's what I found.
    Just to clarify the two iTunes folders I am refering to are:
    username-->Music-->iTunes
    HD-->iTunes
    I am presuming each location has a full set of files as outlined in the above links?
    Not all the files are in both locations. Most are.
    - The Itunes folder in my home folder does not have itunes library.xml.
    - The Itunes folder in my home folder has a subfolder called Mobile Applications (username-->Music-->iTunes--> Mobile application). The Itunes folder at the HD level also has a Mobile Application folder but it is a subfolder of Itunes Media folder (HD-->iTunes--> iTunes Media-->Mobile applications) and has no files in it.
    - I do not have an iTunes Media in the iTunes folder in my home folder.
    - also the Itunes media folder (HD-->iTunes--> iTunes Media) has subfolders by type (books, movies, itunes u, music etc...) but the iTunes Media-->Music also has some of the same subfolders ( iTunes Media-->Music-->books, iTunes Media-->Music-->Movies, iTunes Media-->Music-->iTunes U). Is this normal repetition?
    You say:
    /itunes/itunes media/ music
    but it is important to note what comes before all that.
    There is nothing as far as I can tell before that first forward slash. Since the only iTunes Media folder I have is in the iTunes folder that resides at the HD level (HD-->iTunes--> iTunes Media folder) not the iTunes folder in my home folder (username-->Music-->iTunes) , I assume that's the one that holds the music.
    Keep iTunes media folder organized and Copy files to iTunes Media folder when adding to library are both checked on
    Does that give more clarity into my problem?

  • How can I keep Itunes from wanting to put my music cd in the compilations folder.  Even a 2 disc set sometimes itunes will place one cd in a folder of the name of the band and the other disc in the compilations folder under the name of the cd

    Two issues.  The first one is that when I upload some music cd's into my itunes library, itunes wants to place the songs in a compilations folder.  Sometimes this occurs even with a 2 or 3 cd set.  One CD will be filed under the artists name and the disc 2 may be filed in the compilations folder and listed by the name of the cd and not the artist.
    2nd issue is that sometimes cd's are similiar, but with different artists such as 20th century Hits of Neil Young.  The CD is filed in the compilations folder.  Than I upload the 20th century Hits of Tanya Tucker and the songs go into the same folder with Neil Young.  The don't even mix as one is county and the other is rock.
    I have moved these CD's out of the compilations folder and moved them in with the other cd's by the same artist, but Itunes keeps moving them back into the compilations folder.
    Is there a fix

    Generally setting a common Album title and Album Artist will fix things.
    For compilations that aren't, select all tracks, Get Info, and on the option tab set Part of a Compilation to No. If it already says No tick the box alongside, then click OK.
    For deeper problems see Grouping tracks into albums.
    tt2

  • Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verif

    Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verifying and repairing it but had no luck. I also tried mounting and unmounting it but still no solution. Anyone to help please?

    Looks bad. I would strongly advise backing up the stuff on the other two partitions as soon as possible in case the rest of the drive goes wrong.
    Beyond that, Disk Utility has limited abilities to repair disks, DiskWarrior uses a different approach and might, emphasis might be more successful. It has certainly done the job for me in the past when Disk Utility could not.
    See http://www.alsoft.com/diskwarrior/

  • Can I partition a hard drive so that one partition is for windows files and the other is for time machine backups?

    I have a 1TB WD passport that currently contains windows files e.g photos, documents, etc. Can I partition it so that one partition contains these files and the other partition is used for time machine backups? Also, how do I change the partition system on the hard drive so that it uses the GUID partition system?
    Thanks in advance.

    Yes, you can, though you need to format and partition the drive from the scratch.
    1) back up your PC data on other drive.
    2) partitioning your drive into 2 partitions with Disk Utility.
    3) format one partition by Mac OS extended (journaling) for Time Machine, the other by exFAT for PC data.
    4) restore PC data on exFAT partitioned drive.

  • I have a MacBook Pro 15" and my warranty just ran out! I partitioned my harddrive into two partitions, one with Snow Leopard and the other with microsoft.This morning I turned on my Macbook Pro and it will not boot into Snow Leopard.

    Good Morning,
    I have a MacBook Pro 15" and my warranty just ran out! I partitioned my harddrive into two partitions, one with Snow Leopard and the other with microsoft.This morning I turned on my Macbook Pro and it will not boot into Snow Leopard. I shut it off took out the battery, reinstalled the battery. Then I put in the Snow Leopard CD and booted up to disk utility and The Snow Leopard partion would not show up?? I do see the microsoft partion.
    I also rebooted holding down the shift key and still no Snow Leopard
    Could you please tell me what I can do, what keys do I press on restart any advice to get Snow leopard back.
    thank you.

    Have you restarted holding down the Opt key?  That procedure should give you a gray screen with all of the partitions that exist.  Then select the SL partition for boot.  Also go to System Preferences and Startup Disk, unlock the lock and select the SL partition as the default boot partition, then relock.

  • Can I partition a new 1Tb drive so that 500 Gb is a FAT32 drive and the other 500Gb is HSF  ?

    I have a new Verbatim 1 Tb drive and I want to use half of it to act as the Hard Drive for Windows (via VMWare Fusion) and the other to be my Aperture vault. How do I do this?

    You would formate the OS X partion as Mac OS Extended (Journaled) GUID. The GUID portion is created in the Patition tab of Disk Utility. In DU can partition any drive connected to the Mac. To learn how to partition a external drive I was able to locate this article that offers step by step instructions.
    http://www.geek.com/articles/apple/how-to-partition-a-mac-hard-drive-20120416/
    This will partion the portion of the EHD you want so OS X can use it. You can use Fusion to partition the other portion of the EHD for Windows use however my understanding is MS Windows will only install on internal hard drives. If you want to install Windows on an external HD then you're really on your own as it's not a supported item from Microsoft.

  • I have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i had one for a long time, then when i got the ipad i didn't realize they would all still work under one so i set up the second one on that
    then when i got the new iphone i put in the info for the first and main one from my mac pro and it would not work at all, and i knew it was right, then it asked me to create a new one or i couldnt finish the setup
    hence why i have 3 now
    hard to believe you cannot combine into one
    oh well, i will just make them all accessible for all 3
    thanks

  • HT204053 i have two apple id one for Store purchases and the other for iCloud, and i want to merge them into one, can i transfer all app from one to other ?

    i have two apple id one for Store purchases and the other for iCloud, and i want to merge them into one, can i transfer all app from one to other ?

    It is not possible to merge Apple IDs.

Maybe you are looking for

  • Skin w/ Back Button

    Hello, My FlashHelp will be opening without the Browser toolbar. Is there any way to add a back and foward button to the navigation bar without using flash? Or does anyone have a skin with these buttons they would like to kindly share? Thanks in adva

  • RAC Node Addition fails with - " VIP is already in use "

    We had a two-node RAC on oracle 10gR2 with ASM. We removed the second node and now trying to add it back as the second node again. CRS and ASM got extended on to the second node but when trying to add the Db home, it gives an error in the oui : "Unab

  • Exception while using struts with jsf

    Hi Iam trying to integrate struts with jsf. when iam trying to load jsf page ...getting the following error Unable to initialize jsf interceptors probably due missing JSF implementation libraries Please help me to fix this .

  • Secondary Hard drive in a Envy dv7-7233nr Laptop

    hello this laptop supports a secondary hard drive.  I need to know where to get the right Mounting kit for it.  I have the Hard drive i want to use and a cable i got on Ebay for it. now all i need is a Cradle /mounting kit.  Please help.  Thx

  • Unable to download new version of adobe flash player

    I recently installed Mac OS X and got a problem. I cannot update the new version of adobe flash player. It stopped at "initializing step" (as see in the image). Can anyone please help me fix it? Thank you very much!