Re: [OpenAFS] Request for Assistance with OpenAFS

2016-05-08 Thread Jeffrey Altman
On 5/4/2016 10:29 PM, Benjamin Kaduk wrote:
> On Wed, 16 Mar 2016, Nicolas Melot wrote:
> 
>> Hi,
>>
>> I'm trying to setup and use openafs for mobile nodes, not always having a
>> connection to the openAFS server. I would like to use the openAFS caching
>> mechanism as an offline disk that synchronizes everything once online again.
>>
>> I installed an openAFS 1.6.9 server and client, together with a kerberos
>> server on debian jessie. Everything works great, including offline operations
>> and synch after the client is back online. However, I fail of open a afs
>> session on the client machine while it is offline. To rule out a lack of
>> kerberos ticket, I installed a kerberos replica on the client machine and I
>> can get a ticket offline. However, even with a valid ticket, AFS's cache
>> manager doesn't give access to the files.
>>
>> Investigating more and reading the doc, my understanding is that the cache
>> manager doesn't look for anything to confirm the authorization granted by the
>> kerberos ticket presented. However, I still fail to open an AFS session with
>> an offline machine. I think this is because the cache manager requests
>> information from the protection database (I guess some kind of ACLs) and 
>> since
>> it can't contact it, then it doesn't give access to files at all.
> 
> This is not exactly true; in normal operation, it is the fileserver that
> consults the protection database and determines whether a user is
> authorized to access a given resource.

More to the point.   The cache manager doesn't have any access to the
Access Control List data.  All the cache manager has is the set of
permissions that were granted to a particular AFS token.  If that token
was associated with a particular local uid then the cache manager in the
absence of an AFS token or connectivity to a file server *might* be
configured to continue to offer access to the data by that particular
uid.  If the token was obtained with an arbitrary Process Authentication
Group and that PAG no longer exists, there is nothing for the cache
manager to use in deciding what permissions to grant.

>> In a desperate attempt to reach my goal, I started to set up at protection
>> database replication into the client and see what happens.. well, it looks
>> like I need to identify protection database server (including the replication
>> installed in my client machine) with ip addresses. The problem is that both
>> databases (the original and replica) check if the ip address  of machines are
>> the same in both ends before allowing a replication to happen. That means I
>> can't configure the client so it connects to 127.0.0.1, which would be the
>> only way t contact the local protection database when offline, so this
>> solution doesn't seem to work either.
> 
> I don't think that having a local protection database is a fruitful area
> of research; the ubik database synchronization protocol is not really
> scalable, and is generally used with only 3 or 5 peers.  (There is also a
> hard cap in the current implementation, which might be 16; I forget the
> exact number.)

The protection database contains the memberships of groups and the
mapping of user names and group names to ID numbers that are stored in
the Access Control Entries.  The protection database doesn't store any
of the ACL data.  The ACL data is private metadata stored on the file
server and is not exposed to the cache manager.  Therefore, there is no
benefit to local copies of this data.

>> Then, finally my question (s): is it possible at all to have openafs working
>> in offline mode, including opening a session, even if I need to run a 
>> Kerberos
>> and a protection database replica on the client for it (even if that sounds
>> like a bad idea). Is it possible to prevent the original and the replica
>> protection databases from checking if the ip addresses are the same, so that 
>> I
>> can have the client machine to contact its local replica of the protection
>> database on 127.0.0.1 and the original protection database server to contact
>> the replica through its ip address on the network; better: through its dns
>> name only.
> 
> I think what you want would require further development on the offline
> mode, which in its current state remains an experimental feature but has
> not seen any significant resources invested in it for several years.
> 
> I do not have an estimate for the amount of work that would be necessary,
> but will say that I expect it to be measured in man-years.

There are two broad sets of problems that must be designed for before
disconnected mode can be truly functional:

1. What are the access control semantics of offline usage?

The Windows offline mode for CIFS provides a local disk per user cache
of the files and directories that are to be available offline.  As long
as the local copy is being used the user has full permissions on the
file regardless of what the network permissions were.  The network
permissions only matter whe

Re: [OpenAFS] Request for Assistance with OpenAFS

2016-05-04 Thread Benjamin Kaduk
On Wed, 16 Mar 2016, Nicolas Melot wrote:

> Hi,
>
> I'm trying to setup and use openafs for mobile nodes, not always having a
> connection to the openAFS server. I would like to use the openAFS caching
> mechanism as an offline disk that synchronizes everything once online again.
>
> I installed an openAFS 1.6.9 server and client, together with a kerberos
> server on debian jessie. Everything works great, including offline operations
> and synch after the client is back online. However, I fail of open a afs
> session on the client machine while it is offline. To rule out a lack of
> kerberos ticket, I installed a kerberos replica on the client machine and I
> can get a ticket offline. However, even with a valid ticket, AFS's cache
> manager doesn't give access to the files.
>
> Investigating more and reading the doc, my understanding is that the cache
> manager doesn't look for anything to confirm the authorization granted by the
> kerberos ticket presented. However, I still fail to open an AFS session with
> an offline machine. I think this is because the cache manager requests
> information from the protection database (I guess some kind of ACLs) and since
> it can't contact it, then it doesn't give access to files at all.

This is not exactly true; in normal operation, it is the fileserver that
consults the protection database and determines whether a user is
authorized to access a given resource.

> In a desperate attempt to reach my goal, I started to set up at protection
> database replication into the client and see what happens.. well, it looks
> like I need to identify protection database server (including the replication
> installed in my client machine) with ip addresses. The problem is that both
> databases (the original and replica) check if the ip address  of machines are
> the same in both ends before allowing a replication to happen. That means I
> can't configure the client so it connects to 127.0.0.1, which would be the
> only way t contact the local protection database when offline, so this
> solution doesn't seem to work either.

I don't think that having a local protection database is a fruitful area
of research; the ubik database synchronization protocol is not really
scalable, and is generally used with only 3 or 5 peers.  (There is also a
hard cap in the current implementation, which might be 16; I forget the
exact number.)

> Then, finally my question (s): is it possible at all to have openafs working
> in offline mode, including opening a session, even if I need to run a Kerberos
> and a protection database replica on the client for it (even if that sounds
> like a bad idea). Is it possible to prevent the original and the replica
> protection databases from checking if the ip addresses are the same, so that I
> can have the client machine to contact its local replica of the protection
> database on 127.0.0.1 and the original protection database server to contact
> the replica through its ip address on the network; better: through its dns
> name only.

I think what you want would require further development on the offline
mode, which in its current state remains an experimental feature but has
not seen any significant resources invested in it for several years.

I do not have an estimate for the amount of work that would be necessary,
but will say that I expect it to be measured in man-years.

-Ben
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-08 Thread Benjamin Kaduk
On Thu, 7 Apr 2016, Jeffrey Altman wrote:

> Try executing klog.afs.  It should be installed as part of the
> openafs-client package.

(Uninstalling the openafs-krb5 package will cause the alternatives system
to make just 'klog' point to klog.afs.)

-Ben
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Steven Mikes
Success! klog.afs worked, I have a token now and can interact normally with
the cell.  Thanks everyone for your help!

On Thu, Apr 7, 2016 at 3:30 PM, Jeffrey Altman  wrote:

> On 4/7/2016 2:24 PM, Jeffrey Altman wrote:
> > On 4/7/2016 12:59 PM, Steven Mikes wrote:
> >> Hi All,
> >> I am attempting to access an AFS cell which I believe is still using
> >> Kerberos V4. Existing machines in the cell use the 'klog' command
> >> (klog.krb) to obtain tokens.
> >> I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out
> >> how to authenticate. The /usr/bin/klog in my install is symlinked to
> >> /etc/alternatives/klog, which is itself linked back to
> >> /usr/bin/klog.krb5, so there doesn't see to be a v4 version of the
> >> command at all. I know it was deprecated for security reasons and V5 is
> >> the recommended authentication method, but the cell I need to connect to
> >> is still on V4. Is there a way to configure krb5 so I can obtain tokens?
> >> I have tried various options in the /etc/krb5.conf file with no luck
> >> yet. Any help is much appreciated.
> >> -Steven Mikes
> >
> > Steven,
> >
> > I believe the Global Foundries cell is still using the IBM AFS kaserver
> > for authentication.  The klog.krb5 and kinit/aklog authentication
> > methods will not work with it.  Only the kauth version of klog can be
> > used to authenticate with the kaserver.
>
> Try executing klog.afs.  It should be installed as part of the
> openafs-client package.
>
> > Jeffrey Altman
> > AuriStor, Inc.
>
>
>


-- 
*Steven Mikes*
Integrated Circuit Designer
Global Foundries


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Harald Barth

...but if the cell ist still on kaserver (without even v4 tickets), then
only the old AFS tools will do the trick. That was really a long time ago.


Harald.
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Harald Barth

> ... I have tried various
> options in the /etc/krb5.conf file with no luck yet. Any help is much
> appreciated.

you might want to try 

[libdefaults]
 allow_weak_crypto = yes

in krb5.conf but if they the realm is v4 _only_, then you nay need a
krb.conf and old v4 tools. In that case, I would try good old Heimdal
0.7.2 from source.

Harald.
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Jeffrey Altman
On 4/7/2016 2:24 PM, Jeffrey Altman wrote:
> On 4/7/2016 12:59 PM, Steven Mikes wrote:
>> Hi All,
>> I am attempting to access an AFS cell which I believe is still using
>> Kerberos V4. Existing machines in the cell use the 'klog' command
>> (klog.krb) to obtain tokens.
>> I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out
>> how to authenticate. The /usr/bin/klog in my install is symlinked to
>> /etc/alternatives/klog, which is itself linked back to
>> /usr/bin/klog.krb5, so there doesn't see to be a v4 version of the
>> command at all. I know it was deprecated for security reasons and V5 is
>> the recommended authentication method, but the cell I need to connect to
>> is still on V4. Is there a way to configure krb5 so I can obtain tokens?
>> I have tried various options in the /etc/krb5.conf file with no luck
>> yet. Any help is much appreciated.
>> -Steven Mikes
> 
> Steven,
> 
> I believe the Global Foundries cell is still using the IBM AFS kaserver
> for authentication.  The klog.krb5 and kinit/aklog authentication
> methods will not work with it.  Only the kauth version of klog can be
> used to authenticate with the kaserver.

Try executing klog.afs.  It should be installed as part of the
openafs-client package.

> Jeffrey Altman
> AuriStor, Inc.


<>

smime.p7s
Description: S/MIME Cryptographic Signature


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Jeffrey Altman
On 4/7/2016 12:59 PM, Steven Mikes wrote:
> Hi All,
> I am attempting to access an AFS cell which I believe is still using
> Kerberos V4. Existing machines in the cell use the 'klog' command
> (klog.krb) to obtain tokens.
> I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out
> how to authenticate. The /usr/bin/klog in my install is symlinked to
> /etc/alternatives/klog, which is itself linked back to
> /usr/bin/klog.krb5, so there doesn't see to be a v4 version of the
> command at all. I know it was deprecated for security reasons and V5 is
> the recommended authentication method, but the cell I need to connect to
> is still on V4. Is there a way to configure krb5 so I can obtain tokens?
> I have tried various options in the /etc/krb5.conf file with no luck
> yet. Any help is much appreciated.
> -Steven Mikes

Steven,

I believe the Global Foundries cell is still using the IBM AFS kaserver
for authentication.  The klog.krb5 and kinit/aklog authentication
methods will not work with it.  Only the kauth version of klog can be
used to authenticate with the kaserver.

Jeffrey Altman
AuriStor, Inc.

<>

smime.p7s
Description: S/MIME Cryptographic Signature


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Steven Mikes
Yes I have the openafs-krb5 package. Should I try removing that one?
Unfortunately the IT infrastructure in question is far outside of my
influence, so it is what it is. Brian, I'm not sure what the kerberos realm
would be in this case. Did AFS with kerb V4 use them at all? klist from an
existing cell machine returns:
klist: No credentials cache found (ticket cache FILE:)

On Thu, Apr 7, 2016 at 2:46 PM, Benjamin Kaduk  wrote:

> On Thu, 7 Apr 2016, Steven Mikes wrote:
>
> > Hi All,
> > I am attempting to access an AFS cell which I believe is still using
> > Kerberos V4. Existing machines in the cell use the 'klog' command
> > (klog.krb) to obtain tokens.
> > I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out how
> > to authenticate. The /usr/bin/klog in my install is symlinked to
> > /etc/alternatives/klog, which is itself linked back to
> /usr/bin/klog.krb5,
> > so there doesn't see to be a v4 version of the command at all. I know it
> > was deprecated for security reasons and V5 is the recommended
> > authentication method, but the cell I need to connect to is still on V4.
> Is
> > there a way to configure krb5 so I can obtain tokens? I have tried
> various
> > options in the /etc/krb5.conf file with no luck yet. Any help is much
> > appreciated.
>
> Sounds like you have the openafs-krb5 package installed ... but I really
> would recommend updating your infrastructure instead of removing that
> package; Kerberos 4 provides no real security.
>
> -Ben
>



-- 
*Steven Mikes*
Integrated Circuit Designer
Global Foundries


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Benjamin Kaduk
On Thu, 7 Apr 2016, Steven Mikes wrote:

> Hi All,
> I am attempting to access an AFS cell which I believe is still using
> Kerberos V4. Existing machines in the cell use the 'klog' command
> (klog.krb) to obtain tokens.
> I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out how
> to authenticate. The /usr/bin/klog in my install is symlinked to
> /etc/alternatives/klog, which is itself linked back to /usr/bin/klog.krb5,
> so there doesn't see to be a v4 version of the command at all. I know it
> was deprecated for security reasons and V5 is the recommended
> authentication method, but the cell I need to connect to is still on V4. Is
> there a way to configure krb5 so I can obtain tokens? I have tried various
> options in the /etc/krb5.conf file with no luck yet. Any help is much
> appreciated.

Sounds like you have the openafs-krb5 package installed ... but I really
would recommend updating your infrastructure instead of removing that
package; Kerberos 4 provides no real security.

-Ben
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


RE: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Brian M. Torbich
Maybe the following….

$ aklog -524 -k KERBEROSREALM.ORG -c AFSCELL.ORG



-Brian

From: openafs-info-ad...@openafs.org [mailto:openafs-info-ad...@openafs.org] On 
Behalf Of Steven Mikes
Sent: Thursday, April 07, 2016 2:20 PM
To: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS

What would the full command look like? On existing cell machines, I type
$> klog [username]@[cellname]

I just tried a few variations with aklog but nothing works:

smikes@smikes-VirtualBox:~/Desktop$ aklog -524
aklog: Couldn't determine realm of user:aklog: unknown RPC error (-1765328189)  
while getting realm
smikes@smikes-VirtualBox:~/Desktop$ aklog -524 [afs cell name]
aklog: Couldn't determine realm of user:aklog: unknown RPC error (-1765328189)  
while getting realm
smikes@smikes-VirtualBox:~/Desktop$ aklog -524 smikes1@[afs cell name]
aklog: Can't get information about cell smikes1@[afs cell name]



On Thu, Apr 7, 2016 at 2:06 PM, Brian M. Torbich 
mailto:bmtorb...@sei.cmu.edu>> wrote:
Steven, you may be able to use the ‘-524’ flag with ‘aklog’ to achieve what you 
are asking.

   -524
   Normally, aklog generates native K5 tokens.  This flag tells aklog 
to instead use the krb524 translation
   service to generate K4 or rxkad2b tokens, which may be necessary for 
AFS cells that don't support native K5
   tokens.  Support for native K5 tokens were added in OpenAFS 1.2.8.



-Brian

From: openafs-info-ad...@openafs.org<mailto:openafs-info-ad...@openafs.org> 
[mailto:openafs-info-ad...@openafs.org<mailto:openafs-info-ad...@openafs.org>] 
On Behalf Of Steven Mikes
Sent: Thursday, April 07, 2016 2:00 PM
To: openafs-info@openafs.org<mailto:openafs-info@openafs.org>
Subject: [OpenAFS] Request for Assistance with OpenAFS

Hi All,
I am attempting to access an AFS cell which I believe is still using Kerberos 
V4. Existing machines in the cell use the 'klog' command (klog.krb) to obtain 
tokens.
I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out how to 
authenticate. The /usr/bin/klog in my install is symlinked to 
/etc/alternatives/klog, which is itself linked back to /usr/bin/klog.krb5, so 
there doesn't see to be a v4 version of the command at all. I know it was 
deprecated for security reasons and V5 is the recommended authentication 
method, but the cell I need to connect to is still on V4. Is there a way to 
configure krb5 so I can obtain tokens? I have tried various options in the 
/etc/krb5.conf file with no luck yet. Any help is much appreciated.
-Steven Mikes



--
Steven Mikes
Integrated Circuit Designer
Global Foundries


Re: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Steven Mikes
What would the full command look like? On existing cell machines, I type
$> klog [username]@[cellname]

I just tried a few variations with aklog but nothing works:

smikes@smikes-VirtualBox:~/Desktop$ aklog -524
aklog: Couldn't determine realm of user:aklog: unknown RPC error
(-1765328189)  while getting realm
smikes@smikes-VirtualBox:~/Desktop$ aklog -524 [afs cell name]
aklog: Couldn't determine realm of user:aklog: unknown RPC error
(-1765328189)  while getting realm
smikes@smikes-VirtualBox:~/Desktop$ aklog -524 smikes1@[afs cell name]
aklog: Can't get information about cell smikes1@[afs cell name]



On Thu, Apr 7, 2016 at 2:06 PM, Brian M. Torbich 
wrote:

> Steven, you may be able to use the ‘-524’ flag with ‘aklog’ to achieve
> what you are asking.
>
>
>
>-524
>
>Normally, aklog generates native K5 tokens.  This flag tells
> aklog to instead use the krb524 translation
>
>service to generate K4 or rxkad2b tokens, which may be
> necessary for AFS cells that don't support native K5
>
>tokens.  Support for native K5 tokens were added in OpenAFS
> 1.2.8.
>
>
>
>
>
>
>
> -Brian
>
>
>
> *From:* openafs-info-ad...@openafs.org [mailto:
> openafs-info-ad...@openafs.org] *On Behalf Of *Steven Mikes
> *Sent:* Thursday, April 07, 2016 2:00 PM
> *To:* openafs-info@openafs.org
> *Subject:* [OpenAFS] Request for Assistance with OpenAFS
>
>
>
> Hi All,
>
> I am attempting to access an AFS cell which I believe is still using
> Kerberos V4. Existing machines in the cell use the 'klog' command
> (klog.krb) to obtain tokens.
>
> I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out how
> to authenticate. The /usr/bin/klog in my install is symlinked to
> /etc/alternatives/klog, which is itself linked back to /usr/bin/klog.krb5,
> so there doesn't see to be a v4 version of the command at all. I know it
> was deprecated for security reasons and V5 is the recommended
> authentication method, but the cell I need to connect to is still on V4. Is
> there a way to configure krb5 so I can obtain tokens? I have tried various
> options in the /etc/krb5.conf file with no luck yet. Any help is much
> appreciated.
>
> -Steven Mikes
>



-- 
*Steven Mikes*
Integrated Circuit Designer
Global Foundries


RE: [OpenAFS] Request for Assistance with OpenAFS

2016-04-07 Thread Brian M. Torbich
Steven, you may be able to use the ‘-524’ flag with ‘aklog’ to achieve what you 
are asking.

   -524
   Normally, aklog generates native K5 tokens.  This flag tells aklog 
to instead use the krb524 translation
   service to generate K4 or rxkad2b tokens, which may be necessary for 
AFS cells that don't support native K5
   tokens.  Support for native K5 tokens were added in OpenAFS 1.2.8.



-Brian

From: openafs-info-ad...@openafs.org [mailto:openafs-info-ad...@openafs.org] On 
Behalf Of Steven Mikes
Sent: Thursday, April 07, 2016 2:00 PM
To: openafs-info@openafs.org
Subject: [OpenAFS] Request for Assistance with OpenAFS

Hi All,
I am attempting to access an AFS cell which I believe is still using Kerberos 
V4. Existing machines in the cell use the 'klog' command (klog.krb) to obtain 
tokens.
I'm running Ubuntu 14.04.2 with openAFS 1.6.17, and cannot figure out how to 
authenticate. The /usr/bin/klog in my install is symlinked to 
/etc/alternatives/klog, which is itself linked back to /usr/bin/klog.krb5, so 
there doesn't see to be a v4 version of the command at all. I know it was 
deprecated for security reasons and V5 is the recommended authentication 
method, but the cell I need to connect to is still on V4. Is there a way to 
configure krb5 so I can obtain tokens? I have tried various options in the 
/etc/krb5.conf file with no luck yet. Any help is much appreciated.
-Steven Mikes


Re: [OpenAFS] Request for Assistance with OpenAFS

2015-08-21 Thread Dirk Heinrichs
Am 18.08.2015 um 15:56 schrieb Adem-Deniz Yavuz:

> as I read in some of the comments, it is that a client for Windows 10
> is not offered in the near future.
>

As far as I understood it, Your Filesystem Inc. will provide ONE version
of a W10 capable client, but not more. In fact, you can download it from
their site
 (I
am using it @home).

> I need reliable sources that confirm this, because we are just in the
> planning stage with OpenAFS with many Windows 10 clients.
>

Search archives of this list.

HTH...

Dirk

-- 
Dirk Heinrichs 
GPG Public Key CB614542 | Jabber: dirk.heinri...@altum.de
Tox: he...@toxme.se
Sichere Internetkommunikation: http://www.retroshare.org
Privacy Handbuch: https://www.privacy-handbuch.de



signature.asc
Description: OpenPGP digital signature


Re: [OpenAFS] Request for Assistance with OpenAFS

2013-12-17 Thread Brandon Allbery
On Mon, 2013-12-16 at 15:39 -0500, David Flatley wrote:
>  I compiled OpenAFS 1.6.1 for a Red Hat 5.6 server. In the /afs
> directory there are all the cells for all our various AFS cells. On an AIX
> system there is a link for the short name for our local cell.
> On my Linux system there is no link and I have not been able to find a way
> to put it in. When I try to create a link it tells me it is a read only
> file system.

On Linux by default you will be seeing a synthetic root volume
(-dynroot) generated from CellServDB entries. If you want to create
short names in a dynroot, you list them in the CellAlias file. (OpenAFS
has manpages; `man CellAlias` should work to see the documentation.)

Alternately you can turn off -dynroot in /etc/sysconfig/openafs, and you
will get the same real root.afs.readonly that the AIX system sees.

In both cases you will need to restart the OpenAFS client for the change
to take effect.

-- 
brandon s allbery kf8nh   sine nomine associates
allber...@gmail.com  ballb...@sinenomine.net
unix, openafs, kerberos, infrastructure, xmonadhttp://sinenomine.net



Re: [OpenAFS] Request for Assistance with OpenAFS

2012-04-11 Thread Jeffrey Altman
On 4/11/2012 7:01 AM, James Bricknell wrote:
> Hopefully this is a quick and stupid question.
> 
> I have Mac clients on the network who have data in deep folder
> structures with long filename paths, well in excess of the Windows
> 256(255) character limit, and they need to copy their data across onto a
> Windows 2008 R2 Server, which obviously fails when the length of the
> filename goes over this limit.
> 
> If I install Open AFS on this Windows server, will this allow the
> clients to successfully copy the data to a share on an NTFS formatted
> volume on the Windows box? Also, if version 1.7 is implemented as a
> native Windows file system, would I need to format a disk or partition
> on the Windows box as an AFS volume for the Mac users to be able to copy
> their long filename structures without issue, and would this data be
> able to be browsed locally on the Windows server following copying it
> across?

For starters, OpenAFS is not a local file system like NTFS.  It is not
something that can be installed on local disk and then exported using
CIFS to OSX clients.  The OpenAFS Windows client and OSX clients are
file system clients that provide access to file system storage servers
from dedicated AFS file servers.  You could build an AFS cell (volume
location database, protection database, and a fileserver) and use your
existing Active Directory as the Kerberos realm.  Then install the OSX
OpenAFS client and copy your data to your
/afs/local-cell/some-volume-path/.  By installing the OpenAFS Windows
client on a Windows Server you could then access the data in
\\afs\local-cell\some-volume-path\ to copy the data to the local disk.

However, if all you need is a one time copy I would suggest using an
archival tool such a zip, b2zip, 7zip, etc. to compress the entire tree
of files into a single file and then copy it directly from OSX to the
Windows Server via CIFS.

Jeffrey Altman



signature.asc
Description: OpenPGP digital signature


RE: [OpenAFS] Request for Assistance with OpenAFS

2012-04-11 Thread James Bricknell
Hi Michael,

Thanks for the reply. The paths in use aren't as long as 32, 767 characters, 
but the 32,767 limit cannot be utilised. NTFS does indeed allow for a maximum 
limit of a path that is 32,767 characters in length, but the problem is caused 
by the applications that access the file system. Most Windows applications, 
including Explorer in Server 2008 R2 are written to an older API for backwards 
compatibility, and it is this that creates the 255 character limit problem.

I think that the maximum path that we have is probably in excess of 1000 
chracters, which I agree is excessive, but I don't make the rules here!

Regards,

James

-Original Message-
From: openafs-info-ad...@openafs.org [mailto:openafs-info-ad...@openafs.org] On 
Behalf Of Michael Richter
Sent: 11 April 2012 13:13
To: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS

Are you sure this is the problem?
According to Wikipedia, NTFS has max 255 characters in filename and max 32k 
characters in pathname. HFS+ has max 255 characters in filename and unlimited 
path length. Do you really have such long paths (more than
32,767 characters!!!)?

Mit freundlichen Grüßen
Michael Richter



schrieb James Bricknell:
> Hopefully this is a quick and stupid question.
>
> I have Mac clients on the network who have data in deep folder 
> structures with long filename paths, well in excess of the Windows
> 256(255) character limit, and they need to copy their data across onto 
> a Windows 2008 R2 Server, which obviously fails when the length of the 
> filename goes over this limit.
>
> If I install Open AFS on this Windows server, will this allow the 
> clients to successfully copy the data to a share on an NTFS formatted 
> volume on the Windows box? Also, if version 1.7 is implemented as a 
> native Windows file system, would I need to format a disk or partition 
> on the Windows box as an AFS volume for the Mac users to be able to 
> copy their long filename structures without issue, and would this data 
> be able to be browsed locally on the Windows server following copying 
> it across?
>
>
> __
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com 
> __

--
Michael Richter
Technische Universität Berlin
Universitätsbibliothek, IT-Service
Fasanenstraße 88
D-10623 Berlin
Tel: 030/314-76310

___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info

__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com 
__

__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
__
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2012-04-11 Thread Michael Richter

Are you sure this is the problem?
According to Wikipedia, NTFS has max 255 characters in filename and max 
32k characters in pathname. HFS+ has max 255 characters in filename and 
unlimited path length. Do you really have such long paths (more than 
32,767 characters!!!)?


Mit freundlichen Grüßen
Michael Richter



schrieb James Bricknell:

Hopefully this is a quick and stupid question.

I have Mac clients on the network who have data in deep folder
structures with long filename paths, well in excess of the Windows
256(255) character limit, and they need to copy their data across onto a
Windows 2008 R2 Server, which obviously fails when the length of the
filename goes over this limit.

If I install Open AFS on this Windows server, will this allow the
clients to successfully copy the data to a share on an NTFS formatted
volume on the Windows box? Also, if version 1.7 is implemented as a
native Windows file system, would I need to format a disk or partition
on the Windows box as an AFS volume for the Mac users to be able to copy
their long filename structures without issue, and would this data be
able to be browsed locally on the Windows server following copying it
across?


__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
__


--
Michael Richter
Technische Universität Berlin
Universitätsbibliothek, IT-Service
Fasanenstraße 88
D-10623 Berlin
Tel: 030/314-76310

___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2012-04-11 Thread Lars Schimmer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 2012-04-11 13:01, James Bricknell wrote:
> Hopefully this is a quick and stupid question.
> 
> 
> 
> I have Mac clients on the network who have data in deep folder 
> structures with long filename paths, well in excess of the Windows 
> 256(255) character limit, and they need to copy their data across
> onto a Windows 2008 R2 Server, which obviously fails when the
> length of the filename goes over this limit.
> 
> 
> 
> If I install Open AFS on this Windows server, will this allow the 
> clients to successfully copy the data to a share on an NTFS
> formatted volume on the Windows box? Also, if version 1.7 is
> implemented as a native Windows file system, would I need to format
> a disk or partition on the Windows box as an AFS volume for the Mac
> users to be able to copy their long filename structures without
> issue, and would this data be able to be browsed locally on the
> Windows server following copying it across?

Sorry, OpenAFS does not work that way.

And the Windows Server of OpenAFS is not really able to run currently,
as untested and not supported.

OpenAFS does NOT share existant filestructures of a existant server to
other clients (thats what SMB/MS filesharing does).

OpenAFS needs dedicated servers with dedicated data partitions which
save OpenAFS data in a own format on disk.

My suggestion for you: do shorten the filepath. Maybe with symlinks or
junction points.


MfG,
Lars Schimmer
- -- 
- -
TU Graz, Institut für ComputerGraphik & WissensVisualisierung
Tel: +43 316 873-5405   E-Mail: l.schim...@cgv.tugraz.at
Fax: +43 316 873-5402   PGP-Key-ID: 0x4A9B1723


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk+FckEACgkQmWhuE0qbFyN8nACaA4YOFqdssVZ9QvvKq4qpdCY4
RVAAn3Dm1FHtpOOMBCGPhmVhagUhDO6d
=0had
-END PGP SIGNATURE-
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2010-10-03 Thread Jeffrey Altman
On 9/17/2010 5:05 AM, Rudolf Bauer E1 wrote:
>  Hello,
> 
> I have a strange problem with OpenAFS client 1.5.77 running on Windows
> 7. When there is low traffic in AFS the client works fine. In times with
> more traffic it always hangs up. When hanging it takes pretty high CPU
> time. When trying to login in this state it shows error code 11862791
> (AFS service may not have startet). But in computer management I see
> OpenAFS Client Service startet and working fine. Additionally I see in
> the event viewer periodically the warning "Unable to send SMB Packet:
> NRC_SABORT session ended abnormally." approx. every 5 seconds from the
> OpenAFS Client.
> A reinstall of the client, uninstalling the AFS loopback adapter and
> deactivating NetBios in TCP/IP settings seem to have no effect on the
> issue.
> I would be thankful for proposals on how to solve this problem.
> 
> regards,
> 
> Rudi Bauer
> Max-Planck-Institut für Plasmaphysik, Garching

The problem is (unfortunately) a regression in Windows 7 that the
OpenAFS developers cannot work around.  Microsoft has a reproducible
test case and they are working on identifying the root cause of the issue.

At the same time, a native AFS redirector is under development that will
permit AFS to be accessed without relying upon the Windows SMB and
Netbios subsystems.

Jeffrey Altman



signature.asc
Description: OpenPGP digital signature


RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-26 Thread Kieffer, Catherine
How do I generate a proper bug report for those binaries?   

I will download 1.4.12 and try it.

I didn't see yacc as a source from the IBM website, but I did load bison.

I don't understand your last comment since I don't normally build much.  Unless 
it is related to my
having installed bison.  I also installed flex at one point just in case even 
though the IBM lex is also installed
as part of the IBM development tools.

[523]  /cdrom/IBM: rpm -qa
cdrecord-1.9-7
mkisofs-1.13-4
sudo-1.6.7p5-3
AIX-rpm-6.1.0.0-2
flex-2.5.4a-6
bison-1.875-3
gawk-3.1.3-1
bash-3.0-1

ck

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Sunday, March 14, 2010 8:46 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

On Fri, Mar 12, 2010 at 11:17 AM, Kieffer, Catherine
 wrote:
> I am running AIX v6.1TL0 SP2,  I am using the AIX XL C/C++ v10.1
>
> I have tried a number of things as well as googling to try to figure out how
> to get rid of the error but no success.
> When I tried to install the provided binaries for AIX a couple of months ago
> for v1.4.8, 1.4.10, and 1.4.11, they failed to run.
>
> I did try adding the '-ll -bnoquiet' options for the compile command which
> eliminated the first two undefined items, but the .yylex error still
> occurred.
>
> Any assistance in what I need to do to resolve the errors would be
> appreciated.

1) 1.4.12 is out
2) bug reports on those binaries if they do not work would be
appreciated. it built to completion for me.

> Here is output from the make command with the errors.
>

>     cd src && cd comerr && make all
>     echo 'char cml_version_number[]="@(#) OpenAFS 1.4.11 built ' `date
> +"%Y-%m-%d"` '";' >AFS_component_version_number.c
>
>     echo 'char* AFSVersion = "openafs 1.4.11"; '
>>>AFS_component_version_number.c
>     cc  -O -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -c compile_et.c
>
>     case rs_aix61 in  *_linux* | *_umlinux* )  cc  -O
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -o compile_et compile_et.o error_table.o
> -L/home/ckieffer/tmpbuild/openafs-1.4.11/lib -lafsutil;;  * )  cc  -O
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -o compile_et compile_et.o error_table.o
> -L/home/ckieffer/tmpbuild/openafs-1.4.11/lib -lafsutil -ll;;  esac
>
> ld: 0711-317 ERROR: Undefined symbol: yyin
> ld: 0711-317 ERROR: Undefined symbol: yyout
> ld: 0711-317 ERROR: Undefined symbol: .yylex
> ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more
> information.
> make: 1254-004 The error code from the last command is 8.

somehow you have an object file for error_table.o already? it's not
shown as being compiled above, nor the yacc command that generated the
source file.

yylex comes from yacc.



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England

RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-16 Thread Kieffer, Catherine
One final update.

I finally found and downloaded the 1.4.12 binary.  
First attempt crashed my computer again right after the output of afsd starting.

   [663]  /usr/vice: cd /etc
   [664]  /etc: ./rc.afs
   ./rc.afs: Loading 64 bit kernel AFS modules
   afsd: All AFS daemons started.
   login as: root

