Penguin
Diff: AccessingWindowsPartitions
EditPageHistoryDiffInfoLikePages

Differences between current version and previous revision of AccessingWindowsPartitions.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 16 Last edited on Friday, September 15, 2006 3:41:56 pm by IanMcDonald
Older page: version 15 Last edited on Monday, July 31, 2006 4:38:44 pm by AristotlePagaltzis Revert
@@ -15,9 +15,9 @@
 Next, you need two pieces of information: 
  
 # The device name for the Windows [Partition]. This is ''usually'' <tt>/dev/hda1</tt>, but if you have multiple Windows partitions, multiple HardDisk~s or an otherwise out-of-the-ordinary setup, it may be something else. We'll assume <tt>/dev/hda1</tt> here, but if yours is different, then substitute it accordingly. 
  
-# MicrosoftWindows [Partition]s come in two flavours: [FAT], a crummy old format, and [NTFS], a crummy modern format. You need to know which one you have. Windows 9x/ME can only work with [FAT] partitions, but Windows 2000 and XP can do both – they default to [NTFS], though, so that's probably what you have. 
+# MicrosoftWindows [Partition]s come in two flavours: [FAT], a crummy old format, and [NTFS], a more modern format. You need to know which one you have. Windows 9x/ME can only work with [FAT] partitions, but Windows 2000 and XP can do both – they default to [NTFS], though, so that's probably what you have. 
  
 To mount an [NTFS] partition, you use <tt>mount -t ntfs /dev/hda1 /mnt/windows</tt>; to mount a [FAT] partition, you use <tt>mount -t vfat /dev/hda1 /mnt/windows</tt>. 
  
 !! Making it permanent