Link to home
Start Free TrialLog in
Avatar of Westez
Westez

asked on

Installing Samba on Aix 5.1?

I need to share files between an Aix and Windows server.  I've found a document on IBM's site that mentions that Samba can be optained in the Aix installp format and that this is the easiest way to install Samba.
The doc has a link that's no longer valid to www-frec.bull.com.  Does anyone know where I can find this Samba installp package the doc mentions?
SOLUTION
Avatar of gheist
gheist
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Westez
Westez

ASKER

Thanks, how do I confirm that it's installed? perl -v returns v5.8.0 and I find perl.rte in /usr/lpp.  I found a doc on google that says it's automatically installed with v5.3.  Is this true for v5.1 also?
Versions differ, but yes.
You can uninstall that install another perl and break stuff. Very seriously on 4.3.3
Avatar of Westez

ASKER

Gheist, many thanks for your comments.  I think I'll just leave what's on there alone and give the Samba install a go.
You can use bffcreate from bullferrware to get aixpdslib packages uninstallable.
Avatar of Westez

ASKER

Julie - that command isn't working for me.  I've tried a couple of different things, but I'm still struggling.  
# zcat samba.3.0.21.tar.Z | tar xf-
tar: 0511-172 Specify a file name with the -f flag.
Usage: tar -{c|r|t|u|x} [-BdFhilmopsvw]
           [-Number] [-fFile]
           [-bBlocks] [-S [Feet] [Feet @Density] [Blocksb]]
           [-LInputList] [-NBlocks] [-C Directory] File ...
# zcat samba.3.0.21.tar.Z | tar xf- samba
tar: samba: A file or directory in the path name does not exist.
# zcat samba.3.0.21.tar.Z | tar xf- samba.3.0.21.tar.Z
tar: 0511-169 A directory checksum error on media; 0 not equal to 50529.
# zcat samba.3.0.21.tar.Z | tar xf- samba.3.0.21.tar
tar: samba.3.0.21.tar: A file or directory in the path name does not exist.
#

Gheist - >>You can use bffcreate from bullferrware to get aixpdslib packages uninstallable.
I don't understand what you mean.
Avatar of Westez

ASKER

What's the proper protocol on something like this?  You guys answered my original question.  Should I open up another question and offer points?
> # zcat samba.3.0.21.tar.Z | tar xf-
> tar: 0511-172 Specify a file name with the -f flag.
> Usage: tar -{c|r|t|u|x} [-BdFhilmopsvw]
>            [-Number] [-fFile]
>            [-bBlocks] [-S [Feet] [Feet @Density] [Blocksb]]
>            [-LInputList] [-NBlocks] [-C Directory] File ...

There is a space between xf and -
The explanation is that zcat uncompress samba.3.0.21.tar.Z to stdout which is redirecte with the pipe to the tar command. In the tar command the dash at the end of the command (with a space before it) tells that the input file is in fact stdin.
gzip -cd samba.tar.gz | tar xf -
Avatar of Westez

ASKER

Thanks guys.  I'm going to open up another question on the samba install.