2nd attempt I wiped out the  /usr/vice/cache directory.
Still crashed after message about afsd starting.  Didn't even get a chance
to access the volume to get it to crash like the 1.4.11 binary.

   [1333]  /etc: ./rc.afs
   ./rc.afs: Loading 64 bit kernel AFS modules


   afsd: All AFS daemons started.

I was able to build the 1.4.12 source without all the self created headaches 
from the last version.
I cleared the cache first since that seems to be a sticking point and what was 
there was from trying to
run the problem binary.  It started great and worked.

   [1380]  /usr/vice/etc: /etc/rc.afs
   /etc/rc.afs: Loading 64 bit kernel AFS modules

   afsd: All AFS daemons started.

   fs: new sysname list set.
   fs: new sysname set.
   [1382]  /usr/vice/etc:
   [1382]  /usr/vice/etc:
   [1382]  /usr/vice/etc: cd /afs/hekimian.com/@sys/local/bin
   [1383]  /afs/hekimian.com/@sys/local/bin: ls -al
   total 787570
   drwxrwxr-x6 jhpb.adm system40960 Nov 11 2008  .
   drwxrwxrwx   45 root system 4096 Jul 27 2009  ..


If you want me to do anything else let me know.  I figure I have a couple of 
days before the engineers realize the computer
is now working as needed.  At that point my free wheeling access to it will be 
severely restricted.

ck



-Original Message-
From: openafs-info-ad...@openafs.org [mailto:openafs-info-ad...@openafs.org] On 
Behalf Of Kieffer, Catherine
Sent: Monday, March 15, 2010 4:37 PM
To: Derrick Brashear
Cc: openafs-info@openafs.org
Subject: RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

Thank you again for all your help.  It crashed the first time I ran the rc.afs, 
but after it came back up,
I cleaned out the /usr/vice/cache, and so far seems to be working ok after 
starting it again.

I did submit the bug item as you requested.

I am also going to upgrade the computer to
[512]  /: oslevel -s
6100-04-02-1007

So hopefully it will still work ok after that.

ck

-Original Message-
From: openafs-info-ad...@openafs.org [mailto:openafs-info-ad...@openafs.org] On 
Behalf Of Kieffer, Catherine
Sent: Monday, March 15, 2010 4:15 PM
To: Derrick Brashear
Cc: openafs-info@openafs.org
Subject: RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

Thank you very much.  Darn those trees :)
Sometimes I get so deep into trying to figure it out I forget where I started.

ck 

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Monday, March 15, 2010 4:10 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

On Mon, Mar 15, 2010 at 4:07 PM, Kieffer, Catherine
 wrote:
> First, thank you for all your assistance so far.
>
> That got rid of the error at the end.  I am going to have to read through all 
> the output I think.  I only need the client, so that
> it wouldn't install everying into my OS, I ran this command.
>
> make install DESTDIR=/home/ckieffer/afs

make dest; you'll get rs_aix61/dest/(*) which is what you get from the web site.



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England Number 470893
Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
United Kingdom.

Or if within the US,

Spirent Communications,
26750 Agoura Road, Calabasas, CA, 91302, USA.
Tel No. 1-818-676- 2300 


___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended rec

RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Kieffer, Catherine
Thank you again for all your help.  It crashed the first time I ran the rc.afs, 
but after it came back up,
I cleaned out the /usr/vice/cache, and so far seems to be working ok after 
starting it again.

I did submit the bug item as you requested.

I am also going to upgrade the computer to
[512]  /: oslevel -s
6100-04-02-1007

So hopefully it will still work ok after that.

ck

-Original Message-
From: openafs-info-ad...@openafs.org [mailto:openafs-info-ad...@openafs.org] On 
Behalf Of Kieffer, Catherine
Sent: Monday, March 15, 2010 4:15 PM
To: Derrick Brashear
Cc: openafs-info@openafs.org
Subject: RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

Thank you very much.  Darn those trees :)
Sometimes I get so deep into trying to figure it out I forget where I started.

ck 

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Monday, March 15, 2010 4:10 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

On Mon, Mar 15, 2010 at 4:07 PM, Kieffer, Catherine
 wrote:
> First, thank you for all your assistance so far.
>
> That got rid of the error at the end.  I am going to have to read through all 
> the output I think.  I only need the client, so that
> it wouldn't install everying into my OS, I ran this command.
>
> make install DESTDIR=/home/ckieffer/afs

make dest; you'll get rs_aix61/dest/(*) which is what you get from the web site.



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England Number 470893
Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
United Kingdom.

Or if within the US,

Spirent Communications,
26750 Agoura Road, Calabasas, CA, 91302, USA.
Tel No. 1-818-676- 2300 


___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England Number 470893
Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
United Kingdom.

Or if within the US,

Spirent Communications,
26750 Agoura Road, Calabasas, CA, 91302, USA.
Tel No. 1-818-676- 2300 


___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Kieffer, Catherine
Thank you very much.  Darn those trees :)
Sometimes I get so deep into trying to figure it out I forget where I started.

ck 

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Monday, March 15, 2010 4:10 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

On Mon, Mar 15, 2010 at 4:07 PM, Kieffer, Catherine
 wrote:
> First, thank you for all your assistance so far.
>
> That got rid of the error at the end.  I am going to have to read through all 
> the output I think.  I only need the client, so that
> it wouldn't install everying into my OS, I ran this command.
>
> make install DESTDIR=/home/ckieffer/afs

make dest; you'll get rs_aix61/dest/(*) which is what you get from the web site.



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England Number 470893
Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
United Kingdom.

Or if within the US,

Spirent Communications,
26750 Agoura Road, Calabasas, CA, 91302, USA.
Tel No. 1-818-676- 2300 


___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Derrick Brashear
On Mon, Mar 15, 2010 at 4:07 PM, Kieffer, Catherine
 wrote:
> First, thank you for all your assistance so far.
>
> That got rid of the error at the end.  I am going to have to read through all 
> the output I think.  I only need the client, so that
> it wouldn't install everying into my OS, I ran this command.
>
> make install DESTDIR=/home/ckieffer/afs

make dest; you'll get rs_aix61/dest/(*) which is what you get from the web site.
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Kieffer, Catherine
First, thank you for all your assistance so far.

That got rid of the error at the end.  I am going to have to read through all 
the output I think.  I only need the client, so that
it wouldn't install everying into my OS, I ran this command.

make install DESTDIR=/home/ckieffer/afs

No root.client, and for the few files I checked, nothing to match what goes 
into /usr/vice/etc/dkload and other areas there.  
How do  you get it to create the root.client files?

ck

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Monday, March 15, 2010 3:29 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

add --disable-pam to your configure arguments.

On Mon, Mar 15, 2010 at 1:58 PM, Kieffer, Catherine
 wrote:
> Well I guess after all the effort when I tried with C++ v7, I should have 
> started with a clean slate.  It got further with bison and fles removed,
> but still got errors.
>
> I tried with the krb option, so I think I will try again leaving it out to 
> see what happens.  by the way, I didn't see 1.4.12 available to download yet.
>
...removed text
> No link line for system rs_aix61.
>        /home/ckieffer/tmpbuild/openafs-1.4.11/src/pinstall/pinstall  
> pam_afs.so.1 /home/ckieffer/tmpbuild/openafs-1.4.11/lib/pam_afs.so.1
> Can't open source file ``pam_afs.so.1'': No such file or directory
> make: 1254-004 The error code from the last command is 1.
>
>
> Stop.
> make: 1254-004 The error code from the last command is 2.
>
>
> Stop.
> make: 1254-004 The error code from the last command is 2.
>
>
> Stop.
> make: 1254-004 The error code from the last command is 2.
>
>
> Stop.
> [950]  /home/ckieffer/tmpbuild/openafs-1.4.11: find ./ -name 
> "pam*" -print
> ./src/packaging/Debian/patches/pam
> ./src/pam
> ./src/pam/pam_afs.5
>
>
> ck
>
> -Original Message-
> From: Derrick Brashear [mailto:sha...@gmail.com]
> Sent: Monday, March 15, 2010 1:52 PM
> To: Kieffer, Catherine
> Cc: openafs-info@openafs.org
> Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
> attempt fails with .yylex undefined symbol
>
> That should be fine. Try uninstalling bison, if it's segfaulting
> there's not much point in leaving it installed.
>
> On Mon, Mar 15, 2010 at 12:35 PM, Kieffer, Catherine
>  wrote:
>> Am looking for yacc now, but figured I had better mention this just in case. 
>>  the bos.adt.utils does include yacc.
>> Any chance I need something set in my environment?
>>
>> [900]  /home/ckieffer/tmpbuild/openafs-1.4.11: lslpp -l 
>> bos.adt.utils
>>  Fileset                      Level  State      Description
>>  
>> Path: /usr/lib/objrepos
>>  bos.adt.utils              6.1.4.0  COMMITTED  Base Application Development
>>                                                 Utilities - lex and yacc
>>
>> [901]  /home/ckieffer/tmpbuild/openafs-1.4.11: ls -al 
>> /usr/bin/yacc
>> lrwxrwxrwx    1 bin      bin              17 Nov 19 15:03 /usr/bin/yacc -> 
>> /usr/ccs/bin/yacc
>>
>> ck
>>
>> -Original Message-
>> From: Derrick Brashear [mailto:sha...@gmail.com]
>> Sent: Monday, March 15, 2010 10:39 AM
>> To: Kieffer, Catherine
>> Cc: openafs-info@openafs.org
>> Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
>> attempt fails with .yylex undefined symbol
>>
>> On Mon, Mar 15, 2010 at 9:35 AM, Kieffer, Catherine
>>  wrote:
>>>      bison -y  error_table.y
>>> make: 1254-059 The signal code from the last command is 13.
>>>
>> bison's broken, apparently. it crashed. see if you can find and install yacc.
>>
>> --
>> Derrick
>>
>> 
>>
>> E-mail confidentiality.
>> 
>> This e-mail contains confidential and / or privileged information belonging 
>> to Spirent Communications plc, its affiliates and / or subsidiaries. If you 
>> are not the intended recipient, you are hereby notified that any disclosure, 
>> copying, distribution and / or the taking of any action based upon reliance 
>> on the contents of this transmission is strictly forbidden. If you have 
>> received this message in error please notify the sender by return e-mail and 
>> delete it from your system. If you require assistance, please contact our IT 
>> department at helpd...@spirent.com.
>>
>> Spirent Communications plc,
>> Northwoo

Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Russ Allbery
"Kieffer, Catherine"  writes:

> + echo No link line for system rs_aix61.
> No link line for system rs_aix61.
> /home/ckieffer/tmpbuild/openafs-1.4.11/src/pinstall/pinstall  
> pam_afs.so.1 /home/ckieffer/tmpbuild/openafs-1.4.11/lib/pam_afs.so.1
> Can't open source file ``pam_afs.so.1'': No such file or directory
> make: 1254-004 The error code from the last command is 1.

For some reason, despite the fact that you have an AIX system, your system
is trying to build the PAM modules.  I'm not sure why this is, since
acinclude.m4 has:

power*-ibm-aix6.1*)
AFS_SYSNAME="rs_aix61"
enable_pam="no"
;;

which should disable that, and it looks like that code was added at the
same time as AIX 6.1 support.

You may actually be able to ignore this error, since you don't care about
the PAM modules anyway.

-- 
Russ Allbery (r...@stanford.edu) 
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Derrick Brashear
1/lib/librxkad.a 
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/libsys.a  
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/libdes.a 
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/librx.a  
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/liblwp.a 
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/libaudit.a  
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/libcmd.a 
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/libcom_err.a  
> /home/ckieffer/tmpbuild/openafs-1.4.11/lib/util.a   ;; * )  echo No link line 
> for system rs_aix61. ;;  esac
> + echo No link line for system rs_aix61.
> No link line for system rs_aix61.
>        /home/ckieffer/tmpbuild/openafs-1.4.11/src/pinstall/pinstall  
> pam_afs.so.1 /home/ckieffer/tmpbuild/openafs-1.4.11/lib/pam_afs.so.1
> Can't open source file ``pam_afs.so.1'': No such file or directory
> make: 1254-004 The error code from the last command is 1.
>
>
> Stop.
> make: 1254-004 The error code from the last command is 2.
>
>
> Stop.
> make: 1254-004 The error code from the last command is 2.
>
>
> Stop.
> make: 1254-004 The error code from the last command is 2.
>
>
> Stop.
> [950]  /home/ckieffer/tmpbuild/openafs-1.4.11: find ./ -name 
> "pam*" -print
> ./src/packaging/Debian/patches/pam
> ./src/pam
> ./src/pam/pam_afs.5
>
>
> ck
>
> -Original Message-
> From: Derrick Brashear [mailto:sha...@gmail.com]
> Sent: Monday, March 15, 2010 1:52 PM
> To: Kieffer, Catherine
> Cc: openafs-info@openafs.org
> Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
> attempt fails with .yylex undefined symbol
>
> That should be fine. Try uninstalling bison, if it's segfaulting
> there's not much point in leaving it installed.
>
> On Mon, Mar 15, 2010 at 12:35 PM, Kieffer, Catherine
>  wrote:
>> Am looking for yacc now, but figured I had better mention this just in case. 
>>  the bos.adt.utils does include yacc.
>> Any chance I need something set in my environment?
>>
>> [900]  /home/ckieffer/tmpbuild/openafs-1.4.11: lslpp -l 
>> bos.adt.utils
>>  Fileset                      Level  State      Description
>>  --------------------
>> Path: /usr/lib/objrepos
>>  bos.adt.utils              6.1.4.0  COMMITTED  Base Application Development
>>                                                 Utilities - lex and yacc
>>
>> [901]  /home/ckieffer/tmpbuild/openafs-1.4.11: ls -al 
>> /usr/bin/yacc
>> lrwxrwxrwx    1 bin      bin              17 Nov 19 15:03 /usr/bin/yacc -> 
>> /usr/ccs/bin/yacc
>>
>> ck
>>
>> -Original Message-
>> From: Derrick Brashear [mailto:sha...@gmail.com]
>> Sent: Monday, March 15, 2010 10:39 AM
>> To: Kieffer, Catherine
>> Cc: openafs-info@openafs.org
>> Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
>> attempt fails with .yylex undefined symbol
>>
>> On Mon, Mar 15, 2010 at 9:35 AM, Kieffer, Catherine
>>  wrote:
>>>      bison -y  error_table.y
>>> make: 1254-059 The signal code from the last command is 13.
>>>
>> bison's broken, apparently. it crashed. see if you can find and install yacc.
>>
>> --
>> Derrick
>>
>> 
>>
>> E-mail confidentiality.
>> 
>> This e-mail contains confidential and / or privileged information belonging 
>> to Spirent Communications plc, its affiliates and / or subsidiaries. If you 
>> are not the intended recipient, you are hereby notified that any disclosure, 
>> copying, distribution and / or the taking of any action based upon reliance 
>> on the contents of this transmission is strictly forbidden. If you have 
>> received this message in error please notify the sender by return e-mail and 
>> delete it from your system. If you require assistance, please contact our IT 
>> department at helpd...@spirent.com.
>>
>> Spirent Communications plc,
>> Northwood Park, Gatwick Road, Crawley,
>> West Sussex, RH10 9XN, United Kingdom.
>> Tel No. +44 (0) 1293 767676
>> Fax No. +44 (0) 1293 767677
>>
>> Registered in England Number 470893
>> Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
>> United Kingdom.
>>
>> Or if within the US,
>>
>> Spirent Communications,
>> 26750 Agoura Road, Calabasas, CA, 91302, USA.
>> Tel No. 1-818-676- 2300
>>
>> 
>>
>
>
>
> --
> Derrick
>
> 
>
> E-mail confidentiality.
> ---

RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Kieffer, Catherine
. ;;  esac
+ echo No link line for system rs_aix61.
No link line for system rs_aix61.
/home/ckieffer/tmpbuild/openafs-1.4.11/src/pinstall/pinstall  
pam_afs.so.1 /home/ckieffer/tmpbuild/openafs-1.4.11/lib/pam_afs.so.1
Can't open source file ``pam_afs.so.1'': No such file or directory
make: 1254-004 The error code from the last command is 1.


Stop.
make: 1254-004 The error code from the last command is 2.


Stop.
make: 1254-004 The error code from the last command is 2.


Stop.
make: 1254-004 The error code from the last command is 2.


Stop.
[950]  /home/ckieffer/tmpbuild/openafs-1.4.11: find ./ -name "pam*" 
-print
./src/packaging/Debian/patches/pam
./src/pam
./src/pam/pam_afs.5


ck 

-Original Message-----
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Monday, March 15, 2010 1:52 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

That should be fine. Try uninstalling bison, if it's segfaulting
there's not much point in leaving it installed.

On Mon, Mar 15, 2010 at 12:35 PM, Kieffer, Catherine
 wrote:
> Am looking for yacc now, but figured I had better mention this just in case.  
> the bos.adt.utils does include yacc.
> Any chance I need something set in my environment?
>
> [900]  /home/ckieffer/tmpbuild/openafs-1.4.11: lslpp -l 
> bos.adt.utils
>  Fileset                      Level  State      Description
>  
> Path: /usr/lib/objrepos
>  bos.adt.utils              6.1.4.0  COMMITTED  Base Application Development
>                                                 Utilities - lex and yacc
>
> [901]  /home/ckieffer/tmpbuild/openafs-1.4.11: ls -al 
> /usr/bin/yacc
> lrwxrwxrwx    1 bin      bin              17 Nov 19 15:03 /usr/bin/yacc -> 
> /usr/ccs/bin/yacc
>
> ck
>
> -Original Message-
> From: Derrick Brashear [mailto:sha...@gmail.com]
> Sent: Monday, March 15, 2010 10:39 AM
> To: Kieffer, Catherine
> Cc: openafs-info@openafs.org
> Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
> attempt fails with .yylex undefined symbol
>
> On Mon, Mar 15, 2010 at 9:35 AM, Kieffer, Catherine
>  wrote:
>>      bison -y  error_table.y
>> make: 1254-059 The signal code from the last command is 13.
>>
> bison's broken, apparently. it crashed. see if you can find and install yacc.
>
> --
> Derrick
>
> 
>
> E-mail confidentiality.
> 
> This e-mail contains confidential and / or privileged information belonging 
> to Spirent Communications plc, its affiliates and / or subsidiaries. If you 
> are not the intended recipient, you are hereby notified that any disclosure, 
> copying, distribution and / or the taking of any action based upon reliance 
> on the contents of this transmission is strictly forbidden. If you have 
> received this message in error please notify the sender by return e-mail and 
> delete it from your system. If you require assistance, please contact our IT 
> department at helpd...@spirent.com.
>
> Spirent Communications plc,
> Northwood Park, Gatwick Road, Crawley,
> West Sussex, RH10 9XN, United Kingdom.
> Tel No. +44 (0) 1293 767676
> Fax No. +44 (0) 1293 767677
>
> Registered in England Number 470893
> Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
> United Kingdom.
>
> Or if within the US,
>
> Spirent Communications,
> 26750 Agoura Road, Calabasas, CA, 91302, USA.
> Tel No. 1-818-676- 2300
>
> 
>



-- 
Derrick



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England Number 470893
Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
United Kingdom.

Or if within the US,

Spirent Communications,
26750 Agoura Road, Calabasas, CA, 91302, USA.
Tel No. 1-818-676- 2300 


___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Derrick Brashear
That should be fine. Try uninstalling bison, if it's segfaulting
there's not much point in leaving it installed.

On Mon, Mar 15, 2010 at 12:35 PM, Kieffer, Catherine
 wrote:
> Am looking for yacc now, but figured I had better mention this just in case.  
> the bos.adt.utils does include yacc.
> Any chance I need something set in my environment?
>
> [900]  /home/ckieffer/tmpbuild/openafs-1.4.11: lslpp -l 
> bos.adt.utils
>  Fileset                      Level  State      Description
>  
> Path: /usr/lib/objrepos
>  bos.adt.utils              6.1.4.0  COMMITTED  Base Application Development
>                                                 Utilities - lex and yacc
>
> [901]  /home/ckieffer/tmpbuild/openafs-1.4.11: ls -al 
> /usr/bin/yacc
> lrwxrwxrwx    1 bin      bin              17 Nov 19 15:03 /usr/bin/yacc -> 
> /usr/ccs/bin/yacc
>
> ck
>
> -Original Message-
> From: Derrick Brashear [mailto:sha...@gmail.com]
> Sent: Monday, March 15, 2010 10:39 AM
> To: Kieffer, Catherine
> Cc: openafs-info@openafs.org
> Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
> attempt fails with .yylex undefined symbol
>
> On Mon, Mar 15, 2010 at 9:35 AM, Kieffer, Catherine
>  wrote:
>>      bison -y  error_table.y
>> make: 1254-059 The signal code from the last command is 13.
>>
> bison's broken, apparently. it crashed. see if you can find and install yacc.
>
> --
> Derrick
>
> 
>
> E-mail confidentiality.
> 
> This e-mail contains confidential and / or privileged information belonging 
> to Spirent Communications plc, its affiliates and / or subsidiaries. If you 
> are not the intended recipient, you are hereby notified that any disclosure, 
> copying, distribution and / or the taking of any action based upon reliance 
> on the contents of this transmission is strictly forbidden. If you have 
> received this message in error please notify the sender by return e-mail and 
> delete it from your system. If you require assistance, please contact our IT 
> department at helpd...@spirent.com.
>
> Spirent Communications plc,
> Northwood Park, Gatwick Road, Crawley,
> West Sussex, RH10 9XN, United Kingdom.
> Tel No. +44 (0) 1293 767676
> Fax No. +44 (0) 1293 767677
>
> Registered in England Number 470893
> Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
> United Kingdom.
>
> Or if within the US,
>
> Spirent Communications,
> 26750 Agoura Road, Calabasas, CA, 91302, USA.
> Tel No. 1-818-676- 2300
>
> 
>



-- 
Derrick
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Kieffer, Catherine
Am looking for yacc now, but figured I had better mention this just in case.  
the bos.adt.utils does include yacc.
Any chance I need something set in my environment?

[900]  /home/ckieffer/tmpbuild/openafs-1.4.11: lslpp -l 
bos.adt.utils
  Fileset  Level  State  Description
  
Path: /usr/lib/objrepos
  bos.adt.utils  6.1.4.0  COMMITTED  Base Application Development
 Utilities - lex and yacc

[901]  /home/ckieffer/tmpbuild/openafs-1.4.11: ls -al /usr/bin/yacc
lrwxrwxrwx1 bin  bin  17 Nov 19 15:03 /usr/bin/yacc -> 
/usr/ccs/bin/yacc

ck 

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Monday, March 15, 2010 10:39 AM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

On Mon, Mar 15, 2010 at 9:35 AM, Kieffer, Catherine
 wrote:
>      bison -y  error_table.y
> make: 1254-059 The signal code from the last command is 13.
>
bison's broken, apparently. it crashed. see if you can find and install yacc.

-- 
Derrick



E-mail confidentiality.

This e-mail contains confidential and / or privileged information belonging to 
Spirent Communications plc, its affiliates and / or subsidiaries. If you are 
not the intended recipient, you are hereby notified that any disclosure, 
copying, distribution and / or the taking of any action based upon reliance on 
the contents of this transmission is strictly forbidden. If you have received 
this message in error please notify the sender by return e-mail and delete it 
from your system. If you require assistance, please contact our IT department 
at helpd...@spirent.com.

Spirent Communications plc,
Northwood Park, Gatwick Road, Crawley,
West Sussex, RH10 9XN, United Kingdom.
Tel No. +44 (0) 1293 767676
Fax No. +44 (0) 1293 767677

Registered in England Number 470893
Registered at Northwood Park, Gatwick Road, Crawley, West Sussex, RH10 9XN, 
United Kingdom.

Or if within the US,

Spirent Communications,
26750 Agoura Road, Calabasas, CA, 91302, USA.
Tel No. 1-818-676- 2300 


___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Derrick Brashear
On Mon, Mar 15, 2010 at 9:35 AM, Kieffer, Catherine
 wrote:
>      bison -y  error_table.y
> make: 1254-059 The signal code from the last command is 13.
>
bison's broken, apparently. it crashed. see if you can find and install yacc.

-- 
Derrick
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Kieffer, Catherine
Along with the below, after thinking about the .o file you mentione, I started 
from scratch and received different errors.  
Not sure what to make of them.   I also uninstalled flex the second time hoping 
maybe it was conflict between lex and flex, but no such luck.

=
Target "all" is up to date.
cd src && cd comerr && make all
echo 'char cml_version_number[]="@(#) OpenAFS 1.4.11 built ' `date 
+"%Y-%m-%d"` '";' >AFS_component_version_number.c
echo 'char* AFSVersion = "openafs 1.4.11"; ' 
>>AFS_component_version_number.c
cc  -O -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I. 
-I/home/ckieffer/tmpbuild/openafs-1.4.11/include 
-I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs 
-I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx 
-I/home/ckieffer/tmpbuild/openafs-1.4.11 
-I/home/ckieffer/tmpbuild/openafs-1.4.11/src 
-I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void  -c 
compile_et.c
rm -f et_lex.lex.c
lex -t ./et_lex.lex.l > et_lex.lex.c
bison -y  error_table.y
make: 1254-059 The signal code from the last command is 13.


Stop.
make: 1254-004 The error code from the last command is 2.


Stop.
make: 1254-004 The error code from the last command is 2.


=

ck

-Original Message-
From: Kieffer, Catherine 
Sent: Monday, March 15, 2010 9:44 AM
To: Derrick Brashear
Cc: openafs-info@openafs.org
Subject: RE: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

How do I generate a proper bug report for those binaries?   

I will download 1.4.12 and try it.

I didn't see yacc as a source from the IBM website, but I did load bison.

I don't understand your last comment since I don't normally build much.  Unless 
it is related to my
having installed bison.  I also installed flex at one point just in case even 
though the IBM lex is also installed
as part of the IBM development tools.

[523]  /cdrom/IBM: rpm -qa
cdrecord-1.9-7
mkisofs-1.13-4
sudo-1.6.7p5-3
AIX-rpm-6.1.0.0-2
flex-2.5.4a-6
bison-1.875-3
gawk-3.1.3-1
bash-3.0-1

ck

-Original Message-
From: Derrick Brashear [mailto:sha...@gmail.com] 
Sent: Sunday, March 14, 2010 8:46 PM
To: Kieffer, Catherine
Cc: openafs-info@openafs.org
Subject: Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build 
attempt fails with .yylex undefined symbol

On Fri, Mar 12, 2010 at 11:17 AM, Kieffer, Catherine
 wrote:
> I am running AIX v6.1TL0 SP2,  I am using the AIX XL C/C++ v10.1
>
> I have tried a number of things as well as googling to try to figure out how
> to get rid of the error but no success.
> When I tried to install the provided binaries for AIX a couple of months ago
> for v1.4.8, 1.4.10, and 1.4.11, they failed to run.
>
> I did try adding the '-ll -bnoquiet' options for the compile command which
> eliminated the first two undefined items, but the .yylex error still
> occurred.
>
> Any assistance in what I need to do to resolve the errors would be
> appreciated.

1) 1.4.12 is out
2) bug reports on those binaries if they do not work would be
appreciated. it built to completion for me.

> Here is output from the make command with the errors.
>

>     cd src && cd comerr && make all
>     echo 'char cml_version_number[]="@(#) OpenAFS 1.4.11 built ' `date
> +"%Y-%m-%d"` '";' >AFS_component_version_number.c
>
>     echo 'char* AFSVersion = "openafs 1.4.11"; '
>>>AFS_component_version_number.c
>     cc  -O -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -c compile_et.c
>
>     case rs_aix61 in  *_linux* | *_umlinux* )  cc  -O
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -o compile_et compile_et.o error_table.o
> -L/home/ckieffer/tmpbuild/openafs-1.4.11/lib -lafsutil;;  * )  cc  -O
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
>

Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-15 Thread Derrick Brashear
On Mon, Mar 15, 2010 at 8:44 AM, Kieffer, Catherine
 wrote:
> How do I generate a proper bug report for those binaries?

An improper one is fine, i'll ask for more info. Probably information
about the processor and patches applied to the OS

> I will download 1.4.12 and try it.
>
> I didn't see yacc as a source from the IBM website, but I did load bison.


> I don't understand your last comment since I don't normally build much.  
> Unless it is related to my
> having installed bison.

It may well be. I suspect yacc's options are hardcoded in this case
because a "proper" AIX dev environment has only lex and yacc and bison
and flex simply weren't considered.

>  I also installed flex at one point just in case even though the IBM lex is 
> also installed
> as part of the IBM development tools.
>
> [523]  /cdrom/IBM: rpm -qa
> cdrecord-1.9-7
> mkisofs-1.13-4
> sudo-1.6.7p5-3
> AIX-rpm-6.1.0.0-2
> flex-2.5.4a-6
> bison-1.875-3
> gawk-3.1.3-1
> bash-3.0-1
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS - AIX v6.1 build attempt fails with .yylex undefined symbol

2010-03-14 Thread Derrick Brashear
On Fri, Mar 12, 2010 at 11:17 AM, Kieffer, Catherine
 wrote:
> I am running AIX v6.1TL0 SP2,  I am using the AIX XL C/C++ v10.1
>
> I have tried a number of things as well as googling to try to figure out how
> to get rid of the error but no success.
> When I tried to install the provided binaries for AIX a couple of months ago
> for v1.4.8, 1.4.10, and 1.4.11, they failed to run.
>
> I did try adding the '-ll -bnoquiet' options for the compile command which
> eliminated the first two undefined items, but the .yylex error still
> occurred.
>
> Any assistance in what I need to do to resolve the errors would be
> appreciated.

1) 1.4.12 is out
2) bug reports on those binaries if they do not work would be
appreciated. it built to completion for me.

> Here is output from the make command with the errors.
>

>     cd src && cd comerr && make all
>     echo 'char cml_version_number[]="@(#) OpenAFS 1.4.11 built ' `date
> +"%Y-%m-%d"` '";' >AFS_component_version_number.c
>
>     echo 'char* AFSVersion = "openafs 1.4.11"; '
>>>AFS_component_version_number.c
>     cc  -O -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -c compile_et.c
>
>     case rs_aix61 in  *_linux* | *_umlinux* )  cc  -O
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -o compile_et compile_et.o error_table.o
> -L/home/ckieffer/tmpbuild/openafs-1.4.11/lib -lafsutil;;  * )  cc  -O
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src/config -I. -I.
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/afs
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/include/rx
> -I/home/ckieffer/tmpbuild/openafs-1.4.11
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src
> -I/home/ckieffer/tmpbuild/openafs-1.4.11/src -K -D_NONSTD_TYPES -D_MBI=void
> -o compile_et compile_et.o error_table.o
> -L/home/ckieffer/tmpbuild/openafs-1.4.11/lib -lafsutil -ll;;  esac
>
> ld: 0711-317 ERROR: Undefined symbol: yyin
> ld: 0711-317 ERROR: Undefined symbol: yyout
> ld: 0711-317 ERROR: Undefined symbol: .yylex
> ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more
> information.
> make: 1254-004 The error code from the last command is 8.

somehow you have an object file for error_table.o already? it's not
shown as being compiled above, nor the yacc command that generated the
source file.

yylex comes from yacc.
___
OpenAFS-info mailing list
OpenAFS-info@openafs.org
https://lists.openafs.org/mailman/listinfo/openafs-info


Re: [OpenAFS] Request for Assistance with OpenAFS

2010-02-12 Thread Jeffrey Altman
On 2/12/2010 3:03 PM, Richard H. Pletcher wrote:
> When I try to install openafs on my 64 bit windows 7 system the
> installation is halted with an error message "Installation of Network
> provider failed, system error 5".
> I have installed the sofware successfully on other 64 bit windows
> 7systems.  What is the remedy?
> 
> Thanks

I am unfamiliar with this problem and there is insufficient information
provided to even guess.  Error 5 is Access Denied.

Please submit a bug report at openafs-b...@openafs.org.  Attach to that
report a copy of an installation log file generated by manually
executing the installer:

  msiexec /i  /l*v 

Hopefully the logfile might provide some clues.

Be sure to include the version number of the installer as part of the
report.

Jeffrey Altman





smime.p7s
Description: S/MIME Cryptographic Signature


Re: [OpenAFS] Request for Assistance with OpenAFS

2010-02-09 Thread Jeffrey Altman
On 1/26/2010 11:47 AM, Elizabeth L Zukowski wrote:
> Hello,
> 
>  
> 
> I installed OpenAFS 1.5.7000 on my Dell Latitude E6400, running XP
> 32-bit which seemed to work.  I would like to map a drive to my laptop,
> but there is not a Drive Letters Tab or Advanced Tab.  The only tab I
> have available is the Tokens Tab.  I have my AFS tokens that were
> created with Kerberos credentials.  Any thought as to why I don’t have
> the Tabs…?
> 
>  
> 
> Any help is appreciated – thanks,

As documented in the Release Notes, the afscreds (AFS authentication
tool) has been deprecated for many years now.  One of the primary
reasons has been due to the existence of the unreliable drive mapping
functionality and the service start/stop functionality.
In 1.5.68, the drive mapping and service start/stop pages were removed.

Drive letter mapping should be performed using the Explorer Shell.
You can map a drive letter to any path beginning with \\AFS including
specific volumes using \\AFS\cell#volume\

Jeffrey Altman




smime.p7s
Description: S/MIME Cryptographic Signature


Re: [OpenAFS] Request for Assistance with OpenAFS

2010-02-02 Thread John Howard
http://www.teradactyl.com/

On Mon, Sep 28, 2009 at 11:28 AM,  wrote:

>  OpenAFS
>
>
>
> I am researching this product and am trying to find out which backup
> products currently can backup files systems using AFS.  If there is any
> documentation or web sites you can point to I would be grateful.
>
>
>
>
>
> *Thanks***
>
> * *
>
> *Jeff Jones*
>
> *LCNS LCNA MCSE MCSA***
>
> *Premium Support Services
> Designated Support Engineer*
>
> *Information Management Software Group (IMSG),**
> **Problem Resolution & Escalation Management (PREM)**
> **EMC Global Services*
>
> *Telephone:1.877.534.2867*
>
> *Work:1.425.948.6089*
>
> *Email:   jones_j...@emc.com ***
>
> 
>
>
>
>
>