Tagged Questions
The sector tag has no wiki summary.
3
votes
1answer
142 views
How can I write a hard drive sector as reserved?
I am hex editing a hard disk and I would like to mark some hard drive sectors as reserved so that they are not overwritten by Windows (Vista or 7). I think this is possible, since during a defrag, the ...
2
votes
2answers
74 views
Reading boot sector of a FAT32 file system
I am writing a program and I need to access some information in the boot sector about the FAT32 file system that I have mounted.
Here is what I did, fully commented.
int main (void) {
unsigned ...
2
votes
1answer
74 views
What kind of knowledge is required to program a simple safe working boot sector?
I know knowledge of assembly is the very first thing needed (which I have), and I also know that Boot Sector code tells the processor to boot/execute a program (or OS), but what I don't is the HOW of ...
2
votes
1answer
77 views
Usage of Sector/Sphere in production systems
I just found out about sector/sphere and am interested to use it in future systems.
Is anyone currently using sector/sphere (http://sector.sourceforge.net/) in production systems? If so, what are ...
2
votes
2answers
362 views
How can I draw a circle sector with the ellipse class?
I would like to make a sector of a circle on WP7. I tried to do this with the ellipse class and I found a lot of solution, which make a gauge or pie chart or something, but I need just the essence.
...
2
votes
1answer
272 views
pieslice() function in C
How can I draw a major pieslice in C, using the function pieslice()?
pieslice(X-centre,Y-centre,StrtAngle,EndAngle,Radius).
I am trying to draw a major sector or pieslice in C, using the pieslice ...
2
votes
1answer
344 views
How to find floppy\ CD sector size in Linux?
How can I get the sector size for floppy and CD disks in Linux, via C++ code?
Thank you all.
2
votes
4answers
657 views
Reading a sector on the boot disk
This is a continuation of my question about reading the superblock.
Let's say I want to target the HFS+ file system in Mac OS X. How could I read sector 2 of the boot disk? As far as I know Unix only ...
1
vote
1answer
91 views
Can I determine OS installed in hard disk using sectors level data?
I would ask about the possibility of determining which operating system is installed in a hard drive using direct read of sectors information? If, what sector should I read and how can I specify a ...
1
vote
1answer
271 views
How to get total disc sectors in medium?
I would like to get the number of total sectors on a medium inserted in CD-ROM drive. Is there method for this in C#? I've checked the Management class in .NET but that does not seem to have a method.
...
1
vote
4answers
1k views
Get sector location of a file
Based on a file name, or a file handle, is there a Win-API method of determining what physical sector the file starts on?
0
votes
2answers
39 views
Sectors written when over-writing a file?
Imagine there is a file of size 5 MB. I open it in write mode in C and then fill it up with junk data of exactly 5 MB. Will the same disk sectors previously used be overwritten or will the OS select ...
0
votes
0answers
67 views
How to Read and Write a single sector in SD Card, using Android NDK
How to Read and Write a single sector in SD Card, using Android NDK C/C++?
Is it possible, like this:
http://www.8051projects.net/mmc-sd-interface-fat16/reading-writing-sd-mmc-sector.php
I know it is ...
0
votes
1answer
47 views
How to specific redirect to a part of a page with joomla
I have this problem: my website have a big logo which full all the screen for common resolutions, which is hard to understand that the content is actually changing when the user clicks in a menu ...
0
votes
2answers
395 views
How to draw a circle sector on an html5 canvas?
I'm trying to make a sort of pie-chart shape on a canvas element, however I can't seem to find any function that does this by itself. I only seem to be able to draw full circles and segments. Is there ...
0
votes
0answers
40 views
about data writing on disk and formula for head
if data is written like following manner,
if logical sector is linear along the track,
and if the tracks are laid along circle of same radius,
I think getting absolute head's fomula is = logical ...
0
votes
0answers
156 views
Seeking to an offset within a sector on a disk
I am trying to go to a specific offset like I always would in local files, but I need to be able to do this on a physical disk opened from CreateFile. I understand the sector logic and such and I ...
0
votes
1answer
208 views
How to use Int13H Ext to read /write all sectors on each partition of harddisk (>8GB)
I use C- standard with standard lib to write a program to read sectors on harddisk on non-OS
Please tell me more details how can I specify and read all part of sectors on partition of harddisk?
E.g ...
0
votes
1answer
928 views
How to read individual sectors/clusters using DeviceIoControl() in Windows?
I dropped my laptop while Windows was preparing to hibernate and as a result, I got a head crash on the hard drive. (Teaches me to get a hard drive and/or laptop with a freefall sensor next time ...
0
votes
2answers
1k views
Recently, i am on a project which needs raw read / write sector of drives
Before, I post a question here asking for advice on how to read and write data from and into drive, not via file label like "aaa.txt", but just sectors..
I was advised to try read and write....
but ...