Confused about bootcamp and accessing mac files from within windows


Recommended Posts

So I installed bootcamp on my mbp last night and have windows 8 running great. But I am confused on how I can access any of my files from my mac partition. The mac partition shows up but I cannot seem to actually do anything with it. I know that when I used vmware or parallels before it was dead simple with drag and drop. Do I need a 3rd party program like macdrive by mediafour?

If you can see the contents of your OS X partition from within Windows, that probably means that you installed the Bootcamp drivers and utilities in Windows. Last time I checked, Apple's HFS+ driver for Windows allows you to mount your OS X partitions read-only, not read-write.

As far as I can tell, you only have one option for writing to your HFS+ partition from Windows: the very cleverly named HFS+ for Windows 9.0 from Paragon Software. While MacDrive claims to allow you to manage your HFS+ partitions from Windows and easily access your files, I can't find anywhere that explicitly states that it provides write support. I believe that Mediafour's version of "Access Mac disks in Windows" is read-only support, a view further bolstered by Paragon's claim that their HFS+ for Windows software is "the only solution that provides full read-write access to HFS+/HFSX partitions on any type of disks (GPT, MBR) under most of Windows versions".

Despite the fact that it seems that Windows has read-write access to your HFS+ partition and OS X has the same access to your virtualized NTFS partition when you are virtualizing Windows with Parallels, that is not actually the case. To create this illusion, Parallels acts as a middle layer which translates all file operations. When you drag-and-drop a file from Finder onto your virtualized Windows desktop, Parallels accesses that file, which it has full read-write access to since Parallels is an OS X application being provided read-write HFS+ access by OS X itself, and instructs your virtual Windows desktop to copy the file from a special shared directory that Parallels gives your virtualized Windows instance read-write access to onto the desktop. Since the latter file operations are handled by Parallels guest extensions in Windows, Parallels is provided full read-write access to NTFS by Windows itself. Therefore, neither OS X nor Windows needs to know how to read from or write to the other's file system because Parallels acts as a middle layer translating the file onto a virtual file system each OS can access.

  • 2 weeks later...

Has Bootcamp even been Updated yet for Windows 8? Last time that I checked running Boot Camp was still 4.0 which Supports Windows 7 but NOT Windows 8, although I had NOT yet reinstalled Mountain Lion with an Integraded 10.8.2 from the Mac App Store. Perhaps you could share with me how you got Windows 8 running on Bootcamp as I would prefer to run Windows 8 rather than Windows 7 as well on my Apple Bootcamp Partition.

I just checked and Apple Bootcamp on Mac OS X 10.8.2 is still telling me that it Supports only Windows 7 right now! If there were a 10.8.3 I would have access to it before the General Public as I am in all 3 Apple Developer Programs! Exactly where did you find Win 8 Support?

While I can't speak from experience as I no longer have an Intel-based Mac, I suspect that BlendedFrog either installed the drivers directly (probably by extracting them and installing directly via Device Manager) or used Windows 7 compatibility mode to trick the Bootcamp installer into thinking it was running under Windows 7.

I used a combination of these two methods to run the Windows 7 beta on my former Macbook Pro. First, I extracted the drivers from the drivers disc and used Device Manager to install them. Then, I used Windows Vista compatibility mode to make the Vista-era Bootcamp utility install under Windows 7. It worked as well as it did under Windows Vista, as best I can remember.

In my experience, Apple's driver support for Windows is exceptionally poor: doubly so for versions they do not officially support. Consider yourself warned; proceed with caution.

True, Bootcamp has not been updated for Windows 8 yet. The problems that the OP is having, however, will not be fixed even when Bootcamp is updated. There will always be a persistent problem because MS does not want to make HFS+ drivers, and NTFS is proprietary (MS doesn't even have a white paper on it I don't think). Therefore the support in Mac for NTFS is read-only, and the support in Windows to an HFS+ volume is read-only.

I haven't had Windows on my Mac in awhile, but I recall that MacDrive does enable HFS+ read/write support. In Mac OS X, there are also methods to enable NTFS write support but they always come with "use at your own risk" type warnings.

I think that in the end I decided to just use my Dropbox account as a common file pool between Windows and Mac partitioned. Seems ridiculous but I think that it is the only truly safe way of working on the same files between the two OS. And of course, no matter what you ever do always have a regularly scheduled backup routine.

P.S. Don't expect the bootcamp drivers for Windows 8 at the time of release. As I recall, Apple took months to update Bootcamp drivers for Windows 7.

I think that in the end I decided to just use my Dropbox account as a common file pool between Windows and Mac partitioned. Seems ridiculous but I think that it is the only truly safe way of working on the same files between the two OS. And of course, no matter what you ever do always have a regularly scheduled backup routine.

You can also use a VM to load the boot camp partition and work with files that way. Or, format an external drive NTFS and install the NTFS drivers for OSX.

There's no great way of doing it, unfortunately.

There will always be a persistent problem because MS does not want to make HFS+ drivers, and NTFS is proprietary (MS doesn't even have a white paper on it I don't think). Therefore the support in Mac for NTFS is read-only, and the support in Windows to an HFS+ volume is read-only.

