Sponsored Content
Full Discussion: Losing ownership with gzip
Top Forums UNIX for Dummies Questions & Answers Losing ownership with gzip Post 302081030 by superdelic on Friday 21st of July 2006 12:34:41 PM
Old 07-21-2006
Network Losing ownership with gzip

I'm trying to sell the use of gzip instead of compress in our department. One issue I'm having (which is a showstopper) is that I lose the ownership when gzipping and gunzipping, though it's mentioned all over the web that files are supposed to keep ownership.

Example:
-rwxrwxrwx 1 ms32345 staff 2847 May 01 09:14 Do_Peyton_pd_Queries.ss

gzip -9f Do_Peyton_pd_Queries.ss

-rwxrwxrwx 1 ad87398 staff 1370 May 01 09:14 Do_Peyton_pd_Queries.ss.gz


Is there something I'm missing? We need to keep ownership for auditing purposes.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

losing time

Hi all, The server seems to be losing time, not a lot, but enough to be noticed. UNIX AIX 4.3.3 Any ideas, Kathy (9 Replies)
Discussion started by: kburrows
9 Replies

2. Shell Programming and Scripting

Losing zero in while read

I'm using a while read statement to read in lines from a file, if a value (for example) is 1000.10 in a field, the last zero is removed leaving 1000.1 does anyone know a way to keep the field as it is in the original file? (1 Reply)
Discussion started by: gefa
1 Replies

3. Solaris

Losing my solaris virginity

So here's the scoop. I am working on a project to automate the building of spark based solaris servers. I've got a cursory amount of knowledge of how to use the os after some pretty heavy experience with Linux, and doing a similar project there. I have a few questions though... 1) how is... (5 Replies)
Discussion started by: msarro
5 Replies

4. Shell Programming and Scripting

Losing quotes after redirection

Hello experts, Pleas I have written a shell script to build a parfile but I keep losing the quotes from query1 and query variables after the redirection.. How do I fix this ? PARFILE=${EXPDP_BASE}/expdp_${DAY}.par USERID=$(${ORACLE_BASE}/getpass.ksh SYSTEM opnlkp2.uk.ml.com)... (2 Replies)
Discussion started by: kamathg
2 Replies

5. Emergency UNIX and Linux Support

losing ESSID

Hey guys, facing a weird issue - hoping someone might be able to help. The wireless network on my laptop is configured with a static IP address. (not using nm) When i take the laptop out of the range (or i power the router down) the essid is becoming "off/any". When i'm back in range the... (6 Replies)
Discussion started by: moshe88
6 Replies

6. UNIX for Advanced & Expert Users

gzip vs pipe gzip: produce different file size

Hi All, I have a random test file: test.txt, size: 146 $ ll test.txt $ 146 test.txt Take 1: $ cat test.txt | gzip > test.txt.gz $ ll test.txt.gz $ 124 test.txt.gz Take 2: $ gzip test.txt $ ll test.txt.gz $ 133 test.txt.gz As you can see, gzipping a file and piping into gzip... (1 Reply)
Discussion started by: hanfresco
1 Replies

7. HP-UX

losing mail enroute

system is HP-UX B.11.23 U ia64 A standard feature of almost all of our cron jobs is to redirect output to a log file, then at the end of the script to embed the contents of that log file in the body of an email sent to the IT staff. Typical code to do this is $MAILER -s "$PROC: $SUBJECT"... (3 Replies)
Discussion started by: edstevens
3 Replies

8. Programming

Losing signal problem

I'm newbie in UNIX programming, I have a problem with signals. I'm writing multithread program, where threads can die at any moment. When thread dies it generates signal SIGUSR1 to main thread and then thread dies. Main thread gets a signal and waits for thread dead. I wrote program like this: ... (5 Replies)
Discussion started by: DendyGamer
5 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Losing the connection

Hi. Recently when I'm logged in to site after some seconds, for instance, I lose the connection and need sign in again. It happens on Firefox and Chrome. Or another example, when I'm logged in to site and click on my nick name (right up corner) I lose the connection to site. User: tiago ... (0 Replies)
Discussion started by: Unregistered
0 Replies

10. UNIX for Dummies Questions & Answers

Losing Time

Our Unix system is losing a considerable amount of time each day, and our support service company says our motherboard is the cause. They "upgraded" us 5 years ago to basically the same thing as what we had previously, and are looking to "upgrade" us again now for about $5,000... I think... (23 Replies)
Discussion started by: Big Z
23 Replies
XtOwnSelection(3Xt)						     MIT X11R4						       XtOwnSelection(3Xt)

Name
       XtOwnSelection, XtDisownSelection - set selection owner

Syntax
       Boolean XtOwnSelection(w, selection, time, convert_proc, lose_selection, done_proc)
	  Widget w;
	  Atom selection;
	  Time time;
	  XtConvertSelectionProc convert_proc;
	  XtLoseSelectionProc lose_selection;
	  XtSelectionDoneProc done_proc;

       void XtDisownSelection(w, selection, time)
	  Widget w;
	  Atom selection;
	  Time time;

Arguments
       convert_proc
		 Specifies the procedure that is to be called whenever someone requests the current value of the selection.

       done_proc Specifies the procedure that is called after the requestor has received the selection or NULL if the owner is not interested in
		 being called back.

       lose_selection
		 Specifies the procedure that is to be called whenever the widget has lost selection ownership or NULL if the owner is not inter-
		 ested in being called back.

       selection Specifies an atom that describes the type of the selection (for example, or

       time	 Specifies the timestamp that indicates when the selection ownership should commence or is to be relinquished.

       w	 Specifies the widget that wishes to become the owner or to relinquish ownership.

Description
       The function informs the Intrinsics selection mechanism that a widget believes it owns a selection.  It returns if the widget has success-
       fully become the owner and otherwise.  The widget may fail to become the owner if some other widget has asserted ownership at a time later
       than this widget.  Note that widgets can lose selection ownership either because someone else asserted later ownership of the selection or
       because the widget voluntarily gave up ownership of the selection.  Also note that the lose_selection procedure is not called if the widget
       fails to obtain selection ownership in the first place.

       The function informs the Intrinsics selection mechanism that the specified widget is to lose ownership of the selection.  If the widget
       does not currently own the selection either because it lost the selection or because it never had the selection to begin with, does noth-
       ing.

       After a widget has called its convert procedure is not called even if a request arrives later with a timestamp during the period that this
       widget owned the selection.  However, its done procedure will be called if a conversion that started before the call to finishes after the
       call to

See Also
       XtAppGetSelectionTimeout(3Xt), XtGetSelectionValue(3Xt)
       X Window System Toolkit: The Complete Programmer's Guide and Specification, Paul J. Asente and Ralph Swick
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

															       XtOwnSelection(3Xt)
All times are GMT -4. The time now is 06:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy