How to Access Windows Files in Ubuntu


Dinesh Koravi

I'm running Ubuntu 14.04 on LEGACY and Windows 8.1 on UEFI. My media (movie songs and video songs) are in the "MY MUSIC" and "MY VIDEOS" folders in Windows.

I can access other hard drives except C drive (Windows). Now can someone tell me how to access the "My Music" and "My Videos" folders in UBUNTU? Because I can't find them in ubuntu.

output lsblk:

NAME    MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda       8:0    0 465.8G  0 disk 
├─sda1    8:1    0   260M  0 part 
├─sda2    8:2    0   1.5G  0 part 
├─sda3    8:3    0   260M  0 part 
├─sda4    8:4    0   128M  0 part 
├─sda5    8:5    0 245.7G  0 part 
├─sda6    8:6    0   350M  0 part 
├─sda7    8:7    0  97.7G  0 part 
├─sda8    8:8    0  72.3G  0 part 
├─sda9    8:9    0  25.4G  0 part /
├─sda10   8:10   0  22.3G  0 part 
├─sda11   8:11   0     2M  0 part [SWAP]
└─sda12   8:12   0     1M  0 part 
sr0      11:0    1  1024M  0 rom  
Avinash Raj

Run the following command on the terminal to mount the 240 GB /dev/sda5partition.

sudo mkdir /media/windows
sudo mount /dev/sda5 /media/windows

Now your /dev/sda5partition will be mounted in the /media/windowsfolder. You can browse the files in it /media/windowsthrough nautilus .

Related


How to Access Windows Files in Ubuntu

Dinesh Koravi I'm running Ubuntu 14.04 on LEGACY and Windows 8.1 on UEFI. My media (movie songs and video songs) are in the "MY MUSIC" and "MY VIDEOS" folders in Windows. I can access other hard drives except C drive (Windows). Now can someone tell me how to a

How to access files on Windows from Ubuntu?

nium I have a laptop with Windows 10 and Ubuntu 16.04. I'm trying to access files on Windows from Ubuntu, but it turns out that I can only do this if I reboot the Windows system before starting Ubuntu, which means, if you want to access files on Windows, you h

How to access files on Windows from Ubuntu?

nium I have a laptop with Windows 10 and Ubuntu 16.04. I'm trying to access files on Windows from Ubuntu, but it turns out that I can only do this if I reboot the Windows system before starting Ubuntu, which means, if you want to access files on Windows, you h

How to access Ubuntu files in Windows 7 when dual booting?

Gurupal Singh I just installed Windows 7 and Ubuntu 13.04. All my software dumps are in the Ubuntu partition to be installed in Windows 7. How can I access the Ubuntu partition so I can copy software files in Windows 7? I can't even see the partition for Ubunt

How to access Ubuntu files in Windows 7 when dual booting?

Gurupal Singh I just installed Windows 7 and Ubuntu 13.04. All my software dumps are in the Ubuntu partition to be installed in Windows 7. How can I access the Ubuntu partition so I can copy software files in Windows 7? I can't even see the partition for Ubunt

How to Access Windows Files Using a Bootable Ubuntu Flash Drive

KANISHK Anan I'm running Ubuntu 14.0 on a Windows 8.1-64bit PC with a flash drive. Windows files and folders can now be accessed using a bootable flash drive with Ubuntu. If yes, please tell me how to do it. s3lph You should show all mountable drives in the si

How to access Ubuntu files in Windows 7 when dual booting?

Gurupal Singh I just installed Windows 7 and Ubuntu 13.04. All my software dumps are in the Ubuntu partition to be installed in Windows 7. How can I access the Ubuntu partition so I can copy software files in Windows 7? I can't even see the partition for Ubunt

How to access linux/Ubuntu files from Windows 10 WSL?

Peng This question answers how to access Windows files from Ubuntu Bash, but how do I do it? Specifically, I need to access my SSH keys from Windows ( /home/mark/.ssh/id_rsaunder Bash) . Richard Turner PM for Windows command line: Update 10/2019 : Updated the

How to access Ubuntu files in Windows 7 when dual booting?

Gurupal Singh I just installed Windows 7 and Ubuntu 13.04. All my software dumps are in the Ubuntu partition to be installed in Windows 7. How can I access the Ubuntu partition so I can copy software files in Windows 7? I can't even see the partition for Ubunt

How to Access Windows Files Using a Bootable Ubuntu Flash Drive

KANISHK Anan I'm running Ubuntu 14.0 on a Windows 8.1-64bit PC with a flash drive. Windows files and folders can now be accessed using a bootable flash drive with Ubuntu. If yes, please tell me how to do it. s3lph You should show all mountable drives in the si

How to access linux/Ubuntu files from Windows 10 WSL?

Peng This question answers how to access Windows files from Ubuntu Bash, but how do I do it? Specifically, I need to access my SSH keys from Windows ( /home/mark/.ssh/id_rsaunder Bash) . Richard Turner PM for Windows command line: Update October 2019 : Updated

Access ubuntu files from windows (installed in virtualbox)

convene I have installed Ubuntu 13.x in virtual box My parent OS is Windows 8.1. I need to access python files from IDE in windows. They are basically django-like site-packages directories. E.g: '/usr/lib/python2.7/dist-packages' how do i access it from the p

How to access Ubuntu filesystem in Windows?

Ruhri I would like to access my files from Windows on Bash on Ubuntu 10 on Windows 10, for example, using the Windows file browser. It works the other way around (the Windows filesystem is under /mnt), but I can't find the Ubuntu filesystem in Windows. Does an

How to access Ubuntu filesystem in Windows?

Ruhri I want to access my files on Bash on Ubuntu 10 on Windows 10 from Windows, for example, using the Windows file browser. It works the other way around (the Windows filesystem is under /mnt), but I can't find the Ubuntu filesystem in Windows. Does anyone k

how to access home files from try ubuntu

User 1237300 I was forced to reinstall ubuntu because upgrading from 14.04 to 16.04 gave me problems. However, I would like to keep my files in my home directory before proceeding with the reinstallation. Using "try ubuntu", I don't see my files, unlike what m

How to access ubuntu files as root in PHP

Kumaran I have a PHP script running on the first server that curls the PHP files on the second server. $service_url = 'http://example.com/version_check.php?f_path='.$path; On the second server, this PHP file( version_check.php) reads the files /var/wwwin the

How to access local files in Spark on Windows?

Nan Xiao I use Spark. I know that the code for accessing local files is like this:Windows*nix val textFile = sc.textFile("file:///usr/local/spark/README.md") But how to access local files Windows? I have tried the following: val logFile = "C:\spark-1.3.1-bin

How to Access Files in Windows Store App Packages

Query 21 I'm trying to access a specific file from my app's installation package, but im getting a Javascript type mismatch error. What am I doing wrong. Please tell me a good way to access any file from installed package. Windows.Storage.StorageFile.getFileFr

How to access local files in Spark on Windows?

Nan Xiao I use Spark. I know that the code for accessing local files is like this:Windows*nix val textFile = sc.textFile("file:///usr/local/spark/README.md") But how to access local files Windows? I have tried the following: val logFile = "C:\spark-1.3.1-bin

How to access local files in Spark on Windows?

Nan Xiao I use Spark. I know that the code for accessing local files is like this:Windows*nix val textFile = sc.textFile("file:///usr/local/spark/README.md") But how to access local files Windows? I have tried the following: val logFile = "C:\spark-1.3.1-bin

How to access recently opened files in Windows 8?

Facebook Facebook logo Sign up for Facebook to connect with Mohd Faizan Khan How to access recently opened files list in Windows 8 using Java? In other words, what is the path to the "Latest Documents" folder in Windows that can be passed as a parameter in the

How to Access Text Files in Windows Forms Application

name I have added a text file to a Windows Forms application and am trying to access the file. Here is my code. static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); System.Str

How to access recently opened files in Windows 8?

Facebook Facebook logo Sign up for Facebook to connect with Mohd Faizan Khan How to access recently opened files list in Windows 8 using Java? In other words, what is the path to the "Latest Documents" folder in Windows that can be passed as a parameter in the