Sponsored Content
Operating Systems Linux C++ Code to Access Linux Hard Disk Sectors (with a LoopBack Virtual Hard Disk) Post 302491453 by Corona688 on Thursday 27th of January 2011 01:12:20 PM
Old 01-27-2011
Floppies use the FAT12 filesystem, which is good at not wasting space, but very hard to use. Its FAT entries are, as the name suggests, twelve bits in size. That's one and a half bytes, like this:
Code:
00 10 15 05 80 90

You can't make an array of that. You'd have to tease the data out the hard way, figuring out where the entry starts, which whole bytes and which half bytes should be retrieved, etc, etc.

You don't need to use the loop device at all to make the DOS filesystem, just to mount it. mkfs.msdos will warn you a file's not a device but write to it anyway.

Be sure to run losetup -d /dev/loop0 when you're done with that tutorial, or you'll find the loop device still busy when you try to use it for something else.

The instructions I posted in the post before yours should work fine for creating a FAT16 filesystem on a file 500 megabytes or smaller. FAT16 entries fit nicely in an array of 16-bit integers.




You should start making data structures to hold information so you don't have to find absolutely everything by byte offsets all the time:

Code:
#include <stdint.h> // standard sized integer types
// to make sure the compiler doesn't insert extra space in the structure
#pragma pack(push,1)
typedef struct bootsector
{
        uint8_t jump[3];
        uint8_t oemname[8];
        uint16_t bytes_per_sector;
        uint8_t bytes_per_cluster;
        uint16_t reserved;
        uint8_t fats;
        uint16_t root_entries;
        uint16_t total_sectors;
        uint8_t media_descriptor;
        uint16_t sectors_per_fat;
        uint16_t sectors_per_track;
        uint16_t heads;
        uint32_t hidden;
        uint32_t total;
} bootsector;
// reset structure definitions to normal
#pragma pack(pop);

...

bootsector bs;
read(fd, &bs, sizeof(bs));

fprintf(stderr, "%d bytes per sector\n", bs.bytes_per_sector);

All that's gleaned from information on the wiki, and it appears to match the dump I posted above(the OEM name is indeed filled with garbage for some reason!)

Look if the values you get in that structure seem normal. Try to use the information in it to find other structures. See if you can find the information you need to piece the partition together. You have to understand what's going on in those structures before you can alter them properly.

I hope this gives you the idea as I don't have the time to do absolutely everything for you.

Last edited by Corona688; 01-27-2011 at 02:17 PM..
This User Gave Thanks to Corona688 For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

hard disk problems

Hi all I am facing a strange problem. I am using a sun ultra10 spark machine. first i took a 20gb IDE hard disk and installed solaris 5.8. But due to some requirement i have to reinstall the OS but this time solaris 2.6. and now the hard disk capacity is only showing 8gb. Where the 12gb... (3 Replies)
Discussion started by: Prafulla
3 Replies

2. Filesystems, Disks and Memory

hard disk meltdown

I had an issue with a second hard disk in my machine. I have a sparc station running solaris 7. It was working fine but now it wont mount on boot up and when you try to mount it manually it gives an I/O error. I tried a different disk as a control which was fine. What I want to know is if my... (3 Replies)
Discussion started by: Henrik
3 Replies

3. Filesystems, Disks and Memory

Adding hard Disk

Hi all, I am using SCO Openserver V and I want to add one more harddisk (/dev/hd1) Hw can I do it? (1 Reply)
Discussion started by: skant
1 Replies

4. UNIX Desktop Questions & Answers

Hard Disk

I have a cuestion. How Can I to add other hard disk to my computer? I need to configurate anyone? (4 Replies)
Discussion started by: hmaraver
4 Replies

5. UNIX for Dummies Questions & Answers

Hard Disk Check

How can we check the number of hard disks (both internal & external) in a server, their capacity and serial number (5 Replies)
Discussion started by: muneebr
5 Replies

6. UNIX for Dummies Questions & Answers

Hard Disk at 99% Help!

:eek: I use this Solaris to run CMS a call acounting software package for my job. No one could run reports today because it said the this when you logged on "The following file systems are low, and could adversely affect server performance: File system /: 99%full" Can some one please explain... (9 Replies)
Discussion started by: mannyisme
9 Replies

7. UNIX for Dummies Questions & Answers

How to increase hard disk in linux

Hi guys i have created a linux machine in virtual box now i want to add some hard disk space into it. How would i do this. Please help. Machine details are as below # lsb_release -a LSB Version: :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch Distributor ID:... (7 Replies)
Discussion started by: pinga123
7 Replies

8. SCO

declare disk driver for IDE hard disk

hi I've a fresh installation of SCO 5.0.7 on the IDE hard disk. For SCSI hard disk I can declare, for example blc disk driver using: # mkdev hd 0 SCSI-0 0 blc 0but it works for IDE hard disk? (3 Replies)
Discussion started by: ccc
3 Replies

9. Red Hat

Need help for getting hard-disk traces

When we write a programme,we declare variables and compiler allocates memory to them.I want to get access to the physical block number of hard-disk where actually the data is stored by the programme " Some one help me out... (1 Reply)
Discussion started by: nagraz007
1 Replies

10. UNIX for Advanced & Expert Users

Need help for getting hard-disk traces

When we write a programme,we declare variables and compiler allocates memory to them.I want to get access to the physical block number of hard-disk where actually the data is stored by the programme " Some one help me out... (3 Replies)
Discussion started by: nagraz007
3 Replies
All times are GMT -4. The time now is 01:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy