From: John R. <jo...@re...> - 2003-02-20 01:25:51
|
[ On Wednesday, February 19, Luis Cortes wrote: ] > My Perl is REAL rusty, can anyone tell me what to change in flexbackup > to get it to change from: > cpio -t -v -C 32768 > > to > cpio -t -v --block-size=64 > > Thanks ahead of time for any help, > Luis. > at line 2266 put $main::cpio_blk_flag = "--block-size=$main::cpio_blk_flag"; (you can either add that line into the code after the line that says $main::cpio_blk_flag = "-C $main::cpio_blk_flag"; and the cpio_blk_flag variable will just get overriden, or you can comment out the "-C" line with a '#' and then add the --block-size line). Hope this helps. If it does, maybe there's some things that Edwin and I can do to "steer" flexbackup to do the right thing given a config knob or something. -Jr -- John & Jennifer Reynolds jo...@re... http://www.reynoldsnet.org/ Sr. Component Design Engineer, ICG, Intel Corp. jre...@se... Running FreeBSD since 2.1.5-RELEASE. FreeBSD: The Power to Serve! "Unix is user friendly, it's just particular about the friends it chooses." |