While it is true that no one has made a read/write HFS+ driver for Windows, and likely never will, it is still theoretically a possibility. Although Apple releases some of the OS X source code on their open-source site, I'm not sure if HFS+ is one of the components they have released. However, there is a working read/write HFS+ driver in the Linux kernel which could theoretically be ported to Windows the same way as the Ext2Fsd Project ported the EXT2/3 driver to Windows. While it would certainly take a lot of knowledge, dedication, and hard word, the framework used in Ext2Fsd could likely be reused for a HFS+ implementation.

As for enabling read/write support for NTFS in OS X, I'm sure that I have heard of products claiming to have mastered the feat. Also since OS X is FreeBSD based, it should be less difficult to port a theoretical FreeBSD NTFS driver (which as far as I can tell doesn't exist apart from FUSE) or the Linux NTFS driver to OS X than it would be to port the Linux HFS+ driver to Windows. Again, I'm not claiming that it would be trivial, but its theoretically possible (disregarding GPL/APL/BSD license compatibility issues, of course).

Although I don't have a working OS X installation to test this on at the moment, I believe that you can mount a NTFS partition read/write with the official OS X NTFS driver in Snow Leopard or later using mount. You could try something like the following to test my assumption:


$ diskutil list
$ sudo mkdir /Volumes/rar
$ sudo mount -t ntfs -o rw,force /dev/disk1s1 /Volumes/rar # Assuming your NTFS partition is /dev/disk1s1 (according to the diskutil command above).
$ sudo touch /Volumes/rar/test.txt
$ [ -e /Volumes/rar/test.txt ] && echo 'The volume was mounted read/write!'
[/CODE]

Assuming that the above test worked, you could add it to your [i]fstab[/i] to force it to mount this way every time as follows:

[CODE]
$ diskutil info /Volumes/rar
$ sudo nano /etc/fstab
# Add the following line (not this comment) after the other entries in fstab.
UUID=your_volume_uuid_from_the_diskutil_command_above /Volumes/rar ntfs defaults,rw,force 0 2
$ sudo umount /Volumes/rar
$ sudo mount -a
$ sudo touch /Volumes/rar/test.txt
$ [ -e /Volumes/rar/test.txt ] && echo 'The volume was mounted read/write!'
$ sudo rm -f /Volumes/rar/test.txt
[/CODE]

You should see the text "The volume was mounted read/write!" after both the test and after you make it permanent is [i]fstab[/i] if you followed all my steps (and they're correct, which I can't verify at the moment).

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • First exciting thing to come to Windows in a long time ! This is the kind of things they should focus on, instead of cramming as much AI as they can in everything.
    • New AMD graphics driver fixes install issues and FSR 4.1 crashes on RX 7000 GPUs by Taras Buria AMD is rolling out yet another graphics driver. Version 26.6.4 is now available for download, bringing two important fixes. One is for those still using Windows 10 and having trouble installing driver 26.6.2. In fact, this patch is coming from the recently released hotfix, so it is not new if you are already running version 26.6.3. The second fix is for RX 7000 owners. AMD recently brought FSR 4.1 support to the previous-gen graphics cards, but there was a bug with certain games crashing when using FSR 4.1. I experienced this issue with Forza Horizon 6, so today's driver should take care of that. Here is the official changelog: Intermittent install issue seen when installing AMD Software: Adrenalin Edition 26.6.2 on Windows® 10 systems for Radeon™ RX 7000 series and above graphics products. Intermittent application crash may be observed in some games with AMD FSR Upscaling 4.1 enabled on Radeon™ RX 7000 series graphics products. Known issues include the following: Intermittent application crash or driver timeout may be observed while playing Battlefield™ 6 on AMD Ryzen AI 9 HX 370. AMD is actively working on a resolution with the developer to be released as soon as possible. Texture flickering or corruption may appear while playing Battlefield™ 6 with AMD Record and Stream on some AMD graphics products. AMD FSR Upscaling and AMD FSR Frame Generation may show as inactive in AMD Software: Adrenalin Edition while playing Battlefield™ 6 when enabled on Radeon™ RX 9000 series graphics products. Failure to install may be observed while installing AI Bundle components in some regions with limited access to HuggingFace and GitHub. Model flickering or rendering failure may be observed in Maxon Cinema 4D and Blender on Radeon™ RX 7000 series and above graphics products. Users experiencing this issue are recommended to install AMD Software: Adrenalin Edition 26.3.1. Intermittent application crash may be observed on some models while running Blender on Radeon™ RX 7000 series and above graphics products. Users experiencing this issue are recommended to install AMD Software: Adrenalin Edition 26.3.1. You can download the AMD Radeon driver 26.6.4 from the official website here. Full release notes are available on the same page.
    • Amazon may use OpenAI and Nova models after Anthropic reportedly raises costs by Karthik Mudaliar Amazon is reportedly considering to use OpenAI models and even its own Nova family of AI models after Anthropic raised the cost of using Claude inside Amazon services. According to a report from The Information, Amazon is weighing its options to reduce costs under a new arrangement with Anthropic. But back in April, Amazon said it would invest $5 billion more in Anthropic, with the possibility of adding up to another $20 billion if certain commercial milestones are met. That investment actually came on top of another $8 billion Amazon had already put into the Claude maker. Anthropic, meanwhile, committed to spend more than $100 billion over 10 years on AWS technologies, including Amazon’s Trainium chips. Amazon isn't just a customer of Anthropic but also one of the most important backers and cloud partners. This is why it makes it interesting that Amazon is considering other alternatives to handle its internal workloads. Although Amazon has been building its own options for a while now. Its Nova family of AI models was announced in late 2024 for Amazon Bedrock, with models aimed at text, image, and video tasks. Amazon pitched the model around cost and latency at that time. With that said, OpenAI has also become a more realistic option recently for AWS customers as well as for Amazon itself. Earlier this year, OpenAI brought its latest models and Codex coding agent to Amazon Bedrock, after changes to its previously more restrictive Microsoft cloud arrangement. This allowed AWS to serve even those customers who wanted other alternatives from Claude, without having to move workloads out of Amazon's cloud. Evaluating alternatives could also be due to commercial pressure and not necessarily a sign of a damaged partnership between Amazon and Anthropic. Whether or not Amazon is actually considering switching entirely to OpenAI's models or its own Nova models remains unknown at this moment.
    • Samsung introduces new AI classroom tools and interactive displays at ISTELive 2026 by Fiza Ali Samsung has announced several new education-focused software features and interactive displays for schools during ISTELive 2026, taking place in Orlando, Florida, from 28 June to 1 July. The focus of these updates is on making shared classroom displays easier to use for teachers while giving IT administrators more control over managing devices. One of the key additions is the Samsung Account Management Solution (AMS). In many schools, multiple teachers share the same interactive display throughout the day, which means signing in and setting everything up can become repetitive. With AMS, teachers can log in by scanning a QR code or tapping an NFC-enabled ID card. Once signed in, their personalised workspace, including wallpapers, bookmarks, app shortcuts, and files, can be instantly accessed through Home Personalisation. Samsung has also included a screen lock feature, allowing teachers to lock the display if they need to step away briefly. Furthermore, the company is also updating its Education Portal with new tools designed for school IT administrators. The portal will allow IT administrators to register teachers, enrol devices, and manage user access from a central dashboard. Administrators can also link NFC cards to teacher accounts, making sign-ins quicker across shared displays. Another addition is a Tags feature that lets schools organise displays by building or classroom. Those tags can also be used to send emergency notifications to selected Samsung Interactive Displays through compatible platforms such as InformaCast and Raptor. Moreover, the tech giant's AI Assistant is gaining several new features aimed at supporting everyday classroom tasks such as lesson planning and classroom engagement. One of the features is Circle to Search, which lets teachers circle text or images on the display to quickly find related information, videos, or web results without interrupting the lesson. The content can then be brought into Samsung Whiteboard. Another feature, Live Transcript, converts spoken lessons into real-time captions, which could be useful for students with hearing impairments or those in multilingual classrooms. The AI Assistant also introduces AI Summary and AI Quiz. The summary tool creates summaries of recorded lessons, while AI Quiz generates questions based on lesson content so teachers can quickly check how well students are following along. Teachers signed in through Samsung AMS can also return to their previous AI-generated lesson materials without logging in again. Alongside the software updates, Samsung has expanded its Android-based Interactive Display range with three new models: the WAF-S, WAFX-PS, and WAHX-M. The WAF-S and WAFX-PS ship with Android 16, bringing updates to security, accessibility, and overall usability while maintaining compatibility with Google's education services including Google Classroom and Google Drive through EDLA certification. Meanwhile, the new WAHX-M is the biggest addition to the lineup, introducing a 98-inch display for larger spaces such as lecture halls and conference rooms. It will also be available in 65-inch, 75-inch and 86-inch sizes. Samsung says the WAHX-M further includes on-device AI features such as voice commands, text-to-speech, and an AI calculator, alongside support for Samsung AMS and AI Assistant. Samsung AI Assistant has been available since April, while Samsung AMS and the updated Education Portal will begin rolling out in July.
    • It's been $24 (single) or $89 (4-pack) for many days on both Amazon and Walmart as far as I know. That isn't a big discount. If these end up like the 1st gen, the 4-pack will routinely get down around $80, give or take a dollar. I think they have even hit $69 at times.
  • Recent Achievements

    • Reacting Well
      NovaEdgeX earned a badge
      Reacting Well
    • Week One Done
      NovaEdgeX earned a badge
      Week One Done
    • One Year In
      BA the Curmudgeon earned a badge
      One Year In
    • Conversation Starter
      rosiecharles earned a badge
      Conversation Starter
    • First Post
      KMilenkoski1202 earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      536
    2. 2
      +Edouard
      269
    3. 3
      PsYcHoKiLLa
      150
    4. 4
      Steven P.
      97
    5. 5
      macoman
      62
  • Tell a friend

    Love Neowin? Tell a friend!