converting file systems (FAT32 to NTFS)


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory converting file systems (FAT32 to NTFS)
# 1  
Old 05-22-2004
converting file systems (FAT32 to NTFS)

People who still have FAT32, usaly have 2 or more operating systems running on their computer. An example of that is like runnging OS x over Windows 95 or XP. Stuff like that. On one of my lap tops, I have Linux, Unix, and OS x running on one HD. The OS x runs really really slow thought...I hardly ever use it. Any way. For people who are conncerned about converting their FAT32 File System to NTFS (Windows NT File System...Get it?) you should go ahead and click START, then open up 'RUN' and type in 'COMMAND'. When you type that in it should open up you MS-DOS Command prompt. From there, type in...'convert C:/fs:ntfs'
It will walk you through the whole prosses, and guide you around.

If you were interested in this Post, I hope it has helped you. If my command prompt is wrong please let me know. Thanks...Mike...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Android

Is FAT32 more suitable?

May I assume that there is no point to format your SD Card (assume you have the 32 GB size) to NTFS if the device can support SD Card of up to 32 GB and FAT32 maximum limit is also exactly 32 GB? "Crest Accountants Suite E316, Level 3 Oracle East Building 3 Oracle Boulevard Broadbeach QLD 4218,... (1 Reply)
Discussion started by: PheekaJabal
1 Replies

2. Filesystems, Disks and Memory

Can I format a partition in Linux with FAT32 or NTFS?

I tried in fedora 9 to format a partition with FAT32 or NTFS but failed mkfs -t NTFS /dev/sdb3 mkfs -t FAT32 /dev/sdb3 In both the output says the the device isn't present. the output is something like this: mkfs.FAT32: no device present mkfs.NTFS: no device present I am able to format in... (2 Replies)
Discussion started by: ravisingh
2 Replies

3. Emergency UNIX and Linux Support

Problem mounting NTFS file System in REDHAT Enterprise 5

When I am trying to mount my windows partitions in REDHAT Enterprise Linux 5 using these command mount -t ntfs-3g /dev/sda1 /mnt/ntfs I have encountered with the problem mentioned below FATAL: Module fuse not found. ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root I have... (3 Replies)
Discussion started by: dearanik
3 Replies

4. Filesystems, Disks and Memory

fat32 vs ntfs

http://wiki.linuxquestions.org/wiki/Interoperability Is this no longer accurate about fat32? I just used a 4 gb flash drive to share several video files between Windows XP and Linux Mint. I also plan on sharing several files in the future with that 4 gb flash drive between XP and Mint so I... (4 Replies)
Discussion started by: cokedude
4 Replies

5. Shell Programming and Scripting

converting decimal in other systems with bc

Hallo, how can I convert number systems with bc? I need to convert a decimal number to octal, dual or hex number... (2 Replies)
Discussion started by: wiseguy
2 Replies

6. UNIX for Advanced & Expert Users

Sun Solaris 10 can Read NTFS File ?

Dear Expert, I want read my NTFS file in my other partition, can sun solaris read that, like linux ?? Thank you Regards, Heru (4 Replies)
Discussion started by: heru_90
4 Replies

7. BSD

Mount Fat32,ext3

Hello All, How can i mount ext3 and Fat partition in FreeBSD 6.0 (0 Replies)
Discussion started by: jaibw
0 Replies

8. Linux

File Sharing among NTFS Partition & RH Linux 9 Partitions

Well Guys, will anybody solve my problem? I have installed Win XP and RH Linux 9 (Dual Boot) on an Intel x86 Machine. Everything is going fine except that I cannot share files among the two operating systems. For example, if I download a PDF file from internet and save it in my Win XP partition... (1 Reply)
Discussion started by: Jawwad
1 Replies

9. UNIX for Dummies Questions & Answers

Installing FreeBSD with FAT32

I am installing FreeBSD and I have the FreeBSD Handbook on how to install it. I have read it twice over and I am going to try to do it right the first time. I am running Windows 98 with two hard drives. Only one has the OS on it the other is just a FAT32 partition. I want to put FreeBSD on... (4 Replies)
Discussion started by: escozooz
4 Replies
Login or Register to Ask a Question
MOUNT_NTFS(8)						    BSD System Manager's Manual 					     MOUNT_NTFS(8)

NAME
mount_ntfs -- mount an NTFS file system SYNOPSIS
mount_ntfs [-a] [-i] [-u uid] [-g gid] [-m mask] special node DESCRIPTION
The mount_ntfs command attaches the NTFS filesystem residing on the device special to the global filesystem namespace at the location indi- cated by node. Both special and node are converted to absolute paths before use. This command is normally executed by mount(8) at boot time, but can be used by any user to mount an NTFS file system on any directory that they own (provided, of course, that they have appropri- ate access to the device that contains the file system). The supported NTFS versions include both NTFS4, as used by Microsoft Windows NT 4.0, and NTFS5, as used by Microsoft Windows 2000 and XP. The options are as follows: -a Force behaviour to return MS-DOS 8.3 names also on readdir(). -i Make name lookup case insensitive for all names except POSIX names. -u uid Set the owner of the files in the file system to uid. The default owner is the owner of the directory on which the file system is being mounted. -g gid Set the group of the files in the file system to gid. The default group is the group of the directory on which the file system is being mounted. -m mask Specify the maximum file permissions for files in the file system. FEATURES
NTFS file attributes NTFS file attributes can be accessed in the following way: foo[[:ATTRTYPE]:ATTRNAME] 'ATTRTYPE' is one of identifier listed in $AttrDef file of volume. Default is $DATA. 'ATTRNAME' is an attribute name. Default is none. Examples: To get volume name (in Unicode): # cat /mnt/$Volume:$VOLUME_NAME To read directory raw data: # cat /mnt/foodir:$INDEX_ROOT:$I30 Limited support for writing There is limited writing ability for files. Limitations: o file must be non-resident o file must not contain any holes (uninitialized areas) o file can't be compressed Note that it's not currently possible to create or remove files on NTFS filesystems. Warning: do not mount NTFS filesystems read-write. The write support is not very useful and is not tested well. It's not safe to write to any file on NTFS; you might damage the filesystem. Unless you want to debug NTFS filesystem code, mount the NTFS filesystem read-only. SEE ALSO
mount(2), unmount(2), fstab(5), disklabel(8), mbrlabel(8), mount(8) HISTORY
Support for NTFS first appeared in FreeBSD 3.0. It was ported to NetBSD and first appeared in NetBSD 1.5. AUTHORS
NTFS kernel implementation, mount_ntfs and this manual were originally written by Semen Ustimenko <semenu@FreeBSD.org>. The NetBSD port was done by Christos Zoulas <christos@NetBSD.org> and Jaromir Dolecek <jdolecek@NetBSD.org>. BUGS
The write support should be enhanced to actually be able to change file size, and to create and remove files and directories. It's not very useful right now. If the attempt to mount NTFS gives you an error like this: # mount -t ntfs /dev/wd0k /mnt mount_ntfs: /dev/wd0k on /mnt: Invalid argument make sure that appropriate partition has correct entry in the disk label, particularly that the partition offset is correct. If the NTFS partition is the first partition on the disk, the offset should be '63' on i386 (see disklabel(8)). mbrlabel(8) could help you to set up the disk label correctly. If the NTFS partition is marked as 'dynamic' under Microsoft Windows XP, it won't be possible to access it under NetBSD anymore. BSD
October 31, 2001 BSD