Sponsored Content
Full Discussion: Need little help with
Top Forums UNIX for Dummies Questions & Answers Need little help with Post 93219 by blowtorch on Friday 16th of December 2005 12:42:45 PM
Old 12-16-2005
Why dont you skip the gzip/gunzip steps? 400GB is going to take time to transfer anyway... But to answer your question, the gzip is failing on your local server and is not present in your default PATH on the remote server.

Try running the command as:
Code:
cd /home/oracle/a; tar cvf - * |gzip -c |ssh raman '(cd /tmp;/full/path/to/gunzip -c - |tar xvf - )'&

This is not tested (and I am not too sure about the 'gunzip -c' part of the story).
 
XmScrollVisible(library call)											     XmScrollVisible(library call)

NAME
XmScrollVisible -- A ScrolledWindow function that makes an invisible descendant of a ScrolledWindow work area visible SYNOPSIS
#include <Xm/ScrolledW.h> void XmScrollVisible( Widget scrollw_widget, Widget widget, Dimension left_right_margin, Dimension top_bottom_margin); DESCRIPTION
XmScrollVisible makes an obscured or partially obscured widget or gadget descendant of a ScrolledWindow work area visible. The function re- positions the work area and sets the specified margins between the widget and the nearest viewport boundary. The widget's location relative to the viewport determines whether one or both of the margins must be adjusted. This function requires that the XmNscrollingPolicy of the ScrolledWindow widget be set to XmAUTOMATIC. scrollw_widget Specifies the ID of the ScrolledWindow widget whose work area window contains an obscured descendant. widget Specifies the ID of the widget to be made visible. left_right_margin Specifies the margin to establish between the left or right edge of the widget and the associated edge of the viewport. This margin is established only if the widget must be moved horizontally to make it visible. top_bottom_margin Specifies the margin to establish between the top or bottom edge of the widget and the associated edge of the viewport. This margin is established only if the widget must be moved vertically to make it visible. For a complete definition of ScrolledWindow and its associated resources, see XmScrolledWindow(3) RELATED
XmScrolledWindow(3). XmScrollVisible(library call)
All times are GMT -4. The time now is 06:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy