Sponsored Content
Operating Systems Linux C++ Code to Access Linux Hard Disk Sectors (with a LoopBack Virtual Hard Disk) Post 302491389 by Corona688 on Thursday 27th of January 2011 09:43:40 AM
Old 01-27-2011
Why are you opening and closing the file every time you do something?

This especially becomes useless:
Code:
/**
Seek out a Particular Block In the Disk
Block_SIZE=512bytes
*/
int seekDisk()
{
    cout<<"Seeking the File Disk..."<<endl;
    int fd=open(DISK_NAME, O_RDWR);
	if(lseek(fd, 0L, SEEK_SET) != 0L)
        {
                perror("Couldn't seek");
                close(fd);
                return(1);
        }
    close(fd);
    return 0;
}

...because the seek position gets reset every time you open it anyway. You should open it once and keep using the number it gives you. Your read code would end up looking like int readFromDisk(int fd, char *buffer,int length) { ... } iow exactly like normal read...so you might as well get used to ordinary read call instead.

You should also be doing something more with the number of bytes written and read than just printing it. read() and write() will occasionally surprise you with less than you asked for.
 

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
GStreamer::Event::Seek(3pm)				User Contributed Perl Documentation			       GStreamer::Event::Seek(3pm)

NAME
GStreamer::Event::Seek - Structure describing events that are passed up and down a pipeline METHODS
GstEvent = GStreamer::Event::Seek->new ($rate, $format, $flags, $cur_type, $cur, $stop_type, $stop) o $rate (double) o $format (GStreamer::Format) o $flags (GStreamer::SeekFlags) o $cur_type (GStreamer::SeekType) o $cur (64 bit integer) o $stop_type (GStreamer::SeekType) o $stop (64 bit integer) scalar = $event->cur scalar = $event->cur_type scalar = $event->flags scalar = $event->format scalar = $event->rate scalar = $event->stop scalar = $event->stop_type ENUMS AND FLAGS
enum GStreamer::Format o 'undefined' / 'GST_FORMAT_UNDEFINED' o 'default' / 'GST_FORMAT_DEFAULT' o 'bytes' / 'GST_FORMAT_BYTES' o 'time' / 'GST_FORMAT_TIME' o 'buffers' / 'GST_FORMAT_BUFFERS' o 'percent' / 'GST_FORMAT_PERCENT' flags GStreamer::SeekFlags o 'none' / 'GST_SEEK_FLAG_NONE' o 'flush' / 'GST_SEEK_FLAG_FLUSH' o 'accurate' / 'GST_SEEK_FLAG_ACCURATE' o 'key-unit' / 'GST_SEEK_FLAG_KEY_UNIT' o 'segment' / 'GST_SEEK_FLAG_SEGMENT' o 'skip' / 'GST_SEEK_FLAG_SKIP' enum GStreamer::SeekType o 'none' / 'GST_SEEK_TYPE_NONE' o 'cur' / 'GST_SEEK_TYPE_CUR' o 'set' / 'GST_SEEK_TYPE_SET' o 'end' / 'GST_SEEK_TYPE_END' SEE ALSO
GStreamer COPYRIGHT
Copyright (C) 2005-2011 by the gtk2-perl team. This software is licensed under the LGPL. See GStreamer for a full notice. perl v5.14.2 2012-03-01 GStreamer::Event::Seek(3pm)
All times are GMT -4. The time now is 10:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy