Sponsored Content
Operating Systems SCO Strange behaviour on Openserver 5.0.2 after 09/2015 Post 302955218 by Retz on Tuesday 15th of September 2015 12:25:45 PM
Old 09-15-2015
@ChipperEs: No, oss601a did not solve the problem. I have upgraded my test clone virtual machine from 5.0.2 to 5.0.6 now.
This User Gave Thanks to Retz For This Post:
 

9 More Discussions You Might Find Interesting

1. Linux

/etc/passwd strange behaviour!

Hi there, first of all, here is my conf of a uname -a Linux SAMBA 2.4.18-4GB #1 Wed Mar 27 13:57:05 UTC 2002 i686 unknown on a fedora machine. Here is my problem: every once in a while, the line containing root disappears in the /etc/passwd, disabling all logging on my server. Any one have... (0 Replies)
Discussion started by: penguin-friend
0 Replies

2. Shell Programming and Scripting

A Strange Behaviour!!!

Can some-one give me a view to this : I have a directory in an unix server, having permissions r-xr-xr-x .This directory is basically a source directory. Now there is another directory basically the destination directory which has all the permissions. Note:I log in as not the owner,but user... (5 Replies)
Discussion started by: navojit dutta
5 Replies

3. UNIX for Advanced & Expert Users

Strange sed behaviour

$ echo a.bc | sed -e "s/\|/\\|/g" |a|.|b|c| $ Is the behavior of the sed statement expected ? Or is this a bug in sed ? OS details Linux 2.6.9-55.0.0.0.2.ELsmp #1 SMP Wed May 2 14:59:56 PDT 2007 i686 i686 i386 GNU/Linux (8 Replies)
Discussion started by: vino
8 Replies

4. UNIX for Dummies Questions & Answers

Strange Program behaviour

Had a strange thing going on with my code. It's ok I figured it out for myself.... (2 Replies)
Discussion started by: mrpugster
2 Replies

5. Shell Programming and Scripting

strange behaviour from sed???

Hi all, I want to do a very simple thing with sed. I want to print out the line number of a disk I have defined in /etc/exports, so I do: It's all good, but here's the problem. When I define md0 in a variable, I get nothing from sed: Why is that? can anybody please help? Thanks (2 Replies)
Discussion started by: alirezan
2 Replies

6. Shell Programming and Scripting

Strange behaviour with perl i/o?

Hi All, I got a strange problem here. I have a perl script which is fetching data from a database table and writing a file with that data. If i run that script from linux command line, the file it creates is a normal ascii text file without any binary character in it.But... (9 Replies)
Discussion started by: DILEEP410
9 Replies

7. HP-UX

Strange login behaviour

Hi all, I am using HP-UX and I have just noticed that when I log into the network it seems to save the previous windows that were subsequently closed on previous occasions. Does anyone know when I log in, it seems to display these previous windows, e.g. nedit windows open again? Does... (1 Reply)
Discussion started by: cyberfrog
1 Replies

8. Shell Programming and Scripting

Strange RegExp Behaviour

Hello, I was trying to identify lines who has a word of the following pattern "xyyx" (where x, and ys are different characters). I was trying the following grep - egrep '(\S)()\2\1' This pattern do catches the wanted pattern, but it also catches "GGGG" or "CCCC" patterns. I was trying to... (5 Replies)
Discussion started by: itskov
5 Replies

9. Red Hat

Crontab strange behaviour

Hi all, I'm having this scenario which for the moment I cannot resolve. :( I wrote a script to make a dump/export of the oracle database. and then put this entry on crontab to be executed daily for example. The script is like below: cat /home/oracle/scripts/db_backup.sh #!/bin/ksh ... (3 Replies)
Discussion started by: enux
3 Replies
zipios::ZipFile(3)					     Library Functions Manual						zipios::ZipFile(3)

NAME
zipios::ZipFile - SYNOPSIS
#include <zipfile.h> Inherits zipios::FileCollection. Public Member Functions ZipFile () Default constructor. ZipFile (const string &name, int s_off=0, int e_off=0) Constructor. virtual FileCollection * clone () const Create a heap allocated clone of the object this method is called for. virtual ~ZipFile () Destructor. virtual void close () Closes the FileCollection. virtual istream * getInputStream (const ConstEntryPointer &entry) virtual istream * getInputStream (const string &entry_name, MatchPath matchpath=MATCH) Returns a pointer to an opened istream for the specified entry name. Static Public Member Functions static ZipFile openEmbeddedZipFile (const string &name) Detailed Description ZipFile is a FileCollection, where the files are stored in a .zip file. Definition at line 20 of file zipfile.h. Constructor &; Destructor Documentation zipios::ZipFile::ZipFile () [inline] Default constructor. Definition at line 37 of file zipfile.h. zipios::ZipFile::ZipFile (const string &name, ints_off = 0, inte_off = 0) [explicit] Constructor. Opens the zip file name. If the zip 'file' is embedded in a file that contains other data, e.g. a binary program, the offset of the zip file start and end must be specified. Parameters: name The filename of the zip file to open. s_off Offset relative to the start of the file, that indicates the beginning of the zip file. e_off Offset relative to the end of the file, that indicates the end of the zip file. The offset is a positive number, even though the offset is towards the beginning of the file. Exceptions: FColException Thrown if the specified file name is not a valid zip archive. IOException Thrown if an I/O problem is encountered, while the directory of the specified zip archive is being read. Definition at line 30 of file zipfile.cpp. zipios::ZipFile::~ZipFile () [virtual] Destructor. Definition at line 46 of file zipfile.cpp. Member Function Documentation FileCollection * zipios::ZipFile::clone () const [virtual] Create a heap allocated clone of the object this method is called for. The caller is responsible for deallocating the clone when he is done with it. Returns: A heap allocated copy of the object this method is called for. Implements zipios::FileCollection. Definition at line 41 of file zipfile.cpp. void zipios::ZipFile::close () [virtual] Closes the FileCollection. Implements zipios::FileCollection. Definition at line 50 of file zipfile.cpp. istream * zipios::ZipFile::getInputStream (const ConstEntryPointer &entry) [virtual] Returns a pointer to an opened istream for the specified FileEntry. It is the callers responsibility to delete the stream when he is done with it. Returns 0, if there is no such FileEntry in the FileCollection. Parameters: entry A ConstEntryPointer to the FileEntry to get an istream to. Returns: an open istream for the specified entry. The istream is allocated on heap and it is the users responsibility to delete it when he is done with it. Exceptions: InvalidStateException Thrown if the collection is invalid. Implements zipios::FileCollection. Definition at line 55 of file zipfile.cpp. istream * zipios::ZipFile::getInputStream (const string &entry_name, MatchPathmatchpath = MATCH) [virtual] Returns a pointer to an opened istream for the specified entry name. It is the callers responsibility to delete the stream when he is done with it. Returns 0, if there is no entry with the specified name in the FileCollection. Parameters: matchpath Speficy MATCH, if the path should match as well, specify IGNORE, if the path should be ignored. Returns: an open istream for the specified entry. The istream is allocated on heap and it is the users responsibility to delete it when he is done with it. Exceptions: InvalidStateException Thrown if the collection is invalid. Implements zipios::FileCollection. Definition at line 61 of file zipfile.cpp. ZipFile zipios::ZipFile::openEmbeddedZipFile (const string &name) [static] Opens a Zip archive embedded in another file, by writing the zip archive to the end of the file followed by the start offset of the zip file. The offset must be written in zip-file byte-order (little endian). The program appendzip, which is part of the Zipios++ distribution can be used to append a Zip archive to a file, e.g. a binary program. Exceptions: FColException Thrown if the specified file name is not a valid zip archive. IOException Thrown if an I/O problem is encountered, while the directory of the specified zip archive is being read. Definition at line 19 of file zipfile.cpp. Author Generated automatically by Doxygen for Zipios++ from the source code. Zipios++ Mon Oct 10 2011 zipios::ZipFile(3)
All times are GMT -4. The time now is 12:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy