October 19, 2007 1:54 AM
Ellipse, if you weren't able to figure it out yet, I had the saome problem and fixed it. Here's what I did:
Downloaded
http://www.dvrupgrade.com/software/update_tool/6.3c-0.slices.tgz
named the file slices.tgz.
FTPd slices.tgz to /var/packages/
Made a script containing just the extraction part:
##########################
cd /var/packages echo "Unpacking archive..." echo "" tar xzvf slices.tgz rm -rf slices.tgz for file in /var/packages/*.gz; do echo -n "Uncompressing $file..." echo "" gzip -d $file echo "" done ./dbload ./GZcore*.slice ./dbload ./GZhpk*.slice ./dbload ./GZkernel*.slice ./dbload ./swsystem*.slice ./dbload ./utils*.slice sleep 30 echo "Now lets see if there are slices loaded..." echo "" echo mls /SwSystem | tivosh echo "" echo "Presumably, your 6.3c slices are now listed above and if that" echo "is the case, you can go ahead and run The Slicer by typing this" echo "in the directory that contains the program:" echo "" echo " ./slicer 6.3c-01-2-357" echo "" echo "Bye!" echo ""
#################################
Which I put in /var/packages and ran (as opposed to running the getslices script from)
http://www.dvrupgrade.com/software/update_tool/6.3c-get_and_load_slices
And that worked! I'm now running 6.3c on my HR10-250. So if the -d option never worked for you, give this a try.