LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   RRD problem (https://www.linuxquestions.org/questions/linux-newbie-8/rrd-problem-659158/)

nawuza 07-29-2008 10:49 PM

RRD problem
 
i install rrd using this page..

but then when i try to put command
Code:

rrdtool create bandwidth.rrd --start N DS:in:COUNTER:600:U:U DS:out:COUNTER:600:U:U RRA:AVERAGE:0.5:1:432
it will say: -bash: rrdtool: command not found

blacky_5251 07-29-2008 11:23 PM

That error suggests your PATH doesn't include the directory containing the rrdtool program. You have these choices (and probably more):-
1. Add the directory to your PATH. For example:
Code:

export PATH=$PATH:/usr/path/to/rrdtool.dir
2. Specify the full path to the rrdtool program on your command line. For example:
Code:

/usr/path/to/rrdtool.dir/rrdtool ...followed by your options...


All times are GMT -5. The time now is 11:27 AM.