Sponsored Content
Top Forums Programming Trying to write a program to fill up my harddrive (Linux/C) Post 302356802 by jp2542a on Sunday 27th of September 2009 07:04:27 PM
Old 09-27-2009
Too straight forward Jim Smilie I want that last fs block even if the fs has a silly 2 byte block size Smilie

Code:
#include <stdio.h>
#include <errno.h>
#include <sys/vfs.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define MAX_PHYSIO 128		/* size of phsyical io in blocks */

char *outbuf; 

struct statfs vbuf;

int  main() {

int tickle = 5;  /* how often to print progress based on number of writes  */
int count = 0;
int fd;
long outsize;
int j;

/* create the file */

if( (fd = open("fill.all", O_CREAT | O_WRONLY)) < 0 )
{
	perror("fill.all: ");
	exit(fd);
}

/* get filesystem info */

fstatfs( fd, &vbuf);

outsize = vbuf.f_bsize * MAX_PHYSIO;		/* calculate output size */
outbuf = (char *) malloc(outsize);		/* allocate the buffer */
printf("Free blocks: %d\nOutput Buffer size: %d\n", vbuf.f_bfree, outsize);

j = tickle ;  

while( write(fd, outbuf, outsize) > 0 )
{
	if ( j == 0)
	{
		fstatfs(fd ,&vbuf);
		printf("Blocks left: %d\n", vbuf.f_bfree);
		j = tickle;
	}
	else
		j--;
}

fstatfs( fd, &vbuf);

if (vbuf.f_bfree > 0)
	write(fd, outbuf, vbuf.f_bfree);

printf("done\n");
}

For extra fun you can add an fsync() call after the last write call. Could lock up your system for a bit ... depending on your RAID type and implementation Smilie
 

10 More Discussions You Might Find Interesting

1. Programming

how can i write process_pool program?

i want to write a server process in the sco unix 505.The server process will fork multi-child-processes when it first starts.once parent process listen and accept any connect from client,it will transfer the connected sockfd to any free child process and child process will read client request from... (4 Replies)
Discussion started by: hit
4 Replies

2. UNIX for Dummies Questions & Answers

How do you defragment you harddrive in unix (Madrake Linux 9.0)?

Subject says it all... (3 Replies)
Discussion started by: pudad
3 Replies

3. Linux

Mount a harddrive in linux.

Hey people i'm very new to linux. I just put a extra 200 gig maxtor HD in my computer. Linux can tell it's there...but it says it cant mount it. How do i mount it manually? thanks, John (2 Replies)
Discussion started by: RKJV
2 Replies

4. Shell Programming and Scripting

write a c program that simulates ls command

i need the a c program that simulates the "ls" command:b: (5 Replies)
Discussion started by: madhu.it
5 Replies

5. UNIX for Dummies Questions & Answers

How to copy MBR from old harddrive to new harddrive?

How do I copy the master boot record from one harddrive to another or how to install just the MBR? (7 Replies)
Discussion started by: shorty
7 Replies

6. Shell Programming and Scripting

how to write next line program

Hi, I am having an input file which contains a group of words,if one specific word comes which goes to next line. example: input file===> shashi country= india comapny= none shashi shashi company= NONE shashi=my name output===> shashi country= india comapny= none shashi shashi... (6 Replies)
Discussion started by: hegdeshashi
6 Replies

7. Shell Programming and Scripting

how to write a shell program for back up

Hello.. I want to take back up from server to local machine and i dont know how to do it using cron and sftp . I can do it by manually typing password in the terminal and taking the back up. How to create a 'backup.sh' file for doing all the back up process and shut down automatically after... (1 Reply)
Discussion started by: deepoos
1 Replies

8. Shell Programming and Scripting

How do you write this program/script?

I need help with the following. 1) Write a program in any language that takes a single integer array parameter and returns the decimal average of the input values. 2) Write a program, in any language, that prints the integers from 1 to 10, along with a cumulative sum of the integers printed... (1 Reply)
Discussion started by: sqa4life
1 Replies

9. UNIX for Dummies Questions & Answers

How to write files for compiling a program.?

I am hoping someone can give me a good free web resource for writing code to compile a binary executable. I am getting fairly decent at writing shell script, are the .f files just shell scripts? Also, I don't know where to begin on the makefiles. The reason I am curious is because I have been... (6 Replies)
Discussion started by: butson
6 Replies

10. Fedora

Partitioning harddrive for installing Linux alongside win 7.

I'm planning on using two Linux OS's alongside win 7, one being Fedora KDE 30. So to prepare for the install I partitioned my harddrive using the Minitool Partition Wizard. I have a 320 GB hdd, so I nade one partiotion about 80 GB forFedora and then left about 70 GB as unused, to later... (2 Replies)
Discussion started by: AndersA
2 Replies
VBUF(1) 						      General Commands Manual							   VBUF(1)

NAME
vbuf - Virtual Ring Buffer shell interface SYNOPSIS
vbuf [options] DESCRIPTION
This manual page documents briefly the vbuf command. vbuf is a program to glue two programs (a producer and a consumer) together, one of which not being able to fulfil the other's constant data rate requirements. OPTIONS
-h Show short help message. --help Show long help message. -p, --progress Show progress status line. -q, --quiet Suppress progress status line. The default is to show the progress display. -s size, --size=size Set buffer size in bytes. Suffixes k, m, and g may be used. The actual size used will be rounded up for system mapping require- ments. The default is 1m, or 1048576 bytes. -t time, --time=seconds Set time in seconds between progress display refreshes. Fractions of a second may be used. Default is 1.500000 seconds. -b, --bits Set progress rate display units to bits per second. -B, --bytes Set progress rate display units to bytes per second. The default is bytes. -d, --decimal Set progress rate display base to decimal. The default is decimal. -x, --hexadecimal Set progress rate display base to hexadecimal. --octal Set progress rate display base to octal. -i file, --input=file Specify an input file to be opened and used instead of using stdin. -o file, --output=file Specify an output file to be opened and used instead of using stdout. -M file, --mapfile=file Specify a file which will be used for backing store for the virtual ring buffer. The allows using filesystem space in case swap space is full. -r bytes, --read-min=bytes Specify the minimum number of bytes to be requested by read. Reading will not happen unless at least this much buffer space is available. The default is 1. -R bytes, --read-max=bytes Specify the maximum number of bytes to be requested by read. Reading will not request more even if more buffer space is available. The default is the full buffer size. -w bytes, --write-min=bytes Specify the minumum number of bytes to be written. Writing will not be done unless at least this much data is available. Once end of file is reached on input, a smaller amount may be written. The default is 1. -W bytes, --write-max=bytes Specify the maximum number of bytes to be written. Writing will not write more each time even if more data is available in the buf- fer. The default is the full buffer size. AUTHOR
VRB and vbuf were written by Phil Howard <vrb@ipal.org>. This manual page was written by Szekelyi Szabolcs <cc@mail.3d.hu>, for the Debian project (but may be used by others). 2006 Sep 5 VBUF(1)
All times are GMT -4. The time now is 06:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy