--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google Groups "BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beagleboard...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
Actually, there are ways to enable Windows to see Linux partitions: http://www.howtogeek.com/112888/3-ways-to-access-your-linux-partitions-from-windows/Neither that nor VMWare will help you see the ext4 partition using the default Angstrom image on the BeagleBone Black because only the FAT partition is shared. Sharing drives as mass-storage class devices at the same time they are mounted on another system is a recipe for disaster. The idea promoted in this current solution is that the FAT partition on the eMMC is for the exclusive use of the PC host after boot. During boot, files like the uEnv.txt are read, providing a mechanism for external systems to update the boot parameters.What you most likely really want to do is use sshfs. A protocol like sshfs uses the BeagleBone Black's running file system code to access the disk, rather than exposing the raw file system to the host. It runs over a network connection, like the one provided by the RNDIS driver over USB and equally over Ethernet. It uses the sshd server running on the BeagleBone Black to establish a connection and to read/write files.Here is the first one I found with a google search: https://code.google.com/p/win-sshfs/I cannot speak to its functionality/quality.
On Fri, Aug 2, 2013 at 8:54 AM, Juan C. <cortez...@gmail.com> wrote:
You can always install VMWare (http://www.vmware.com/products/player/) on your PC and run a virtual Linux operating system.
On Friday, August 2, 2013 5:26:10 AM UTC-5, dermiem wrote:Hi,I am powering my BBB from an external power supply and am not using the mini USB cable.I have an SD card installed and visible within the Linux file system.
I have added a uEnv.txt file to the SD card so that the BBB boots from eMMC and not the SD card.When I connect to a PC using a regular USB cable (ie not the mini USB cable), the PC recognizes the device as a USB flash device.The PC can only see /media/BEAGLEBONE.
I would like to be able to configure the BBB so that the PC sees /media/SDVolume instead.Where SDVolume is the name of the volume created on the SD card.How do I do this?