Tagged Questions
5
votes
2answers
473 views
Setting Mercurial's execute bit on Windows
I work on a Mercurial repository that is checked out onto an Unix filesystem such as ext3 on some machines, and FAT32 on others.
In Subversion, I can set the svn:executable property to control ...
4
votes
1answer
61 views
Smallest FAT32 Partition [closed]
I need to create a small partition image (a few MB) with FAT32 filesystem. I came up some contradictory info on the Internet about the minimum size limit of a FAT32 partition.
When I tried to mkfs a ...
4
votes
3answers
2k views
Best file system to transfer 5+GB files between OS X and Windows on removable media
I need to transfer DVD image files between a Windows XP computer and a Mac running Leopard.
The machines are not connected via a fast network, and I have a few USB drives floating around that I want ...
3
votes
2answers
527 views
Why are FAT32 disks limited to 4gb files?
I'm not looking for a workaround; I'd like an explanation. Most of the links I found through Google just tell me that the file limit is 4gb, but not why.
I am aware of the explanation by Wikipedia: ...
3
votes
3answers
531 views
Weird standard for FAT32 >4gb files
I have recently encountered an embedded system with IDE drives that are FAT32 but have >4gb files. It appears to do this by setting the file size in the 32byte directory entry to how many bytes the ...
3
votes
3answers
5k views
2GB limit on file size when using fwrite in C?
I have a short C program that writes into a file until there is no more space on disk:
#include <stdio.h>
int main(void) {
char c[] = "abcdefghij";
size_t rez;
FILE *f = ...
2
votes
1answer
32 views
Using the Sleuth Kit function tsk_fs_open_img() returns an error that the FS is not a FAT FS
I am writing a program using the Sleuth Kit Library that is designed to printout the File Allocation Table of a FAT32 filesystem. Everything in my program works fine until I call the ...
2
votes
2answers
1k views
faking symbolic links on a fat32 formatted storage
I know FAT32, as well as FAT16/12 neither support symbolic links nor hard-links. However I came up with this idea:
The FAT specification describes that every file is associated with a ...
2
votes
3answers
138 views
How can I create a file with invalid Windows timestamps?
I'd like to create a file with an invalid created/modified/accessed timestamp to use in unit tests to ensure that my application can handle files with invalid timestamps. It's a Windows application ...
1
vote
1answer
68 views
Writing FAT32 image file to a RAW partition
Is it possible to write a FAT32 image file to a partition, like a second partition, programmaticaly?
1
vote
1answer
188 views
How to read information about File Allocation Table of USB Mass storage device?
I want to read the File Allocation Table of a USB Mass storage device, which has been formatted using FAT32 File System. Can anyone please provide me the details(functions, structs). I'm trying to do ...
1
vote
1answer
43 views
Garbage data in file after sudden power loss
I am using a flash with FAT32 system. I am continuosly writing data to a file using file system APIs from rtos(SMX). However, after sudden poweroffs, the file contains garbage values just above the ...
1
vote
2answers
432 views
File Allocation Table Reading
I am working on a custom FAT file system explorer and things have been going quite well. However, I want to know if there is a better way to efficiently read/write to the chainmap. For large devices, ...
1
vote
2answers
313 views
What is a good FAT file system for ARM7-TDMI
I'm using the ARM7TDMI-S (NXP processor) and I need a file system capable of reading/writing to an SD card. There are so many available, what have people used and been happy with? One that requires ...
1
vote
1answer
297 views
Determine FileSystem of USB Drive
Is there a way to determine if a USB drive has been formatted as FAT, FAT32 or NTFS?
1
vote
1answer
197 views
Does the FAT filesystem have a signature?
Given the following BPB:
The "MSWIN4.1" string is just the "OEM ID" field, and by Microsoft documentation it should not be used to identify FAT volumes.
The "FAT32 " string is the BS_FilSysType ...
0
votes
2answers
50 views
Difference between FAT Tables created in Linux and Windows [closed]
When I create a FAT32 filesystem with mkfs.vfat in Linux, I see that the first bytes are:
eX mkdosfs
EB 58 90 6D 6B 64 6F 73 66 73
When I create it in Windows, I see:
eX MSDOS5.0
EB 58 90 4D 53 44 ...
0
votes
2answers
126 views
Working with python off of a FAT32 filesystem
I pulled a django project repository (git) to a FAT32 drive and made some changes but when I went to commit, every file is out of date because of it's mode (i.e. - was 100644 is 100755) that's because ...
0
votes
4answers
377 views
The FAT, Linux, and NTFS file systems
I heard that the NTFS file system is basically a b-tree. Is that true? What about the other file systems? What kind of trees are they?
Also, how is FAT32 different from FAT16?
What kind of tree are ...
-1
votes
2answers
389 views
How can i dump a FAT32 file system in a USB in windows / Linux platform?
I have one USB stick having FAT32 type file system.I really in need to dump and analyze that file system in the usb stick in windows or in linux platform.
My ultimate aim is to read the usb's ...