zipping across platforms


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers zipping across platforms
# 1  
Old 05-16-2005
zipping across platforms

I saw a few posts on this, however, I am getting an error and don't see this particular issue. Not right off anyways....

We moved from digital OS to solaris 9 in Jan.
On the old platform, I could gzip my files, ftp them to my win2000 desktop via hummingbird and then unzip them to view.

Now, I get the meta characters in the file when I go to view them.

I have tried compress, gzip, zip. Nothing gives me a clean file on the win2000 side.

These files are pulled up to view by a non-unix knowledgeable person so they need to be in a format that can easily be openned from the win2000 side.

help. Smilie
# 2  
Old 05-16-2005
transfer in 'binary' mode if you have gzip-ed files:

ftp> bin
# 3  
Old 05-17-2005
Doesnt work. :-(
# 4  
Old 05-17-2005
Doesnt work. :-(
# 5  
Old 05-17-2005
Quote:
Originally Posted by MizzGail
Doesnt work. :-(
pls don't bump the posts!
# 6  
Old 05-17-2005
Quote:
Originally Posted by MizzGail
Now, I get the meta characters in the file when I go to view them.
Meta characters in unix are characters that the shell interprets in a special manner such as * or ?. It's incredible that the old platform was stripping these and odd that you wanted it to. Smilie Oh well.... Just first send the file through "tr -d" to strip whatever characters you want to disappear. "tr -d" can remove any character and you will have total control over which characters get stripped.
# 7  
Old 05-17-2005
I didnt bump the post, I got an error on the original post didn't see it come through so I posted again. sorry Smilie

A little background... these are audit reports that are supposed to be viewed by someone who has no access to the unix commands that could possibly alter them at the unix level. The reports take up a lot of disk space and we have to keep them for a year so as standard process, we compress stored reports and files. On the old server I accomplished the access requirement by having the reports viewed via our hummingbird desktop ftp software. the reports came up fine after going through the zip utility on the desktop.

Now they don't on the new platform. I get some little boxes and other strange characters (perhaps not true meta characters) imedded in the report and the whole report format is thrown off when they are zipped coming from the server. If they are in plain txt format they are fine.

Hummingbird has a lot of options and I tried a few, but haven't resolved this issue. Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Zipping

Good Morning, I'd like to archive an old user's files in the home directory on Solaris 9 Will this work? cd home tar -zcvf jsmitharchive.tar.gz jsmith/ ---------- Post updated at 09:37 AM ---------- Previous update was at 09:33 AM ---------- Also- is the last /necessary (after... (4 Replies)
Discussion started by: Stellaman1977
4 Replies

2. Shell Programming and Scripting

Is there a way to organize bash_profile across different platforms

I want to have one .bash_profile works on multiple platform, ubuntu, debian, redhat, cygwin, osx. So how should I organize .bash_profile? It can be multiple files in some subdir Let me brief you: what i want is a way to organize bash_profile across platforms so I can use one set of profiles... (2 Replies)
Discussion started by: John_Peter
2 Replies

3. Shell Programming and Scripting

Multichecks across all unix platforms

Can somebody refer me following multicheck to perform across most of unix platform like AIX, HP-UX, solaris, Linux. CPU utilization above X% Check IO above X% Swap usage check above X% Memory utilization above X% ... (3 Replies)
Discussion started by: sendtoshailesh
3 Replies

4. Solaris

NFS sharing across platforms

Hi, Not sure where to post this, I'm sorry and need suggestion if this is wrong section. we are running NFS Server on Solaris 10 and client box is HP-UX 11.11 (Can't apply latest patches/upgrades as in-house appln. doesn't allow) I am able to mount NFS shares from this Solaris box onto all... (4 Replies)
Discussion started by: prvnrk
4 Replies

5. UNIX and Linux Applications

Platforms using Unix

Hi ;) Which hardware platforms/machine types use the Operating System Unix? A list of all would be appreaciated Thx Megadrink :cool: (2 Replies)
Discussion started by: Megadrink
2 Replies

6. UNIX for Dummies Questions & Answers

Unix Platforms

Hi. Where can i learn, Which Unix platform specific for what? Properties? (1 Reply)
Discussion started by: Enrgy
1 Replies

7. Solaris

Different Platforms on Solaris?

Does anyone know how Solaris organises different platforms? (1 Reply)
Discussion started by: gc40
1 Replies

8. UNIX for Dummies Questions & Answers

Zipping

Hi In unix i want to zip the files in a directory excluding *.dmp, *.log, *.lst, *.out files in that directory. pls let me know what command to use. $zip ........ ? Thanks (1 Reply)
Discussion started by: dreams5617
1 Replies

9. UNIX for Dummies Questions & Answers

what do one mean when referring to 'platforms'?

what do one mean when referring to 'platforms'? (examples of platforms as listed below) alpha amd64 i386 ia64 pc98 sparc64 Thanks! (1 Reply)
Discussion started by: ninelives1980
1 Replies

10. Programming

Makefile across platforms

EXE=auto SRCS=auto.cpp debug.cpp OBJS=auto.o debug.o CXX=g++ #HOSTFLAG=-DLinux HOSTFLAG=-DSunOS # Do not use compiler optimizer -O as this may break the program # Use debug flag to enable the debug() function. If DEBUG is not # defined than the function debug() is set to void(),... (1 Reply)
Discussion started by: laila63
1 Replies
Login or Register to Ask a Question