Access Windows Files From within a Ubuntu (Wubi) Install

(0 votes, average 0 out of 5)

So maybe you have just installed Ubuntu through the Wubi installation or have been using Ubuntu through Wubi for a while, but you find yourself trying to get access to your Window's documents/music/videos/etcetera from Ubuntu and your not sure where to look.  Well, the solution is pretty simple but not very intuitive for most users. Follow these instructions to get access to the files contained within your Windows installation:

Assuming your using Ubuntu 10.xx, go to the top left:  Places >> Computer >> File System (Icon) >> Host (Folder)

You should now be looking at folders that exist under your C:// drive (Or other depending on where you installed Ubuntu via Wubi) in windows (Program Files, Users, Windows, etcetera).  Unless your familiar with the folder structure under windows, the following are some common locations that are accessed under windows and how to get to them from the Host folder:

Desktop:  Users >> (Your Username) >> Desktop

My Documents: Users >> (Your Username) >> Documents

Program Files: Program Files or Program Files(x86) under your Host folder

 

Partner Links:
Last Updated on Monday, 27 September 2010 08:20  
Related Articles

» How to Configure a Program to Run at Startup in Windows 7

If you want to configure a program to always run when Windows starts, there are a few ways to do it.  The easiest way (in this author's opinion) is to use the Startup folder as shown in the instructions below.First, create a shortcut for the program you wish to start.  If there is an existing shortcut on your desktop, you can right click on it and copy it.  Otherwise, navigate to the .exe file, right click, and press "Create shortcut.".  You will see the shortcut created in...

» How to Count the Number of Files in a Directory in Linux

Counting the number of files in a directory from a Linux command line is easy.  The following command will return the number of files in the current directory and all subdirectories: $> find directory_name -type f -follow | wc -l  This will count all files and files in subdirectories, but not the subdirectories themselves.  To find all the files in only the current directory, you can use: $> find directory_name -type f -maxdepth 1 -follow | wc -l  If you would like to...

» How to connect an Apple Bluetooth Keyboard to Ubuntu (Troubleshooting)

Note: This guide uses programs specific to Ubuntu 10.04 (Lucid Lynx) and newer. For older versions of Ubuntu, please refer to .Sometimes the Ubuntu bluetooth stack can behave erratically and prevent you from connecting your Apple Bluetooth Keyboard (or other bluetooth device). The normal procedure for connecting your bluetooth keyboard involves the following steps:First, make sure the bluetooth applet is running by looking for the bluetooth icon on your panel:If it is not running, press ALT+F2,...