afpfs-ng-devel Mailing List for afpfs-ng (Page 3)
Status: Alpha
Brought to you by:
alexthepuffin
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
(10) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(8) |
Feb
(9) |
Mar
(16) |
Apr
(1) |
May
(19) |
Jun
(5) |
Jul
(4) |
Aug
(6) |
Sep
(7) |
Oct
(14) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(4) |
Mar
(14) |
Apr
(6) |
May
(2) |
Jun
(14) |
Jul
(11) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Alex d. <ale...@gm...> - 2008-03-28 16:54:02
|
I'm interested in people's experiences with afpfs-ng 0.8.1. I usually get an increase in private mail reporting bugs after a release, but now I'm not. This is interesting because there's a significant increase in downloads. There's a few possibilities here: - it actually just works; I know prebuilt .deb packages have helped with this quite a bit - people are using afpcmd instead of fuse, which is less error prone - most people just give up since it doesn't work for them at the start I'm realistic in thinking that most afpfs-ng bugs are never reported. As for current development, there's a few Apple security problems I've found in doing AFP development (one was the Airport Extreme vulnerability) that have taken time. Other subprojects are: - KDE interface (I'm now well on my way, now that I've learned a bit about KDE) - gtk interface (I'm waiting for GIO to settle down a bit) - time machine interfaces (recovery, backup), this isn't very well researched yet - spotlight interfaces - Alex |
From: Alex d. <ale...@gm...> - 2008-03-28 16:42:46
|
On 28-Mar-08, at 10:59 AM, HAT wrote: > > Maybe, I was misunderstanding it. > I tested only the afpcmd. I don't use FUSE. > When dumping code, I made a mistake. > Greek Extended Characters has been correctly precomposed. That's interesting; I never did any testing of any internationalization with afpcmd; if it works, it is either because the changes were done correctly in libafpclient, or by chance. So thanks for testing it. I'd be surprised if afpcmd itself didn't have some bugs in this area. Also, you're the second person to acknowledge that they have actually used afpcmd. - Alex |
From: HAT <ha...@fa...> - 2008-03-28 14:59:40
|
hi. >> 1) precompose two characters only: supported >> 2) precompose two characters over: unsupported > >I've checked with decompositions of up to four characters and AFAIR it >works ok. It's not done in a single call to UCS2precompose() but >repeatedly, so that with each call the "next" accent will be combined >with the base character (which in the later steps will already be an >accented one) Sorry. Maybe, I was misunderstanding it. I tested only the afpcmd. I don't use FUSE. When dumping code, I made a mistake. Greek Extended Characters has been correctly precomposed. >> 3) decompose: sample only > >There is no decomposition, since the MAC filesystem does the appropriate >conversions before writing. I was not aware of any problems related to >the missing functionality so far ... Yes. It is a problem which standard or implementation is important. How is a table[] in lib/unicode.c generated? This is not at least based on Unicode 3.2. We should discuss which version to adopt. I think that we should use the newest version 5.0.0. -- HAT |
From: Michael U. <mu...@re...> - 2008-03-28 11:34:38
|
HAT wrote: > hi. Hi HAT, thanks for looking into this! I did the implementation of UTF-8 support for afpfs-ng. Currently I'm on a business trip but will be back this weekend, so we might look a little closer then. A few remarks: > I'm reading the source of afpfs-ng 0.8.1 for the first time now. > I think that there are problems in precomposing and decomposing. > > 1) precompose two characters only: supported > 2) precompose two characters over: unsupported I've checked with decompositions of up to four characters and AFAIR it works ok. It's not done in a single call to UCS2precompose() but repeatedly, so that with each call the "next" accent will be combined with the base character (which in the later steps will already be an accented one) > 3) decompose: sample only There is no decomposition, since the MAC filesystem does the appropriate conversions before writing. I was not aware of any problems related to the missing functionality so far ... > 4) hangul: unsupported > 5) Unicode U+010000 over: unsupported > 6) maccodepage for AFP2: unsupported > > The 2), 3) and 4) can be implemented comparatively easily > because I did them for netatalk. > > There are two methods to support the U+010000 over. > > a) Using surrogate pair > b) Using UCS4 instead of UCS2 > > The surrogate pair is dirty and complex. > Because netatalk 2.1dev use the surrogate pair, It is difficult > to support the U+010000 over. > If we use UCS4 instead of UCS2, the implementation will be easy. > > Replace. > > from > char16 *UTF8toUCS2(str) > to > u_int32_t *UTF8toUCS4(str) > > from > int UCS2precompose(first, second) > to > u_int64_t UCS4precompose(first, second) > > from > // worst case: 3 bytes of UTF8 per UCS2 char + terminal 0 > to > // worst case: 4 bytes of UTF8 per UCS4 char + terminal 0 > > > The size of table[] is two times. > > static struct { > int precomposed; > unsigned int pattern; > } table[] = { > { 0x00000000, 0x0000000000000000}, // Dummy entry table[0] > { 0x000000C0, 0x0000004100000300}, > { 0x000000C1, 0x0000004100000301}, > { 0x000000C2, 0x0000004100000302}, > (snip) > { 0x0001D1BF, 0x0001D1BB0001D16F}, > { 0x0001D1BE, 0x0001D1BC0001D16E}, > { 0x0001D1C0, 0x0001D1BC0001D16F}, > }; > > > PS. > Don't trust the Apple's documents. > > http://developer.apple.com/technotes/tn/tn1150table.html > This table is based on Unicode 2.x. This table is the basis for the precompositions performed by UCS2precompose(). As written above, not only two character decompositions but also three and four character decomps should be handled correctly. > http://developer.apple.com/documentation/Networking/Conceptual/AFP/AFP3_1.pdf > This document is based on Unicode 3.2. > > Mac OS X 10.5.2 Leopard use newer Unicode. > 0x1B06 to 0x1B05 0x1B35 > This is not in Unicode 3.2. If there are additions to the old tn1150 decomposition table we should add them or increase the element sizes appropriately to handle Unicode U+010000. Thanks again + Best regards ... Michael |
From: Alex d. <ale...@gm...> - 2008-03-27 19:02:13
|
HAT, Unfortunately, my understanding of multibyte character support is limited, so I really appreciate your attention to this. Would you consider creating a patch to support any of this? It would be a very valuable addition. - Alex On 27-Mar-08, at 2:52 PM, HAT wrote: > hi. > > I'm reading the source of afpfs-ng 0.8.1 for the first time now. > I think that there are problems in precomposing and decomposing. > > 1) precompose two characters only: supported > 2) precompose two characters over: unsupported > 3) decompose: sample only > 4) hangul: unsupported > 5) Unicode U+010000 over: unsupported > 6) maccodepage for AFP2: unsupported > > The 2), 3) and 4) can be implemented comparatively easily > because I did them for netatalk. > > There are two methods to support the U+010000 over. > > a) Using surrogate pair > b) Using UCS4 instead of UCS2 > > The surrogate pair is dirty and complex. > Because netatalk 2.1dev use the surrogate pair, It is difficult > to support the U+010000 over. > If we use UCS4 instead of UCS2, the implementation will be easy. > > Replace. > > from > char16 *UTF8toUCS2(str) > to > u_int32_t *UTF8toUCS4(str) > > from > int UCS2precompose(first, second) > to > u_int64_t UCS4precompose(first, second) > > from > // worst case: 3 bytes of UTF8 per UCS2 char + terminal 0 > to > // worst case: 4 bytes of UTF8 per UCS4 char + terminal 0 > > > The size of table[] is two times. > > static struct { > int precomposed; > unsigned int pattern; > } table[] = { > { 0x00000000, 0x0000000000000000}, // Dummy entry table[0] > { 0x000000C0, 0x0000004100000300}, > { 0x000000C1, 0x0000004100000301}, > { 0x000000C2, 0x0000004100000302}, > (snip) > { 0x0001D1BF, 0x0001D1BB0001D16F}, > { 0x0001D1BE, 0x0001D1BC0001D16E}, > { 0x0001D1C0, 0x0001D1BC0001D16F}, > }; > > > PS. > Don't trust the Apple's documents. > > http://developer.apple.com/technotes/tn/tn1150table.html > This table is based on Unicode 2.x. > > http://developer.apple.com/documentation/Networking/Conceptual/AFP/AFP3_1.pdf > This document is based on Unicode 3.2. > > Mac OS X 10.5.2 Leopard use newer Unicode. > 0x1B06 to 0x1B05 0x1B35 > This is not in Unicode 3.2. > > -- > HAT <ha...@fa...> > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace > _______________________________________________ > Afpfs-ng-devel mailing list > Afp...@li... > https://lists.sourceforge.net/lists/listinfo/afpfs-ng-devel |
From: HAT <ha...@fa...> - 2008-03-27 18:52:49
|
hi. I'm reading the source of afpfs-ng 0.8.1 for the first time now. I think that there are problems in precomposing and decomposing. 1) precompose two characters only: supported 2) precompose two characters over: unsupported 3) decompose: sample only 4) hangul: unsupported 5) Unicode U+010000 over: unsupported 6) maccodepage for AFP2: unsupported The 2), 3) and 4) can be implemented comparatively easily because I did them for netatalk. There are two methods to support the U+010000 over. a) Using surrogate pair b) Using UCS4 instead of UCS2 The surrogate pair is dirty and complex. Because netatalk 2.1dev use the surrogate pair, It is difficult to support the U+010000 over. If we use UCS4 instead of UCS2, the implementation will be easy. Replace. from char16 *UTF8toUCS2(str) to u_int32_t *UTF8toUCS4(str) from int UCS2precompose(first, second) to u_int64_t UCS4precompose(first, second) from // worst case: 3 bytes of UTF8 per UCS2 char + terminal 0 to // worst case: 4 bytes of UTF8 per UCS4 char + terminal 0 The size of table[] is two times. static struct { int precomposed; unsigned int pattern; } table[] = { { 0x00000000, 0x0000000000000000}, // Dummy entry table[0] { 0x000000C0, 0x0000004100000300}, { 0x000000C1, 0x0000004100000301}, { 0x000000C2, 0x0000004100000302}, (snip) { 0x0001D1BF, 0x0001D1BB0001D16F}, { 0x0001D1BE, 0x0001D1BC0001D16E}, { 0x0001D1C0, 0x0001D1BC0001D16F}, }; PS. Don't trust the Apple's documents. http://developer.apple.com/technotes/tn/tn1150table.html This table is based on Unicode 2.x. http://developer.apple.com/documentation/Networking/Conceptual/AFP/AFP3_1.pdf This document is based on Unicode 3.2. Mac OS X 10.5.2 Leopard use newer Unicode. 0x1B06 to 0x1B05 0x1B35 This is not in Unicode 3.2. -- HAT <ha...@fa...> |
From: Alex d. <ale...@gm...> - 2008-03-08 17:16:08
|
Debians aren't up yet, but RPMs and source are there... you can get it from the download site. These are all requested features. What is new in afpfs-ng-0.8.1, March 8, 2008 -------------------------------------------- 1. Read only support You can mount volumes readonly with: mount_afp -o ro afp://username:password@hostname/volumename /mountpoint Per request from various people. 2. @ and : in passwords and usernames For one @ in a password, use: p@@ssword For one : in a username, use: user::name Per request from Niclas Helbro. 3. Fstab You can now automatically mount volumes in on boot with a line in fstab. See docs/README, there are some simple but specific instructions. |
From: Alex d. <ale...@gm...> - 2008-02-20 17:30:38
|
Thank you to everyone who has submitted bug reports, patches and other contributions. afpfs-ng 0.8 is available for download. - Alex What is new in afpfs-ng-0.8, February 18, 2008 ---------------------------------------------- 1. New command line (non-FUSE) tools: a) batch mode of afpcmd This lets you do simple transfers, eg. > afpcmd afp://user:pass@server/alexdevries/linux-2.6.14.tar.bz2 Connected to server Cubalibre using UAM "DHX2" Connected to volume alexdevries Getting file /linux-2.6.14.tar.bz2 Transferred 39172170 bytes in 2.862 seconds. (13687 kB/s) b) interactive mode of afpcmd This is file transfer tool similiar to an ftp client. Has (local) filename completion and command history. c) get status tool, afpgetstatus A simple tool to get the status information of a server without logging in. 2. FUSE client improvements Continuation of FUSE client development, including the introduction of a new tool called mount_afp, which has the same syntax as in Mac OS X. Better status and post-deployment debugging, proper forced or unforced exit and other bugs. 3. Protocol fixes Many protocol enhancements and bug fixes, including: support for AFP 2.x, multiple servers, session keys, signatures, meta information, chmod and chown fixes. Tested against Mac OS X, OS9, Airport and netatalk. File transfer performance is now similiar or faster to Mac OS X. 4. Development library The source code of afpfs-ng has now been changed to a library (libafpclient) and support for multiple clients (examples are FUSE, afpcmd, afpgetstatus). With this library, more AFP clients (GIO, KIO) can be built with limited pain. This API is not yet stabilized. 5. Other FUSE client fully validated on Linux, builds on FreeBSD. Command line client builds and runs on Linux, runs but is weakly tested on FreeBSD and Mac OS X. There are manpages. |
From: Alex d. <ale...@gm...> - 2008-02-14 01:12:51
|
Hiram, I can't actually reproduce this easily, although I'm trying this with Fedora 8 and Openoffice 2.3.0. First, after you do the mount, what's the output of 'afp_client status'? Next, can you follow the instructions in the attached document, that'll help me track this down. |
From: Alex d. <ale...@gm...> - 2008-02-13 23:05:10
|
This is definitely useful, let me try and reproduce it. - Alex On 13-Feb-08, at 5:59 PM, Hiram wrote: > Hey, > > Saving a file from open office results in an 0kb file. > This happend on ubuntu hardy with afpfs v4.3 and openoffice 2.3.1. > Copying the same file (saved somewhere else) with nautilus to the > directory does work as expected. The file existed before and had > content. After opening, modifying and saving the file the file was > empty. However saving as a new file also results in an empty file. > > When trying to save with gedit it does work as expected. So it seems > this is issue with openoffice and afpfs-ng. > > I hope that this is useful to someone. > > Hiram > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Afpfs-ng-devel mailing list > Afp...@li... > https://lists.sourceforge.net/lists/listinfo/afpfs-ng-devel |
From: Hiram <hi...@gm...> - 2008-02-13 23:01:30
|
Hey, Saving a file from open office results in an 0kb file. This happend on ubuntu hardy with afpfs v4.3 and openoffice 2.3.1. Copying the same file (saved somewhere else) with nautilus to the directory does work as expected. The file existed before and had content. After opening, modifying and saving the file the file was empty. However saving as a new file also results in an empty file. When trying to save with gedit it does work as expected. So it seems this is issue with openoffice and afpfs-ng. I hope that this is useful to someone. Hiram |
From: Alex d. <ale...@gm...> - 2007-10-17 05:09:45
|
TWFydGluLAoKT24gMTAvMTYvMDcsIE1hcnRpbiBGb3JzZ3JlbiA8bWswZm9tYUBzdHVkZW50LmNo YWxtZXJzLnNlPiB3cm90ZToKPiBUaGUgMC40LjMgd29ya3MgZ3JlYXQsIHdpdGggVVRGOCBvbiBt eSBnaXJsZnJpZW5kcyBtYWMuCj4gTXkgbG9jYWwgc2hhcmUgZG9lc24ndCB3b3JrLCBidXQgdGhh dCdzIHByb2JhYmx5IG15Cj4gb3duIGZhdWx0IGFuZCBJIHdpbGwgbG9vayBhdCB0aGF0IGxhdGVy LgoKVGhhdCBjb3VsZCBiZS4uLiBpZiAndGVsbmV0IGxvY2FsaG9zdCA1NDgnIGZhaWxzIHRvIGNv bm5lY3QsIGl0IGlzbid0CmFuIGFmcGZzLW5nIHByb2JsZW0uCgo+IEJlc3Qgd291bGQgYmUgaWYg SSBjb3VsZCBmaW5kIGl0IG91dCB2aWEgQXZhaGksCj4gZG8geW91IGtub3cgYW55dGhpbmcgYWJv dXQgaG93IHRoYXQgd29ya3M/Cj4gU2Vjb25kIGJlc3Qgd291bGQgYmUgYSBzd2ljaCBvciBzb21l dGhpbmcKPiB0byBhZnBfY2xpZW50LiBJIGd1ZXNzIHNvbWUgdGhpbmdzIHdpbGwgYmUgZGlmZmVy ZW50Cj4gd2l0aCB2ZXJzaW9uIDAuNS4KCkJvbmpvdXIgb25seSBhZHZlcnRpemVzIHRoZSBvdmVy YWxsIHNlcnZpY2UsIG5vdCBpbmRpdmlkdWFsIHZvbHVtZXMuCkZpZ3VyaW5nIG91dCB3aGF0IHZv bHVtZXMgYXJlIG9mZmVyZWQgZmlyc3QgcmVxdWlyZXMgbG9nZ2luZyBpbi4KCklmIHlvdSdyZSBs b29raW5nIGZvciBhIHF1aWNrIGhhY2sgdG8gZmluZGluZyB0aGUgbGlzdCBvZiB2b2x1bWVzLCB5 b3UKY2FuIGdldCBpdCB0byBzcGl0IG91dCB0aGUgYXZhaWxhYmxlIHZvbHVtZXMgYnkgdHJ5aW5n IHRvIG1vdW50IGEKdm9sdW1lIHlvdSBrbm93IGRvZXNuJ3QgZXhpc3QuCgplZy4KCmFmcF9jbGll bnQgbW91bnQgLXUgdXNlcm5hbWUgLXAgcGFzc3dkIGxvY2FsaG9zdDpkb2Vzbm90ZXhpc3QgL3Rt cC94YTIyCm1vdW50aW5nIHY5IG9uIC90bXAveGEyMgpDb21wbGV0aW5nIGNvbm5lY3Rpb24gdG8g c2VydmVyCkxvZ2luIG1lc3NhZ2U6IFRoaXMgaXMgYSBsb2dpbiBtZXNzYWdlLgpBY3R1YWxseSBt b3VudGluZy4KVm9sdW1lIGRvZXNub3RleGlzdCBkb2VzIG5vdCBleGlzdCBvbiBzZXJ2ZXIuCkNo b29zZSBmcm9tOgogICBhZGV2cmllcwogICBYWFhYCiAgIHYyCiAgIE5hzIh0ZXQKICAgYW5vdGhl cnZvbHVtZQogICB0ZXN0dm9sdW1lCi4uLgoKPiBJJ20gdXNpbmcgcHl0aG9uIGFuZCB0aGUgaWTD qWEgaXMgc29tZXRoaW5nIGFzCj4gYnJvYWQgYW5kIGh1YnJpc3RpYyBhcyBjcmVhdGluZyBhIGRl c2t0b3AKPiBpbmRlcGVuZGVudCBhbmQgcHJvdG9jb2wgaW5kZXBlbmRlbnQgbmV0d29yawo+IGhh bmRsZXIgc3BlY2lmaWNhdGlvbiB3aXRoIGFuIGV4YW1wbGUgYXBwbGljYXRpb24uCgpUaGlzIGtp bmQgb2YgdGhpbmcgd2lsbCBiZSBhIGxvdCBlYXNpZXIgd2hlbiB0aGUgMC41IEFQSSBzdGFiaWxp emVzLi4uCnRoZW4geW91J2xsIGhhdmUgYW4gZWFzeSB3YXkgdG8gZ2V0IGFjY2VzcyB0byBzdW1t YXJ5IEFGUCBmdW5jdGlvbnMuCllvdSdkIGhhdmUgdG8gd3JpdGUgc29tZSBweXRob24gYmluZGlu ZywgdGhvdWdoLgoKLSBBCg== |
From: Martin F. <mk...@st...> - 2007-10-16 17:26:55
|
Hi! The 0.4.3 works great, with UTF8 on my girlfriends mac. My local share doesn't work, but that's probably my own fault and I will look at that later. The question however... ( you newed it would come ) is how to detect shares on a host. I need to find out wich shares that are available on a server. Best would be if I could find it out via Avahi, do you know anything about how that works? Second best would be a swich or something to afp_client. I guess some things will be different with version 0.5. I'm using python and the idéa is something as broad and hubristic as creating a desktop independent and protocol independent network handler specification with an example application. Best regards Martin Forsgren |
From: Alex d. <ale...@gm...> - 2007-10-11 16:23:48
|
I now have a clearer picture of what's coming up in afpfs-ng-0.5. It includes: 1. New architecture There will be a libafpclient which will have protocol and a midlevel interface. This will allow multiple clients to use the same protocol handler and help us get out of the fuse-only use case we have now. 2. New clients There will be two stable clients: the existing fuse interface and a command line client (similiar to /usr/bin/ftp). The existing gnome-vfs2 work will be redone using gvfs, but that won't be in 0.5. Maybe I'll tinker with KDE. 3. Reconnect I'd like to implement a proper reconnect. This includes: - handling of the Recon1 UAM - handling of disconnects and mid-operation hangups 4. Other There will be other fixes, like: - proper man pages - maybe some AFP 2.x support, if I'm geographically close enough to my OS 9 iMac - other bugs - proper compilation for other OSes, like Solaris, OS X, BSD, etc. Fuse will no longer be required. If 0.5 proves to be sufficiently stable, we will start thrusting it upon Linux distributions for inclusion. - Alex |
From: Michael U. <mu...@re...> - 2007-10-08 12:20:49
|
Hi Alex, attached you find a network dump, which shows the collapse of an AFP connection via afpfs happening once a week on Tuesday 5am. There's a script running on the client, which sends an 'ls' to the server once a minute. This command is successfully executed at 04:58:09 and 04:59:09. Following that there is some final protocol activity at 05:00:03 between 205.0.1.36 and 205.0.1.194. The connection was reestablished at 09:31:03. Please let me know, if you need any further information. Best regards ... Michael |
From: Alex d. <ale...@gm...> - 2007-10-08 03:45:44
|
You only need to worry about this if you're using the netatalk server. A bug that's cropped up for a few users is being getting IO error when they are mounting some volumes exported with netatalk. To solve this, I've created afpfs-ng-0.4.3a. This is to compensate for some odd netatalk behaviour. By default, netatalk doesn't set unixprivs (which is an odd default unless you're running AFP 2.x) which results in the UnixPrivs bit being not set in the volume attributes. 0.4.3 did handle this correctly, it just refused to getattr() as there was no way to get unixprivs. You can also set this up by adding "options:upriv" to your volume entry in netatalk's AppleVolumes.default. Now, afpfs-ng 0.4.3a assumes that you have unixprivs if you're using AFP 3.x. - Alex |
From: Alex d. <ale...@gm...> - 2007-10-04 16:57:22
|
Martin, Yes, I you can mount a volume from a server that's exported from the same machine. Run netatalk (and make sure it is bound to 127.0.0.1), and do your mounts to localhost. This is how 99% of afpfs-ng development was done, as I can do all of it on my laptop no matter where I am. If you're doing a tcpdump for this, the syntax would be something like: tcpdump -s0 -w martin_network_capture port 548 -i l0 - Alex On 10/4/07, Martin Forsgren <mk...@st...> wrote: > Hi again. Been trying a little bit more. > > Is it possible to connect to a share on your > own computer? (via loopback or via an interface {ethX}) > > To my girlfriends mac it works. > > However, tcpdump doesnt show anything interesting, > not even one simple password ;) > --------------------- > MtheF:~# tcpdump -s0 -w martin_network_capture port 548 -i eth1 > tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture size > 65535 bytes > > 405 packets captured > 405 packets received by filter > 0 packets dropped by kernel > -------------------- > > Have a nice day > Martin > > Den 2007-10-03 16:00:19 skrev Alex deVries <ale...@gm...>: > > > Martin, > > > > Thanks for giving this a try. > > > > Could you get a network dump of this? You'd do that with something lik= e: > > > > tcpdump -s0 -w my_network_capture port 548 > > > > while doing the entire mount sequence. > > > > I encourage you to first change your password before sending anyone > > that network capture. Unless you don't care about people knowing what > > it is. > > > > - Alex > > > > On 10/3/07, Martin Forsgren <mk...@st...> wrote: > >> Hi! > >> > >> I thought of trying this again. It doesn't work, telling me > >> "Could not mount, Connection refused" > >> I also get an message > >> "reading: Interrupted system call" > >> that probably not comes from afp_client, see the last > >> example. > >> > >> Any ideas? > >> It could be that this network blocks this port, but > >> how can I see this and what can I do to circumvent it? > >> > >> I dont have any firewall. > >> > >> Best regards > >> Martin Forsgren > >> > >> ----------------------------------------------- > >> > >> afpd.conf: > >> ----------------------------------------------- > >> "jag" -uamlist uams_clrtxt.so > >> "G=E4st hos Martin" -uamlist uams_guest.so -loginmesg "V=E4lkommen" > >> > >> AppleVolumes.default: > >> ----------------------------------------------- > >> /home/dela/musik musik "Musik" > >> > >> Running: > >> ----------------------------------------------- > >> > >> MtheF:/home/martin# afpfsd -d > >> Starting up AFPFS version 0.4.3 > >> > >> martin@MtheF:~$ afp_client mount -u MtheF -p - -o 548 > >> 129.16.246.55:Filmer > >> /home/martin/tmp/ > >> AFP Password: > >> mounting Filmer on /home/martin/tmp/ > >> Could not mount, Connection refused > >> reading: Interrupted system call > >> > >> martin@MtheF:~$ afp_client mount -o 548 129.16.246.55:Filmer > >> /home/martin/tmp/ > >> mounting Filmer on /home/martin/tmp/ > >> Could not mount, Connection refused > >> martin@MtheF:~$ reading: Interrupted system call > >> > >> ----------------------------------------------- > >> > >> ----------------------------------------------------------------------= --- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2005. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> Afpfs-ng-devel mailing list > >> Afp...@li... > >> https://lists.sourceforge.net/lists/listinfo/afpfs-ng-devel > >> > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Afpfs-ng-devel mailing list > Afp...@li... > https://lists.sourceforge.net/lists/listinfo/afpfs-ng-devel > |
From: Martin F. <mk...@st...> - 2007-10-04 09:55:03
|
Hi again. Been trying a little bit more. Is it possible to connect to a share on your own computer? (via loopback or via an interface {ethX}) To my girlfriends mac it works. However, tcpdump doesnt show anything interesting, not even one simple password ;) --------------------- MtheF:~# tcpdump -s0 -w martin_network_capture port 548 -i eth1 tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture size 65535 bytes 405 packets captured 405 packets received by filter 0 packets dropped by kernel -------------------- Have a nice day Martin Den 2007-10-03 16:00:19 skrev Alex deVries <ale...@gm...>: > Martin, > > Thanks for giving this a try. > > Could you get a network dump of this? You'd do that with something like: > > tcpdump -s0 -w my_network_capture port 548 > > while doing the entire mount sequence. > > I encourage you to first change your password before sending anyone > that network capture. Unless you don't care about people knowing what > it is. > > - Alex > > On 10/3/07, Martin Forsgren <mk...@st...> wrote: >> Hi! >> >> I thought of trying this again. It doesn't work, telling me >> "Could not mount, Connection refused" >> I also get an message >> "reading: Interrupted system call" >> that probably not comes from afp_client, see the last >> example. >> >> Any ideas? >> It could be that this network blocks this port, but >> how can I see this and what can I do to circumvent it? >> >> I dont have any firewall. >> >> Best regards >> Martin Forsgren >> >> ----------------------------------------------- >> >> afpd.conf: >> ----------------------------------------------- >> "jag" -uamlist uams_clrtxt.so >> "Gäst hos Martin" -uamlist uams_guest.so -loginmesg "Välkommen" >> >> AppleVolumes.default: >> ----------------------------------------------- >> /home/dela/musik musik "Musik" >> >> Running: >> ----------------------------------------------- >> >> MtheF:/home/martin# afpfsd -d >> Starting up AFPFS version 0.4.3 >> >> martin@MtheF:~$ afp_client mount -u MtheF -p - -o 548 >> 129.16.246.55:Filmer >> /home/martin/tmp/ >> AFP Password: >> mounting Filmer on /home/martin/tmp/ >> Could not mount, Connection refused >> reading: Interrupted system call >> >> martin@MtheF:~$ afp_client mount -o 548 129.16.246.55:Filmer >> /home/martin/tmp/ >> mounting Filmer on /home/martin/tmp/ >> Could not mount, Connection refused >> martin@MtheF:~$ reading: Interrupted system call >> >> ----------------------------------------------- >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2005. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Afpfs-ng-devel mailing list >> Afp...@li... >> https://lists.sourceforge.net/lists/listinfo/afpfs-ng-devel >> |
From: Alex d. <ale...@gm...> - 2007-10-03 14:00:17
|
Martin, Thanks for giving this a try. Could you get a network dump of this? You'd do that with something like: tcpdump -s0 -w my_network_capture port 548 while doing the entire mount sequence. I encourage you to first change your password before sending anyone that network capture. Unless you don't care about people knowing what it is. - Alex On 10/3/07, Martin Forsgren <mk...@st...> wrote: > Hi! > > I thought of trying this again. It doesn't work, telling me > "Could not mount, Connection refused" > I also get an message > "reading: Interrupted system call" > that probably not comes from afp_client, see the last > example. > > Any ideas? > It could be that this network blocks this port, but > how can I see this and what can I do to circumvent it? > > I dont have any firewall. > > Best regards > Martin Forsgren > > ----------------------------------------------- > > afpd.conf: > ----------------------------------------------- > "jag" -uamlist uams_clrtxt.so > "G=E4st hos Martin" -uamlist uams_guest.so -loginmesg "V=E4lkommen" > > AppleVolumes.default: > ----------------------------------------------- > /home/dela/musik musik "Musik" > > Running: > ----------------------------------------------- > > MtheF:/home/martin# afpfsd -d > Starting up AFPFS version 0.4.3 > > martin@MtheF:~$ afp_client mount -u MtheF -p - -o 548 129.16.246.55:Filme= r > /home/martin/tmp/ > AFP Password: > mounting Filmer on /home/martin/tmp/ > Could not mount, Connection refused > reading: Interrupted system call > > martin@MtheF:~$ afp_client mount -o 548 129.16.246.55:Filmer > /home/martin/tmp/ > mounting Filmer on /home/martin/tmp/ > Could not mount, Connection refused > martin@MtheF:~$ reading: Interrupted system call > > ----------------------------------------------- > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Afpfs-ng-devel mailing list > Afp...@li... > https://lists.sourceforge.net/lists/listinfo/afpfs-ng-devel > |
From: Martin F. <mk...@st...> - 2007-10-03 08:57:47
|
Hi! I thought of trying this again. It doesn't work, telling me "Could not mount, Connection refused" I also get an message "reading: Interrupted system call" that probably not comes from afp_client, see the last example. Any ideas? It could be that this network blocks this port, but how can I see this and what can I do to circumvent it? I dont have any firewall. Best regards Martin Forsgren ----------------------------------------------- afpd.conf: ----------------------------------------------- "jag" -uamlist uams_clrtxt.so "Gäst hos Martin" -uamlist uams_guest.so -loginmesg "Välkommen" AppleVolumes.default: ----------------------------------------------- /home/dela/musik musik "Musik" Running: ----------------------------------------------- MtheF:/home/martin# afpfsd -d Starting up AFPFS version 0.4.3 martin@MtheF:~$ afp_client mount -u MtheF -p - -o 548 129.16.246.55:Filmer /home/martin/tmp/ AFP Password: mounting Filmer on /home/martin/tmp/ Could not mount, Connection refused reading: Interrupted system call martin@MtheF:~$ afp_client mount -o 548 129.16.246.55:Filmer /home/martin/tmp/ mounting Filmer on /home/martin/tmp/ Could not mount, Connection refused martin@MtheF:~$ reading: Interrupted system call ----------------------------------------------- |
From: Alex d. <ale...@gm...> - 2007-10-03 01:21:48
|
Okay, I don't have enough here. Can you: - download and unpack afpfs-ng-0.4.3.tar.bz2 - edit fuse_int.c and uncomment the following line: #define LOG_FUSE_EVENTS 1 - mv /usr/bin/afpfsd /usr/bin/afpfsd.old (so as not to get confused between the old and new) - ./configure, then make install Then rerun the whole thing... if it fails, send me the output. I'm happy to provide more details if the above isn't clear. This is very odd, as I don't see any information in the network capture or log that suggests that afpfs-ng code has been reached at all... - Alex On 10/2/07, Damon Timm <dam...@gm...> wrote: > Okay -- did that ... don't notice a difference in the debug output ... maybe > you see something in the tcpdump (not sure how I am supposed to look at > that!) > > Thanks, > Damon > > > On 10/2/07, Alex deVries <ale...@gm...> wrote: > > Okay. The uids are the same, so it isn't a mapping problem. > > > > Can you go through the REPORTING-BUGS.txt instructions again, but this > > time with the "ls -l ~/Desktop/mountpoint" ? I only care about the > > 'afpfsd -d' output and the network capture. > > > > - Alex > > > > On 10/2/07, Damon Timm <dam...@gm...> wrote: > > > On the client, my UID is 1000 as is my GID. > > > > > > If I run a "ls -l ~\Dekstop\mountpoint\" I get: "ls: Desktop/mountpoint: > > > Input/output error" > > > > > > That help ? Thanks again for working with me. > > > > > > Damon > > > > > > > > > > > > On 10/1/07, Alex deVries <ale...@gm...> wrote: > > > > (Another try, once again, to use the correct mailing list) > > > > > > > > Damon, > > > > > > > > I don't think you're missing anything. The bug report was what I was > > > expecting. > > > > > > > > A couple of questions: > > > > > > > > - on the client, can you give me the output of 'id'? Are you uid 1000 > > > > on the client? > > > > > > > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > > > > just ls -l ~/Desktop)? > > > > > > > > - A > > > > > > > > > > > > On 10/1/07, Alex deVries <ale...@gm... > wrote: > > > > > Damon, > > > > > > > > > > I don't think you're missing anything. The bug report was what I > was > > > expecting. > > > > > > > > > > A couple of questions: > > > > > > > > > > - on the client, can you give me the output of 'id'? Are you uid > 1000 > > > > > on the client? > > > > > > > > > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > > > > > just ls -l ~/Desktop)? > > > > > > > > > > - A > > > > > > > > > > On 10/1/07, Damon Timm < dam...@gm...> wrote: > > > > > > Here is the attached logs as requested ... the description of the > > > steps I > > > > > > took is below ... wonder if it is something obvious I am missing > ... > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > > ---------- Forwarded message ---------- > > > > > > From: Damon Timm < dam...@gm...> > > > > > > Date: Oct 1, 2007 8:41 PM > > > > > > Subject: afpfs-ng help > > > > > > To: ale...@gm... > > > > > > > > > > > > Hi, > > > > > > > > > > > > First -- thanks for writing this. Am a big Mac junkie but trying > to > > > switch > > > > > > to Linux ... couldn't get this to work right off the bat, however, > and > > > > > > wondering if you could help. I downloaded the .deb file ( 0.4.3 > ), > > > > > > installed it on Ubuntu 7.10 ... seemed to install okay ... no > errors > > > ... > > > > > > when I try to connect to my netatalk server by running the > command: > > > > > > > > > > > > afp_client mount -u damon -p mypassword 192.168.0.200:gaorsk > > > > > > ~/Desktop/gaorsk/ > > > > > > > > > > > > I get the following: > > > > > > > > > > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > > > > > Starting mount. > > > > > > Creating new connection to server > > > > > > Actually mounting. > > > > > > Mounting succeeded. > > > > > > > > > > > > However, this doesn't work. Sort of kills the directory -- can't > open > > > it, > > > > > > view it, etc. If I run a "ls -l ~/Desktop" I get: > > > > > > > > > > > > ?--------- ? ? ? ? ? gaorsk > > > > > > > > > > > > When I am running the debug option I get: > > > > > > > > > > > > damon@IBM-laptop:~$ afpfsd -d > > > > > > Starting up AFPFS version 0.4.3 > > > > > > Got connection 4 > > > > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > > > > > Removing connection for server > > > > > > Starting mount. > > > > > > Creating new connection to server > > > > > > Actually mounting. > > > > > > unique: 1, opcode: INIT (26), nodeid: 0, insize: 56 > > > > > > INIT: 7.8 > > > > > > flags=0x00000003 > > > > > > max_readahead=0x00020000 > > > > > > Mounting succeeded. > > > > > > reading: Interrupted system call > > > > > > INIT: 7.8 > > > > > > flags=0x00000000 > > > > > > max_readahead=0x00020000 > > > > > > max_write=0x00020000 > > > > > > unique: 1, error: 0 (Success), outsize: 40 > > > > > > unique: 2, opcode: GETATTR (3), nodeid: 1, insize: 40 > > > > > > unique: 2, error: 0 (Success), outsize: 112 > > > > > > > > > > > > Any ideas ? Is there a log I should be viewing on the netatalk > server > > > ? > > > > > > Not sure where to start ... > > > > > > > > > > > > Any help would be greatly appreciated. Thanks! > > > > > > > > > > > > Damon > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
From: Alex d. <ale...@gm...> - 2007-10-02 23:55:59
|
Okay. The uids are the same, so it isn't a mapping problem. Can you go through the REPORTING-BUGS.txt instructions again, but this time with the "ls -l ~/Desktop/mountpoint" ? I only care about the 'afpfsd -d' output and the network capture. - Alex On 10/2/07, Damon Timm <dam...@gm...> wrote: > On the client, my UID is 1000 as is my GID. > > If I run a "ls -l ~\Dekstop\mountpoint\" I get: "ls: Desktop/mountpoint: > Input/output error" > > That help ? Thanks again for working with me. > > Damon > > > > On 10/1/07, Alex deVries <ale...@gm...> wrote: > > (Another try, once again, to use the correct mailing list) > > > > Damon, > > > > I don't think you're missing anything. The bug report was what I was > expecting. > > > > A couple of questions: > > > > - on the client, can you give me the output of 'id'? Are you uid 1000 > > on the client? > > > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > > just ls -l ~/Desktop)? > > > > - A > > > > > > On 10/1/07, Alex deVries <ale...@gm... > wrote: > > > Damon, > > > > > > I don't think you're missing anything. The bug report was what I was > expecting. > > > > > > A couple of questions: > > > > > > - on the client, can you give me the output of 'id'? Are you uid 1000 > > > on the client? > > > > > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > > > just ls -l ~/Desktop)? > > > > > > - A > > > > > > On 10/1/07, Damon Timm < dam...@gm...> wrote: > > > > Here is the attached logs as requested ... the description of the > steps I > > > > took is below ... wonder if it is something obvious I am missing ... > > > > > > > > Thanks! > > > > > > > > > > > > ---------- Forwarded message ---------- > > > > From: Damon Timm <dam...@gm...> > > > > Date: Oct 1, 2007 8:41 PM > > > > Subject: afpfs-ng help > > > > To: ale...@gm... > > > > > > > > Hi, > > > > > > > > First -- thanks for writing this. Am a big Mac junkie but trying to > switch > > > > to Linux ... couldn't get this to work right off the bat, however, and > > > > wondering if you could help. I downloaded the .deb file ( 0.4.3 ), > > > > installed it on Ubuntu 7.10 ... seemed to install okay ... no errors > ... > > > > when I try to connect to my netatalk server by running the command: > > > > > > > > afp_client mount -u damon -p mypassword 192.168.0.200:gaorsk > > > > ~/Desktop/gaorsk/ > > > > > > > > I get the following: > > > > > > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > > > Starting mount. > > > > Creating new connection to server > > > > Actually mounting. > > > > Mounting succeeded. > > > > > > > > However, this doesn't work. Sort of kills the directory -- can't open > it, > > > > view it, etc. If I run a "ls -l ~/Desktop" I get: > > > > > > > > ?--------- ? ? ? ? ? gaorsk > > > > > > > > When I am running the debug option I get: > > > > > > > > damon@IBM-laptop:~$ afpfsd -d > > > > Starting up AFPFS version 0.4.3 > > > > Got connection 4 > > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > > > Removing connection for server > > > > Starting mount. > > > > Creating new connection to server > > > > Actually mounting. > > > > unique: 1, opcode: INIT (26), nodeid: 0, insize: 56 > > > > INIT: 7.8 > > > > flags=0x00000003 > > > > max_readahead=0x00020000 > > > > Mounting succeeded. > > > > reading: Interrupted system call > > > > INIT: 7.8 > > > > flags=0x00000000 > > > > max_readahead=0x00020000 > > > > max_write=0x00020000 > > > > unique: 1, error: 0 (Success), outsize: 40 > > > > unique: 2, opcode: GETATTR (3), nodeid: 1, insize: 40 > > > > unique: 2, error: 0 (Success), outsize: 112 > > > > > > > > Any ideas ? Is there a log I should be viewing on the netatalk server > ? > > > > Not sure where to start ... > > > > > > > > Any help would be greatly appreciated. Thanks! > > > > > > > > Damon > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
From: Damon T. <dam...@gm...> - 2007-10-02 23:33:47
|
On the client, my UID is 1000 as is my GID. If I run a "ls -l ~\Dekstop\mountpoint\" I get: "ls: Desktop/mountpoint: Input/output error" That help ? Thanks again for working with me. Damon On 10/1/07, Alex deVries <ale...@gm...> wrote: > > (Another try, once again, to use the correct mailing list) > > Damon, > > I don't think you're missing anything. The bug report was what I was > expecting. > > A couple of questions: > > - on the client, can you give me the output of 'id'? Are you uid 1000 > on the client? > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > just ls -l ~/Desktop)? > > - A > > > On 10/1/07, Alex deVries <ale...@gm...> wrote: > > Damon, > > > > I don't think you're missing anything. The bug report was what I was > expecting. > > > > A couple of questions: > > > > - on the client, can you give me the output of 'id'? Are you uid 1000 > > on the client? > > > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > > just ls -l ~/Desktop)? > > > > - A > > > > On 10/1/07, Damon Timm <dam...@gm...> wrote: > > > Here is the attached logs as requested ... the description of the > steps I > > > took is below ... wonder if it is something obvious I am missing ... > > > > > > Thanks! > > > > > > > > > ---------- Forwarded message ---------- > > > From: Damon Timm <dam...@gm...> > > > Date: Oct 1, 2007 8:41 PM > > > Subject: afpfs-ng help > > > To: ale...@gm... > > > > > > Hi, > > > > > > First -- thanks for writing this. Am a big Mac junkie but trying to > switch > > > to Linux ... couldn't get this to work right off the bat, however, and > > > wondering if you could help. I downloaded the .deb file ( 0.4.3 ), > > > installed it on Ubuntu 7.10 ... seemed to install okay ... no errors > ... > > > when I try to connect to my netatalk server by running the command: > > > > > > afp_client mount -u damon -p mypassword 192.168.0.200:gaorsk > > > ~/Desktop/gaorsk/ > > > > > > I get the following: > > > > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > > Starting mount. > > > Creating new connection to server > > > Actually mounting. > > > Mounting succeeded. > > > > > > However, this doesn't work. Sort of kills the directory -- can't open > it, > > > view it, etc. If I run a "ls -l ~/Desktop" I get: > > > > > > ?--------- ? ? ? ? ? gaorsk > > > > > > When I am running the debug option I get: > > > > > > damon@IBM-laptop:~$ afpfsd -d > > > Starting up AFPFS version 0.4.3 > > > Got connection 4 > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > > Removing connection for server > > > Starting mount. > > > Creating new connection to server > > > Actually mounting. > > > unique: 1, opcode: INIT (26), nodeid: 0, insize: 56 > > > INIT: 7.8 > > > flags=0x00000003 > > > max_readahead=0x00020000 > > > Mounting succeeded. > > > reading: Interrupted system call > > > INIT: 7.8 > > > flags=0x00000000 > > > max_readahead=0x00020000 > > > max_write=0x00020000 > > > unique: 1, error: 0 (Success), outsize: 40 > > > unique: 2, opcode: GETATTR (3), nodeid: 1, insize: 40 > > > unique: 2, error: 0 (Success), outsize: 112 > > > > > > Any ideas ? Is there a log I should be viewing on the netatalk server > ? > > > Not sure where to start ... > > > > > > Any help would be greatly appreciated. Thanks! > > > > > > Damon > > > > > > > > > > > > > > > > > > > > > |
From: Alex d. <ale...@gm...> - 2007-10-02 01:32:34
|
(Another try, once again, to use the correct mailing list) Damon, I don't think you're missing anything. The bug report was what I was expecting. A couple of questions: - on the client, can you give me the output of 'id'? Are you uid 1000 on the client? - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of just ls -l ~/Desktop)? - A On 10/1/07, Alex deVries <ale...@gm...> wrote: > Damon, > > I don't think you're missing anything. The bug report was what I was expecting. > > A couple of questions: > > - on the client, can you give me the output of 'id'? Are you uid 1000 > on the client? > > - what output do you get for 'ls -l ~/Desktop/gaorsk/' (instead of > just ls -l ~/Desktop)? > > - A > > On 10/1/07, Damon Timm <dam...@gm...> wrote: > > Here is the attached logs as requested ... the description of the steps I > > took is below ... wonder if it is something obvious I am missing ... > > > > Thanks! > > > > > > ---------- Forwarded message ---------- > > From: Damon Timm <dam...@gm...> > > Date: Oct 1, 2007 8:41 PM > > Subject: afpfs-ng help > > To: ale...@gm... > > > > Hi, > > > > First -- thanks for writing this. Am a big Mac junkie but trying to switch > > to Linux ... couldn't get this to work right off the bat, however, and > > wondering if you could help. I downloaded the .deb file ( 0.4.3 ), > > installed it on Ubuntu 7.10 ... seemed to install okay ... no errors ... > > when I try to connect to my netatalk server by running the command: > > > > afp_client mount -u damon -p mypassword 192.168.0.200:gaorsk > > ~/Desktop/gaorsk/ > > > > I get the following: > > > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > Starting mount. > > Creating new connection to server > > Actually mounting. > > Mounting succeeded. > > > > However, this doesn't work. Sort of kills the directory -- can't open it, > > view it, etc. If I run a "ls -l ~/Desktop" I get: > > > > ?--------- ? ? ? ? ? gaorsk > > > > When I am running the debug option I get: > > > > damon@IBM-laptop:~$ afpfsd -d > > Starting up AFPFS version 0.4.3 > > Got connection 4 > > mounting gaorsk on /home/damon/Desktop/gaorsk/ > > Removing connection for server > > Starting mount. > > Creating new connection to server > > Actually mounting. > > unique: 1, opcode: INIT (26), nodeid: 0, insize: 56 > > INIT: 7.8 > > flags=0x00000003 > > max_readahead=0x00020000 > > Mounting succeeded. > > reading: Interrupted system call > > INIT: 7.8 > > flags=0x00000000 > > max_readahead=0x00020000 > > max_write=0x00020000 > > unique: 1, error: 0 (Success), outsize: 40 > > unique: 2, opcode: GETATTR (3), nodeid: 1, insize: 40 > > unique: 2, error: 0 (Success), outsize: 112 > > > > Any ideas ? Is there a log I should be viewing on the netatalk server ? > > Not sure where to start ... > > > > Any help would be greatly appreciated. Thanks! > > > > Damon > > > > > > > > > > > > > |
From: Alex d. <ale...@gm...> - 2007-09-14 16:43:16
|
There's binary RPMs and debian packages available on the download page for afpfs-ng-0.4.3. You can get them at: http://sourceforge.net/project/showfiles.php?group_id=179882 - Alex |