answersLogoWhite

0

Linux does not identify drives or partitions with letters. To Windows, "C:" is the partition that the running version of Windows is currently installed on, regardless of how many partitions are on the disk. Linux identifies partitions based on the order they are placed on the disk. For instance, the second partition on the first hard drive would be /dev/sda2 or /dev/hda2.

In order to access a Windows partition,you will need to identify what partition it is actually on. A quick way to do this is to run

cfdisk /dev/sda

or cfdisk with whatever hard drive it is on if you have more than one. A Windows partition will have the type of either NTFS or FAT32. To mount it, create a directory (such as /mnt/windows), and use the command

mount /dev/sda3 /mnt/windows

substituting of course the correct partition.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What language does Linux terminal use?

c


When can you access the global terminal in Pokemon Black?

You will be able to access Pokémon Black's Global Terminal once you get the C-Gear.


Your lap top becomes too slow How do you fix it?

Format your C: drive and install Debian Linux on it.


Which letter is assigned to the primary hard drive?

In Windows, it is called "C:" (without quotes). In Linux, it is called "/" (also without quotes). I don't know about Mac, sorry.


In Linux what does 'iwconfig eth0 key 5c00951b22' do?

It sets the WEP key that will be used by that interface. Answer: Network + Guide to Networking Fifth Edition, Chapter 8. On your Linux workstation, you open a terminal window and type at the command prompt iwconfig eth0 key 5c00951b22. What have you done? C. Established the credentials the wireless interface will use to communicate securely with the access point.


What is the shortcut to program files is c drive is blocked by your administrator?

If the 'c' drive is blocked, you can't access program files


How do you access c drive in workgroup?

start>>run>>\\ipaddress\C%click on ok


What is the symbol of root directory?

In Windows: "", the so-called backslash. Usually after the drive name, as in "C:" In Linux and UNIX: "/", the slash.


What is default letter assigned for the primary hard drive?

In Windows, it is called "C:" (without quotes). In Linux, it is called "/" (also without quotes). I don't know about Mac, sorry.


How do you get to your c drive on winows vista?

Click on "Start", then click on "Computer". You should see a list of all your drives. You can then double click on your C drive to access it.


What is the name of the C compiler used by Linux?

gcc is the most common C-compiler for GNU/Linux platform.


What is the directory in Linux?

One of the most noticable differences between Linux and Windows is the directory structure. Not only is the format different, but the logic of where to find things is different In Windows, you use this format to access a directory: C:\Folder1\subfolder\file.txt In Linux, this is the basic format: /Folder1/subfolder/file.txt You'll notice that the slashes are forward slashes in Linux versus backslashes in Windows. Also, there is no drive name (C:, D:, etc.) in Linux. At boot, the 'root partition' is mounted at /. All files, folders, devices and drives are mounted under /. Though it is not apparent from this example, it is important to note that files and folders in Linux are case sensitive. /Folder1/subfolder/file.txt is not the same as /folder1/subfolder/file.txt.