Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Perl-Fuse und keine Ahnung ...
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Diskussionsforum
View previous topic :: View next topic  
Author Message
l3u
Advocate
Advocate


Joined: 26 Jan 2005
Posts: 2616
Location: Konradsreuth (Germany)

PostPosted: Fri Jul 14, 2006 10:11 pm    Post subject: Perl-Fuse und keine Ahnung ... Reply with quote

Hallo :-)

Ich hab grad ein bißchen mit dem Perl-Modul für Fuse rumgespielt. Leider finde ich nirgendwo Beispiele für die Verwendung und scheitere schon am Grundsätzlichen: daß ls funktioniert. Das benötigt die Funktion getattr. Hier ist das Script:
Code:
#!/usr/bin/perl -w

use strict;
use POSIX qw(:errno_h :fcntl_h);
use Fuse;
use File::Spec::Functions;

my $basedir = "/home/tobias/bin-test/test";

sub my_getattr
{
   my $filename = shift;
   $filename = catdir($basedir, $filename);
   print "getattr: $filename\n";
   my @stat = stat $filename;
   return @stat if @stat;
   return -ENOENT();
}

Fuse::main(
   mountpoint => $basedir,
   getattr => \&my_getattr,
   );

Sobald ich aber ls eintippe, und das gemountete Verzeichnis mit aufgelistet werden müßte, hängt das Programm in ner Endlosschleife ... und ich verstehe nicht warum! Hat einer von euch ne Ahnung?!

MfG, Libby
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Diskussionsforum All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum