Error need help


 
Thread Tools Search this Thread
Top Forums Programming Error need help
# 1  
Old 07-04-2006
Error need help

Dear all

I am receiving the bellow error. Please help me how to over the error.

couliba@linux:~/bin/Ga> make find_rules
cc find_rules.c -o find_rules
In file included from find_rules.c:19:
util.h:15: error: syntax error before '*' token
util.h:15: error: conflicting types for `strerror'
/usr/include/string.h:256: error: previous declaration of `strerror'
util.h:15: warning: data definition has no type or storage class
find_rules.c: In function `main':
find_rules.c:203: warning: passing arg 1 of `strerror' makes pointer from integer without a cast
find_rules.c:248: warning: passing arg 1 of `strerror' makes pointer from integer without a cast
find_rules.c:315: warning: passing arg 1 of `strerror' makes pointer from integer without a cast
make: *** [find_rules] Error 1
couliba@linux:~/bin/Ga>
# 2  
Old 07-04-2006
post here source of find_rules.c plz.
# 3  
Old 07-05-2006
find_rules.c code

Dear Hitori

This is the code, please help me to do any correction. I will appreciate

/*----------------------------------------------------------------------------

File: find_rules.c
Date: March 7, 1997

Copyright (c) Risto Karjalainen. All rights reserved.

This program finds technical trading rules for a stock index.

----------------------------------------------------------------------------*/

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <errno.h>
#include <ctype.h>
#include <float.h>

#include "util.h"
#include "gp.h"
#include "gp_util.h"
#include "find_util.h"
#include "find_functions.h"
#include "find_template.h"

static pop_t population;
static int date[MAX_DATA];
static float price[MAX_DATA];
static float norm_price[MAX_DATA];
static float compounded[MAX_DATA];
static float riskfree[MAX_DATA];
static trade_t trades[MAX_TRADES];

main (argc, argv)
int argc;
char *argv[];
{
int generations;
stat_t statistics;
char data_file[256];
char log_file[256];
char rule_file[256];
FILE *df = NULL;
FILE *lf = NULL;
FILE *rf = NULL;
float cost;
int last_day[MAX_YEARS];
int delay;
int normalize;
int n_stagnated;
int max_stagnated;
int n_clusters;
cluster_t cluster[MAX_GENOMES];
float fitness;
float selection;
float target;
float max_fitness[MAX_TRIALS];
float max_selection[MAX_TRIALS];
float fitness_level[MAX_GENERATIONS];
float selection_level[MAX_GENERATIONS];
int count;
int size;
int n_collection[MAX_TRIALS];
int g_collection[MAX_TRIALS];
int max_rules_per_trial;
cluster_t collection[MAX_TRIALS][MAX_COLLECTION];
genome_t rule[MAX_TRIALS][MAX_COLLECTION];
int order[MAX_GENOMES];
int offspring;
float annual_return;
float cumul_return;
float raw;
float excess;
float range[2];
float best;
float breakpoint;
int n_trades;
int i,j,k;
int first_year;
int n_years;
int trial;
int max_trials;
int verbose;
int t1,t2;
int s1,s2;
int failed;
int dt;
int t;
int g;
long e;
int n;

max_trials = MAX_TRIALS;
max_rules_per_trial = 1;
target = 0.0;
breakpoint = FLT_MAX;
generations = MAX_GENERATIONS/2;
e = seed();
normalize = TRUE;
cost = 0.003;
delay = 0;
verbose = FALSE;
t1 = t2 = s1 = s2 = 0;

strcpy(data_file, "");
strcpy(log_file, "");
strcpy(rule_file, "");

population.size = MAX_GENOMES/4;
population.max_nodes = MAX_NODES;
population.max_depth = MAX_DEPTH;
population.min_depth = MIN_DEPTH;
population.pressure = PRESSURE;
population.prob_mutations = PROB_MUTATIONS;
population.type = Boolean;
population.env = range;

range[0] = 0.0;
range[1] = 2.0;

/*----------------------------------------------------------------------------
Parse the command line and check that the parameters are valid.
----------------------------------------------------------------------------*/
if (argc == 1)
{
print_help_message(stderr, argv[0]);
exit(1);
}

if (read_cline(argc, argv, &max_trials, &max_rules_per_trial, &target, &breakpoint,
&generations, &e, data_file, log_file, rule_file, &normalize,
&t1, &t2, &s1, &s2, &cost, &delay, &(population.type), &(population.size),
&(population.max_nodes), &(population.min_depth),
&(population.max_depth), range, &verbose))
{
if (failed = !(1 <= max_trials) && (max_trials <= MAX_TRIALS))
fprintf(stderr, "(%s) Invalid value for the number of trials (%d) -- expected an integer between %d and %d.\n",
argv[0], max_trials, 1, MAX_TRIALS);
else if (failed = !(1 <= max_rules_per_trial) &&
(max_rules_per_trial <= MAX_COLLECTION))
fprintf(stderr, "(%s) Invalid value for the number of rules per trial (%d) -- expected an integer between %d and %d.\n",
argv[0], max_rules_per_trial, 1, MAX_COLLECTION);
else if (failed = !(breakpoint > target))
fprintf(stderr, "(%s) Invalid value for the breakpoint (%f) -- expected a real number greater than %f.\n",
argv[0], breakpoint, target);
else if (failed = !(1 <= generations) && (generations <= MAX_GENERATIONS))
fprintf(stderr, "(%s) Invalid value for the number of generations (%d) -- expected an integer between %d and %d.\n",
argv[0], generations, 1, MAX_GENERATIONS);
else if (failed = !strcmp(data_file, ""))
fprintf(stderr, "(%s) No data file specified.\n", argv[0]);
else if (failed = !(cost >= 0.0))
fprintf(stderr, "(%s) Invalid value for the transaction cost (%f) -- expected a positive real number.\n",
argv[0], cost);
else if (failed = (delay < 0))
fprintf(stderr, "(%s) Invalid value for execution delay (%d) -- expected a positive number.\n",
argv[0], delay);
else if (failed =!(10 <= population.size) &&
(population.size <= MAX_GENOMES))
fprintf(stderr, "(%s) Invalid value for population size (%d) -- expected an integer between %d and %d.\n",
argv[0], population.size, 10, MAX_GENOMES);
else if (failed =!(1 <= population.max_nodes) &&
(population.max_nodes <= MAX_GENOMES))
fprintf(stderr, "(%s) Invalid value for node limit (%d) -- expected an integer between %d and %d.\n",
argv[0], population.max_nodes, 1, MAX_NODES);
else if (failed =!(1 <= population.max_depth) &&
(population.max_depth <= MAX_DEPTH))
fprintf(stderr, "(%s) Invalid value for max tree depth (%d) -- expected an integer between %d and %d.\n",
argv[0], population.max_depth, 1, MAX_DEPTH);
else if (failed =!(1 <= population.min_depth) &&
(population.min_depth <= population.max_depth))
fprintf(stderr, "(%s) Invalid value for min tree depth (%d) -- expected an integer between %d and %d.\n",
argv[0], population.max_depth, 1, population.min_depth);

if (failed)
exit(1);
}
else
{
printf("(%s) Parsing command line failed.\n", argv[0]);
exit(1);
}

max_stagnated = (generations+1)/2;

/*----------------------------------------------------------------------------
Define the function templates which determine the type of nodes that
can be part of the trees created during the evolution.
----------------------------------------------------------------------------*/
define_type(Boolean, type_label[Boolean]);
define_type(Real, type_label[Real]);
define_type(Variable, type_label[Variable]);

for (i = 0; i < sizeof(template)/sizeof(template_t); i++)
define_function(template[i]);

define_tree(population.max_nodes, sizeof(data_t));

/*----------------------------------------------------------------------------
Read in the data.
----------------------------------------------------------------------------*/
if (!(df = fopen(data_file, "r")))
{
fprintf(stderr, "(%s) Cannot open %s: %s\n", argv[0], data_file, strerror(errno));
exit(1);
}

if (!init_data(df, &first_year, &n_years))
exit(1);

printf("Data in file '%s' spans years %d-%d.\n\n", data_file, first_year, first_year+n_years-1);

if (n_years < 2)
{
fprintf(stderr, "(%s) Not enough data: At least %d years needed.\n", argv[0], 2);
exit(1);
}

read_data(df, first_year, n_years, date, price, compounded, riskfree, last_day);

normalize_price(price, norm_price, NORMALIZED, TRADING_YEAR, last_day[n_years-1]+1);

fclose(df);

/*----------------------------------------------------------------------------
Check that the training and selection periods are valid.
----------------------------------------------------------------------------*/
if (failed = !((first_year+1 <= t1) && (t1 <= first_year+n_years-1) &&
(t1 <= t2) && (t2 <= first_year+n_years-1)))
fprintf(stderr, "(%s) Invalid training period (%d-%d) -- a range within %d-%d expected.\n", argv[0], t1, t2, first_year+1, first_year+n_years-1);
else if (failed = !((first_year+1 <= s1) && (s1 <= first_year+n_years-1) &&
(s1 <= s2) && (s2 <= first_year+n_years-1)))
fprintf(stderr, "(%s) Invalid selection period (%d-%d) -- a range within %d-%d expected.\n", argv[0], s1, s2, first_year+1, first_year+n_years-1);

if (failed)
exit(1);

t1 -= first_year;
t2 -= first_year;
s1 -= first_year;
s2 -= first_year;

/*----------------------------------------------------------------------------
Open a log file and print out the parameters.
----------------------------------------------------------------------------*/
if (!strcmp(log_file, ""))
lf = NULL;
else if (!(lf = fopen(log_file, "w")))
fprintf(stderr, "(%s) Cannot open %s: %s\n", argv[0], log_file, strerror(errno));
else
{
fprintf(lf, "\nProgram: %s (%s)\n\n", __FILE__, __DATE__);
fprintf(lf, "Number of trials = %d\n", max_trials);
fprintf(lf, "Number of rules/trial = %d\n", max_rules_per_trial);
fprintf(lf, "Target fitness = %.4f\n", target);
fprintf(lf, "Breakpoint fitness = %.4f\n", breakpoint);
fprintf(lf, "Maximum number of generations/trial = %d\n", generations);
fprintf(lf, "Population size = %d\n", population.size);
fprintf(lf, "Max number of nodes = %d\n", population.max_nodes);
fprintf(lf, "Max tree depth = %d\n", population.max_depth);
fprintf(lf, "Min tree depth = %d\n", population.min_depth);
fprintf(lf, "Selection pressure = %.2f\n", population.pressure);
fprintf(lf, "Mutation probability = %.3f\n", population.prob_mutations);
fprintf(lf, "Population type: %s\n", type_label[population.type]);
fprintf(lf, "Seed for random number generator = %d\n", e);
fprintf(lf, "Data file = '%s'\n", data_file);
fprintf(lf, "Log file = '%s'\n", log_file);
fprintf(lf, "Rule file = '%s'\n", rule_file);
fprintf(lf, "Data are %s normalized.\n", normalize ? "" : "not ");
fprintf(lf, "One-way transaction cost = %.3f\n", cost);
fprintf(lf, "Range for random numbers = (%.3f,%.3f)\n", range[0], range[1]);
fprintf(lf, "First training year = %d\n", first_year+t1);
fprintf(lf, "Last training year = %d\n", first_year+t2);
fprintf(lf, "First selection year = %d\n", first_year+s1);
fprintf(lf, "Last selection year = %d\n", first_year+s2);
fprintf(lf, "Execution delay = %d\n", delay);
fprintf(lf, "\n");
fflush(lf);
}

/*----------------------------------------------------------------------------
Print the compounded returns for holding the index.
----------------------------------------------------------------------------*/
printf("Annual and cumulative compounded returns:\n");

for (t = t1-1; t < t2; t++)
{
annual_return = compounded_return(compounded, t+1, t+1, last_day, cost);
cumul_return = compounded_return(compounded, t1, t+1, last_day, cost);

printf(" Year %d:\t%+.4f\t\t%+.4f\n", first_year+t+1, annual_return, cumul_return);
}

printf("\n");

/*----------------------------------------------------------------------------
Allocate memory for the trading rules.
----------------------------------------------------------------------------*/
for (i = 0; i < max_trials; i++)
for (j = 0; j < max_rules_per_trial; j++)
{
rule[i][j].chromosome = new_tree(sizeof(data_t));
collection[i][j].genome = &(rule[i][j]);
}

/*----------------------------------------------------------------------------
Open a text file to hold the saved rules. If none specified, use stdout.
----------------------------------------------------------------------------*/
if (!strcmp(rule_file, ""))
{
rf = stdout;
fprintf(stderr, "(%s) Rules will be printed on stdout (use option -r to specify a rule file).\n", argv[0]);
}
else if (!(rf = fopen(rule_file, "w")))
{
fprintf(stderr, "(%s) Cannot open %s: %s\n", argv[0], rule_file, strerror(errno));
exit(1);
}

/*----------------------------------------------------------------------------
Loop over the trials.
----------------------------------------------------------------------------*/
for (trial = 0; trial < max_trials; trial++)
{
printf("Trial %d starts...\n\n", trial+1);
if (lf) fprintf(lf, "Trial %d starts...\n\n", trial+1);

max_fitness[trial] = max_selection[trial] = -FLT_MAX;

n_collection[trial] = 0;
n_stagnated = 0;

/*----------------------------------------------------------------------------
Create the initial population.
----------------------------------------------------------------------------*/
create_population(&population, statistics);

/*----------------------------------------------------------------------------
Evolve new generations. At each generation, evaluate each new trading
rule, with the fitness equal to the average annualized excess return.
----------------------------------------------------------------------------*/
for (g = 0; g < generations; g++)
{
for (i = 0; i < population.size; i++)
{
offspring = (g == 0) ? i : create_offspring(&population, statistics);

eval_genome(normalize ? norm_price : price, compounded, t1, t2,
last_day, delay, &(population.genome[offspring]),
&n_trades, trades);

raw = compute_return(compounded, riskfree, t1, t2, last_day,
n_trades, trades, cost);

excess = raw - compounded_return(compounded, t1, t2, last_day, cost);

population.genome[offspring].fitness = excess/(t2-t1+1);
}

/*----------------------------------------------------------------------------
Compute statistics about the evolution.
----------------------------------------------------------------------------*/
compute_statistics(&population, statistics);

/*----------------------------------------------------------------------------
Cluster the population, grouping together rules with identical fitness.
----------------------------------------------------------------------------*/
n_clusters = cluster_population(&population, cluster);

printf("Generation %d (%d clusters, average fitness = %.4f)\n\n",
g, n_clusters, statistics[g].avg_fitness);
if (lf) fprintf(lf, "Generation %d (%d clusters, average fitness = %.4f)\n\n",
g, n_clusters, statistics[g].avg_fitness);

n_stagnated++;

/*----------------------------------------------------------------------------
Break if fitness in the training period is too high.
----------------------------------------------------------------------------*/
if (statistics[g].avg_fitness > breakpoint)
{
printf("Population fitness exceeded the breakpoint (%.4f)\n\n", breakpoint);
if (lf) fprintf(lf, "Population fitness exceeded the breakpoint (%.4f)\n\n", breakpoint);

break;
}
else if (statistics[g].avg_fitness > target)
{
count = 0;
fitness_level[g] = selection_level[g] = 0.0;

/*----------------------------------------------------------------------------
Evaluate the rules in the selection period.
----------------------------------------------------------------------------*/
for (i = 0; i < n_clusters; i++)
{
if (cluster[i].genome->fitness < target)
continue;

eval_genome(normalize ? norm_price : price, compounded,
s1, s2, last_day, delay, cluster[i].genome,
&n_trades, trades);

raw = compute_return(compounded, riskfree, s1, s2,
last_day, n_trades, trades, cost);

excess = raw - compounded_return(compounded, s1, s2, last_day, cost);

selection = excess/(s2-s1+1);

if (verbose)
{
printf("\tCluster %d (%d rules): fitness = %.4f, selection = %.4f (%d trades)\n",
i+1, cluster[i].size, cluster[i].genome->fitness,
selection, n_trades/(s2-s1+1));
if (lf) fprintf(lf, "\tCluster %d (%d rules): fitness = %.4f, selection = %.4f (%d trades)\n",
i+1, cluster[i].size, cluster[i].genome->fitness,
selection, n_trades/(s2-s1+1));
}

/*----------------------------------------------------------------------------
Save a rule if it improves the excess returns in the selection period.
----------------------------------------------------------------------------*/
if ((count < max_rules_per_trial) && (selection > max_selection[trial]))
{
max_fitness[trial] = cluster[i].genome->fitness;
max_selection[trial] = selection;

fitness_level[g] += cluster[i].genome->fitness;
selection_level[g] += selection;

if (n_stagnated > 0)
{
n_stagnated = 0;

g_collection[trial] = g;
n_collection[trial] = 0;
}

collection[trial][n_collection[trial]].size = cluster[i].size;
copy_genome(*(cluster[i].genome), collection[trial][n_collection[trial]].genome);

n_collection[trial]++;
}

count++;
}

if (n_collection[trial] > 0)
{
fitness_level[g] /= n_collection[trial];
selection_level[g] /= n_collection[trial];
}

if (verbose)
{
printf("\n");
if (lf) fprintf(lf, "\n");
}
}

/*----------------------------------------------------------------------------
Break if the population remains stagnated for too long.
----------------------------------------------------------------------------*/
if (n_stagnated == 0)
{
printf("\tSaved %d rules: average fitness = %.4f, selection = %.4f\n\n",
n_collection[trial], fitness_level[g], selection_level[g]);
if (lf) fprintf(lf, "\tSaved %d rules: average fitness = %.4f, selection = %.4f\n\n",
n_collection[trial], fitness_level[g], selection_level[g]);
}
else if (n_stagnated == max_stagnated)
{
printf("Population stagnated at generation %d.\n\n", g);
if (lf) fprintf(lf, "Population stagnated at generation %d.\n\n", g);

break;
}
}

if (max_fitness[trial] > -FLT_MAX)
{
printf("Trial %d (%d rules): fitness = %.4f, selection = %.4f\n\n", trial+1,
n_collection[trial], max_fitness[trial], max_selection[trial]);
if (lf) fprintf(lf, "Trial %d (%d rules): fitness = %.4f, selection = %.4f\n\n", trial+1,
n_collection[trial], max_fitness[trial], max_selection[trial]);
}
else
{
printf("Trial %d (%d rules): fitness = -Infinity\n\n", trial+1, n_collection[trial]);
if (lf) fprintf(lf, "Trial %d (%d rules): fitness = -Infinity\n\n", trial+1, n_collection[trial]);
}

/*----------------------------------------------------------------------------
Save the rules in a file and test them after the selection period.
----------------------------------------------------------------------------*/
for (j = 0; j < n_collection[trial]; j++)
{
fprintf(lf ? lf :stdout, "Cluster %d (%d rules):\n", j+1, collection[trial][j].size);

if (rf)
{
save_genome(rf, collection[trial][j].genome);
fprintf(rf, "\n");
fflush(rf);
}

eval_genome(normalize ? norm_price : price, compounded, s2+1, n_years-1,
last_day, delay, collection[trial][j].genome, &n_trades, trades);

raw = compute_return(compounded, riskfree, s2+1, n_years-1, last_day,
n_trades, trades, cost);

excess = raw - compounded_return(compounded, s2+1, n_years-1, last_day, cost);

printf("\tTest (cluster %d) = %.4f (%d trades/year)\n\n", i+1, excess/(n_years-s2-1), n_trades/(n_years-s2-1));
if (lf) fprintf(lf, "\tTest (cluster %d) = %.4f (%d trades/year)\n\n", i+1, excess/(n_years-s2-1), n_trades/(n_years-s2-1));
}

if (lf) fflush(lf);

dispose_population(&population);
}

/*----------------------------------------------------------------------------
Report the ranking of trials according to the selection period.
----------------------------------------------------------------------------*/
printf("Trials ranked according to the selection period:\n\n");
if (lf) fprintf(lf, "Trials ranked according to the selection period:\n\n");

order_by_key(order, max_trials, max_selection, descending_order);

for (i = 0; i < max_trials; i++)
{
if (n_collection[order[i]] == 0) break;

printf("Trial %d (%d rules): fitness = %.4f, selection = %.4f\n\n", order[i]+1,
n_collection[order[i]], max_fitness[order[i]], max_selection[order[i]]);
if (lf) fprintf(lf, "Trial %d (%d rules): fitness = %.4f, selection = %.4f\n\n", order[i]+1,
n_collection[order[i]], max_fitness[order[i]], max_selection[order[i]]);
}

if (lf) fclose(lf);
}
# 4  
Old 07-05-2006
It seems that source of the problem is

util.h:15: error: syntax error before '*' token
util.h:15: error: conflicting types for `strerror'


It is possible that due to some mistyping you declare strerror() in util.h

Try to resolve this error first (in util.h:15) then other must (may) disappear
I'll look closer in a day
# 5  
Old 07-05-2006
Dear Hitori

For the (util.h:15: error: syntax error before '*' token) was mispelling and have correct that one and disapeared

for the (util.h:15: error: conflicting types for `strerror') did not disapeared, I am still receiving the error.

Any advice, please

Thank you
# 6  
Old 07-05-2006
post util.h, let's see
# 7  
Old 07-05-2006
Dear Hitori

Here is the util.h as well. Thank you very much

/*------------------------------------------------------------------------------

File: util.h
Date: January 26, 1992

Copyright (c) Risto Karjalainen. All rights reserved.

Utility functions of general use.

------------------------------------------------------------------------------*/

#define max(x,y) ((x) > (y) ? (x) : (y))
#define min(x,y) ((x) < (y) ? (x) : (y))

extern char *strerror(int errno);

/*------------------------------------------------------------------------------
'get_boolean' prints '*prompt' and reads a character from stdin. 'answers'
contains the valid character set. If the entered character equals 'affirm',
'def' is returned.
------------------------------------------------------------------------------*/

extern int get_boolean(char *prompt, char *answers, int def, char affirm);

/*------------------------------------------------------------------------------
'get_int' prints '*prompt' and reads an integer from stdin. The entered
integer must be in the range 'min' .. 'max'. If none is entered, 'def'
is returned, instead.
------------------------------------------------------------------------------*/

extern int get_int(char *prompt, int imin, int imax, int def);

/*------------------------------------------------------------------------------
'get_float' prints '*prompt' and reads a floating point number from stdin.
The entered number must be in the range 'min' .. 'max'. If none is entered,
'def' is returned, instead.
------------------------------------------------------------------------------*/

extern float get_float(char *prompt, float fmin, float fmax, float def);

/*------------------------------------------------------------------------------
'get_string' prints '*prompt' and reads a character string from stdin,
stored in 'string'. If a string is entered, TRUE is returned. If not, but
the default string ('def') is non-NULL, the default string is copied to
'string' and TRUE is returned. If no string is entered and 'def' equals
NULL, FALSE is returned.
------------------------------------------------------------------------------*/

extern int get_string(char *prompt, char *def, char *string);

/*------------------------------------------------------------------------------
'seed' initializes the random number generator. This should be called once
in the beginning of the application program. The initial seed is returned.
------------------------------------------------------------------------------*/

extern long seed(void);

/*------------------------------------------------------------------------------
'irandom' returns an integer random number, uniformly distributed in the
given range (including the endpoints). Order of arguments is irrelevant.
------------------------------------------------------------------------------*/

extern int irandom(int a, int b);

/*------------------------------------------------------------------------------
'frandom' returns a floating point random number, uniformly distributed in
the given range (including the endpoints). Order of arguments is irrelevant.
------------------------------------------------------------------------------*/

extern float frandom(float a, float b);

/*------------------------------------------------------------------------------
'flip' returns either 0 or 1, each with probability 1/2.
------------------------------------------------------------------------------*/

extern int flip(void);

/*------------------------------------------------------------------------------
'parse_arg' searches the command line for a given argument. If found,
TRUE is returned, '*value' is set to point to the next argument, and
'argc' is decremented by one.
------------------------------------------------------------------------------*/

extern int parse_args(int *argc, char *argv[], char *name, char **value);
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Print Error in Console and both Error & Output in Log file - UNIX

I am writing a shell script with 2 run time arguments. During the execution if i got any error, then it needs to redirected to a error file and in console. Also both error and output to be redirected to a log file. But i am facing the below error. #! /bin/sh errExit () { errMsg=`cat... (1 Reply)
Discussion started by: sarathy_a35
1 Replies

2. Solaris

Rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error)

I have two servers with a fresh install of Solaris 11, and having problems when doing rpcinfo between them. There is no firewall involved, so everything should theoretically be getting through. Does anyone have any ideas? I did a lot of Google searches, and haven't found a working solution yet. ... (2 Replies)
Discussion started by: christr
2 Replies

3. Shell Programming and Scripting

What is this error log = hda: irq timeout: error=0x00 and how to solve?

what is this error log = hda: irq timeout: error=0x00 and how to solve? every day upon checking the logs i see this error. hda: irq timeout: error=0x00 hda: irq timeout: error=0x00 hda: irq timeout: error=0x00 hda: irq timeout: error=0x00 hw_client: segfault at 0000000000000046 rip... (3 Replies)
Discussion started by: avtalan
3 Replies

4. UNIX for Dummies Questions & Answers

> 5 ")syntax error: operand expected (error token is " error

im kinda new to shell scripting so i need some help i try to run this script and get the error code > 5 ")syntax error: operand expected (error token is " the code for the script is #!/bin/sh # # script to see if the given value is correct # # Define errors ER_AF=86 # Var is... (4 Replies)
Discussion started by: metal005
4 Replies

5. UNIX for Advanced & Expert Users

ssh error: Error reading response length from authentication socket

Hi - I am getting the error `Error reading response length from authentication socket' when I ssh from my cluster to another cluster, and then back to my cluster. It doesn't seem to affect anything, but it's just annoying that it always pops up and tends to confuse new users of the cluster. I... (1 Reply)
Discussion started by: cpp6f
1 Replies

6. Solaris

fssnap error :snapshot error: File system could not be write locked

Hi Guys. This is part of my filesystem structure : Filesystem size used avail capacity Mounted on /dev/md/dsk/d0 47G 5.2G 42G 12% / /devices 0K 0K 0K 0% /devices ctfs 0K 0K 0K 0% ... (2 Replies)
Discussion started by: aggadtech08
2 Replies

7. AIX

nim mksysb error :/usr/bin/savevg[33]: 1016,07: syntax error

-------------------------------------------------------------------------------- Hello, help me please. I am trying to create a mksysb bakup using nim. I am geting this error, how to correct it ? : Command : failed stdout: yes stderr: no... (9 Replies)
Discussion started by: astjen
9 Replies

8. UNIX for Advanced & Expert Users

VSI-FAX error - Cannot login to server and Connecto error to host

I encounters a VSIFAX related error: vfxstat: Cannot login to server on rsac3: Connect error to host 172.16.1.45: Invalid argument It started happening last night with a core dump. Then we can't start VSIFAX again. I am runing VSI-FAX 4.2 on AIX box (0 Replies)
Discussion started by: b_jin
0 Replies

9. UNIX for Dummies Questions & Answers

awk Shell Script error : "Syntax Error : `Split' unexpected

hi there i write one awk script file in shell programing the code is related to dd/mm/yy to month, day year format but i get an error please can anybody help me out in this problem ?????? i give my code here including error awk ` # date-month -- convert mm/dd/yy to month day,... (2 Replies)
Discussion started by: Herry
2 Replies

10. UNIX for Dummies Questions & Answers

Error: Internal system error: Unable to initialize standard output file

Hey guys, need some help. Running AIX Version 5.2 and one of our cron jobs is writing errors to a log file. Any ideas on the following error message. Error: Internal system error: Unable to initialize standard output file I'm guessing more info might be needed, so let me know. Thanks (2 Replies)
Discussion started by: firkus
2 Replies
Login or Register to Ask a Question