vfs
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 51
Download Manager 0.0.5
Download Manager project is a GNOME download manager. more>>
Download Manager project is a GNOME download manager.
Download Manager (also known as downman) is a suite of programs that assist with downloading files. It features a GNOME 2 GUI.
Download Manager suite
downmand: a daemon that takes care of downloading files
downman: a command line client to downmand to add files for download
downman-gmonitor: a little window where you can drop urls
gdownman: (aka gnome download manager), a gui client to control downloads
Main features:
- Gnome 2 GUI
- Multiple projects
- Speed limit for each download
- Speed limit for each project
Enhancements:
- Moved to gnome-vfs as the backend for the transfers.
- s/download/transfer in the daemon.
- Servers support, you can now limit the amount of connections to a server.
- Ability to show/hide toolbar and statusbar in the GUI
- Correctly update download speedlimit in the GUI
- Show mime-type icons with the filename
- Remove use of List (use GList instead)
- Fixes & cleanups
<<lessDownload Manager (also known as downman) is a suite of programs that assist with downloading files. It features a GNOME 2 GUI.
Download Manager suite
downmand: a daemon that takes care of downloading files
downman: a command line client to downmand to add files for download
downman-gmonitor: a little window where you can drop urls
gdownman: (aka gnome download manager), a gui client to control downloads
Main features:
- Gnome 2 GUI
- Multiple projects
- Speed limit for each download
- Speed limit for each project
Enhancements:
- Moved to gnome-vfs as the backend for the transfers.
- s/download/transfer in the daemon.
- Servers support, you can now limit the amount of connections to a server.
- Ability to show/hide toolbar and statusbar in the GUI
- Correctly update download speedlimit in the GUI
- Show mime-type icons with the filename
- Remove use of List (use GList instead)
- Fixes & cleanups
Download (0.17MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
6237 downloads
Marlin 0.9
Marlin is a sound sample editor. more>>
Marlin is a sample editor for Gnome 2. It uses GStreamer for file operations and for recording and playback, meaning it can handle a great number of formats and work with most sound systems.
Main features:
- Can load from a large number of media formats (.mp3, .ogg, .wav, .au, .flac, .mpg, .avi...)
- Can save to many formats (.mp3, .wav, .au, .ogg, .flac...) and use the Gnome-Media profiles
- Can handle large files with no problems
- Handles cut, copy, paste, replace and mix operations
- Infinite levels of Undo/Redo and everything should be undoable
- Fully Gnome 2 HIG compliant
- Can record from a variety of sources (ALSA, OSS, esd, arts)
- Playback
- Can extract audio from CDs (with optional musicbrainz lookup)
- Gnome-VFS support
- Horizontal and Vertical scaling
- Uses GStreamer
<<lessMain features:
- Can load from a large number of media formats (.mp3, .ogg, .wav, .au, .flac, .mpg, .avi...)
- Can save to many formats (.mp3, .wav, .au, .ogg, .flac...) and use the Gnome-Media profiles
- Can handle large files with no problems
- Handles cut, copy, paste, replace and mix operations
- Infinite levels of Undo/Redo and everything should be undoable
- Fully Gnome 2 HIG compliant
- Can record from a variety of sources (ALSA, OSS, esd, arts)
- Playback
- Can extract audio from CDs (with optional musicbrainz lookup)
- Gnome-VFS support
- Horizontal and Vertical scaling
- Uses GStreamer
Download (1.1MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1699 downloads
Gnome2::VFS 1.061
Gnome2::VFS is a Perl interface to the 2.x series of the GNOME VFS library. more>>
Gnome2::VFS is a Perl interface to the 2.x series of the GNOME VFS library.
SYNOPSIS
use Gnome2::VFS;
sub die_already {
my ($action) = @_;
die("An error occured while $action.n");
}
die_already("initializing GNOME VFS") unless (Gnome2::VFS -> init());
my $source = "http://www.perldoc.com/about.html";
my ($result, $handle, $info);
# Open a connection to Perldoc.
($result, $handle) = Gnome2::VFS -> open($source, "read");
die_already("opening connection to $source")
unless ($result eq "ok");
# Get the file information.
($result, $info) = $handle -> get_file_info("default");
die_already("retrieving information about $source")
unless ($result eq "ok");
# Read the content.
my $bytes = $info -> { size };
my $bytes_read = 0;
my $buffer = "";
do {
my ($tmp_buffer, $tmp_bytes_read);
($result, $tmp_bytes_read, $tmp_buffer) =
$handle -> read($bytes - $bytes_read);
$buffer .= $tmp_buffer;
$bytes_read += $tmp_bytes_read;
} while ($result eq "ok" and $bytes_read < $bytes);
die_already("reading $bytes bytes from $source")
unless ($result eq "ok" && $bytes_read == $bytes);
# Close the connection.
$result = $handle -> close();
die_already("closing connection to $source")
unless ($result eq "ok");
# Create and open the target.
my $target = "/tmp/" . $info -> { name };
my $uri = Gnome2::VFS::URI -> new($target);
($result, $handle) = $uri -> create("write", 1, 0644);
die_already("creating $target") unless ($result eq "ok");
# Write to it.
my $bytes_written;
($result, $bytes_written) = $handle -> write($buffer, $bytes);
die_already("writing $bytes bytes to $target")
unless ($result eq "ok" && $bytes_written == $bytes);
# Close the target.
$result = $handle -> close();
die_already("closing $target") unless ($result eq "ok");
Gnome2::VFS -> shutdown();
<<lessSYNOPSIS
use Gnome2::VFS;
sub die_already {
my ($action) = @_;
die("An error occured while $action.n");
}
die_already("initializing GNOME VFS") unless (Gnome2::VFS -> init());
my $source = "http://www.perldoc.com/about.html";
my ($result, $handle, $info);
# Open a connection to Perldoc.
($result, $handle) = Gnome2::VFS -> open($source, "read");
die_already("opening connection to $source")
unless ($result eq "ok");
# Get the file information.
($result, $info) = $handle -> get_file_info("default");
die_already("retrieving information about $source")
unless ($result eq "ok");
# Read the content.
my $bytes = $info -> { size };
my $bytes_read = 0;
my $buffer = "";
do {
my ($tmp_buffer, $tmp_bytes_read);
($result, $tmp_bytes_read, $tmp_buffer) =
$handle -> read($bytes - $bytes_read);
$buffer .= $tmp_buffer;
$bytes_read += $tmp_bytes_read;
} while ($result eq "ok" and $bytes_read < $bytes);
die_already("reading $bytes bytes from $source")
unless ($result eq "ok" && $bytes_read == $bytes);
# Close the connection.
$result = $handle -> close();
die_already("closing connection to $source")
unless ($result eq "ok");
# Create and open the target.
my $target = "/tmp/" . $info -> { name };
my $uri = Gnome2::VFS::URI -> new($target);
($result, $handle) = $uri -> create("write", 1, 0644);
die_already("creating $target") unless ($result eq "ok");
# Write to it.
my $bytes_written;
($result, $bytes_written) = $handle -> write($buffer, $bytes);
die_already("writing $bytes bytes to $target")
unless ($result eq "ok" && $bytes_written == $bytes);
# Close the target.
$result = $handle -> close();
die_already("closing $target") unless ($result eq "ok");
Gnome2::VFS -> shutdown();
Download (0.057MB)
Added: 2007-04-27 License: Perl Artistic License Price:
910 downloads
gnome-vfs-obexftp 0.4
gnome-vfs-obexftp contains extra packages for extentions to GnomeVFS. more>>
gnome-vfs-obexftp contains extra packages for extentions to GnomeVFS. Contains an OBEX module, VFS DBUS daemon, modified file module that notifies file modifications over DBUS.
Note that if youre not using the standard dbus system bus address, you need to set the environment variable DBUS_SYSTEM_BUS_ADDRESS to the path to the system dbus address to use, e.g:
export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/var/run/dbus/system_bus_socket
for example in the login script.
If the variable is not set, the OBEX module will fallback to the standard name in $(localstatedir), e.g. /var/run/dbus/system_bus_socket.
<<lessNote that if youre not using the standard dbus system bus address, you need to set the environment variable DBUS_SYSTEM_BUS_ADDRESS to the path to the system dbus address to use, e.g:
export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/var/run/dbus/system_bus_socket
for example in the login script.
If the variable is not set, the OBEX module will fallback to the standard name in $(localstatedir), e.g. /var/run/dbus/system_bus_socket.
Download (0.64MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
861 downloads
gnome-vfs 2.18.1 / 2.19.3
gnome-vfs is a Filesystem Abstraction library. more>>
gnome-vfs is a Filesystem Abstraction library. It provides an abstraction layer for the reading, writing and execution of files. It is primarily used by the Nautilus file manager and other GNOME applications.
A cause of confusion is the fact that the file system abstraction used by the Linux kernel is also called the virtual file system (VFS). This is however at a lower level.
Whats New in 2.19.3 Development Release:
- Export modules directory in pkg-config files
- Fix crash in gnome_vfs_xfer
- Add GNOME_VFS_DIRECTORY_VISIT_IGNORE_RECURSE_ERROR flag
- Dont resolve non-mdns hosts when resolving mDNS service names
- Workaround issue with mDNS and link-local ipv6 addresses
<<lessA cause of confusion is the fact that the file system abstraction used by the Linux kernel is also called the virtual file system (VFS). This is however at a lower level.
Whats New in 2.19.3 Development Release:
- Export modules directory in pkg-config files
- Fix crash in gnome_vfs_xfer
- Add GNOME_VFS_DIRECTORY_VISIT_IGNORE_RECURSE_ERROR flag
- Dont resolve non-mdns hosts when resolving mDNS service names
- Workaround issue with mDNS and link-local ipv6 addresses
Download (2.6MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
819 downloads
gnome-vfs-monikers 2.15.3
gnome-vfs-monikers is a Filesystem Abstraction library. more>>
gnome-vfs-monikers is a Filesystem Abstraction library.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<lessInstallation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Download (0.36MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1199 downloads
FlyBird 0.2.1
FlyBird project is a two-panel fully professional file manager supporting tab based console and gnome-vfs. more>>
FlyBird project is a two-panel fully professional file manager supporting tab based console and gnome-vfs (that allows you to use http, ftp, samba and other commonly used protocols).
Main features:
- tab based console;
- gnome-vfs support (network support under development);
- file change monitoring;
- threads for directory loading;
- some Nautilus plugins support.
<<lessMain features:
- tab based console;
- gnome-vfs support (network support under development);
- file change monitoring;
- threads for directory loading;
- some Nautilus plugins support.
Download (0.11MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
824 downloads
SMBD Audit 0.2 RC1
SMBD Audit application is a set of VFS audit module for Samba 3 and web frontend to view and search samba audit logs. more>>
SMBD Audit application is a set of VFS audit module for Samba 3 and web frontend to view and search samba audit logs.
Module stores logs directly into MySQL database with libmysqlclient.
You can search database by Login, Address, Share, Action, Log Message(specify filename or directory name), From and To Date.
Here is a very short list of what SMBD Audit package includes, and what it does.
- a VFS audit module, to provide logging to MySQL database
- a web front end to view and search logs.
<<lessModule stores logs directly into MySQL database with libmysqlclient.
You can search database by Login, Address, Share, Action, Log Message(specify filename or directory name), From and To Date.
Here is a very short list of what SMBD Audit package includes, and what it does.
- a VFS audit module, to provide logging to MySQL database
- a web front end to view and search logs.
Download (0.35MB)
Added: 2006-01-26 License: GPL (GNU General Public License) Price:
1374 downloads
FileCentral 0.0.8
Filecentral is a filesystem browser and file manager. more>>
Filecentral is a filesystem browser and file manager. It uses the navigational model of the OSX finder, but tries to integrate into the GNOME Desktop. It uses gnome-vfs and is thus also able to manage remote files.
Filecentral is programmed in C, the best programming language to shoot yourself in the foot.
<<lessFilecentral is programmed in C, the best programming language to shoot yourself in the foot.
Download (0.14MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1540 downloads
FerrisSambaModule 0.1.0
FerrisSambaModule is a VFS module for Samba 3.x. more>>
FerrisSambaModule is a VFS module for Samba 3.x which allows it to provide shares which use libferris as a data source.
Thus, anything libferris can access can be shared as a filesystem via Samba, including LDAP, PostgreSQL, XML files, sleepycat dbXML database, evolution mail client, and queries against libferris various indexes.
Enhancements:
- STLport use was made optional.
- Some fixes were made for mounting eaquery:// as a Samba share.
<<lessThus, anything libferris can access can be shared as a filesystem via Samba, including LDAP, PostgreSQL, XML files, sleepycat dbXML database, evolution mail client, and queries against libferris various indexes.
Enhancements:
- STLport use was made optional.
- Some fixes were made for mounting eaquery:// as a Samba share.
Download (0.28MB)
Added: 2005-09-05 License: GPL (GNU General Public License) Price:
1510 downloads
ego file manager 0.16.0
The ego file manager is a GTK+2 file manager. more>>
ego file manager is a GTK+2 file manager that uses libferris for its VFS and provides evas2, GTK tree, and optional Mozilla browser views.
Enhancements:
- This release adds the ability to drop files from f-spot onto a directory to initiate a copy.
<<lessEnhancements:
- This release adds the ability to drop files from f-spot onto a directory to initiate a copy.
Download (2.3MB)
Added: 2007-04-15 License: GPL (GNU General Public License) Price:
926 downloads
GLib 2.17.4
the core library that forms the basis for projects such as GTK+ and GNOME. more>> GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C,portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.
Major new features:
* GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation
in GLib has support for local filesystems. The new, separate gvfs
module contains various backend implementations (cifs, ftp, sftp,
http, ...)
* GChecksum: provides various hash algorithms, such as MD5, SHA-1
and SHA-256
* GTest: a test framework<<less
Download (6.26MB)
Added: 2009-04-28 License: Freeware Price: Free
221 downloads
ngacl Beta2
ngacl project is an effort to give Linux and its filesystems a full blown ACL system, similar to that used by NFSv4 and Windows. more>>
ngacl project is an effort to give Linux and its filesystems a full blown ACL system, similar to that used by NFSv4 and Windows.
With this software, you have 13 different access rights, dynamic inheritance, and audit ACLs. The implementation is filesystem-independent because the kernel parts are an LSM module.
In addition, there is a Samba-VFS module that enables you to alter ACLs with the Windows ACL editor.
Enhancements:
- This release adds working audit ACLs, stability, and semantic enhancements.
<<lessWith this software, you have 13 different access rights, dynamic inheritance, and audit ACLs. The implementation is filesystem-independent because the kernel parts are an LSM module.
In addition, there is a Samba-VFS module that enables you to alter ACLs with the Windows ACL editor.
Enhancements:
- This release adds working audit ACLs, stability, and semantic enhancements.
Download (0.16MB)
Added: 2006-01-09 License: GPL (GNU General Public License) Price:
1386 downloads
DSLinux 01-08-07
DSLinux is a project that aims to port Linux to the Nintendo DS gaming console. more>>
DSLinux is a project that aims to port Linux to the Nintendo DS gaming console.
Important information:
root password for DSLinux builds since Jun 28 2005 is "uClinux" (case sensitive!)
Works on real hardware, use on emulators is not supported
Since Apr 28 2007, RAM build is integrated in the DLDI build.
Enhancements:
- Restored user/mc/src/vfs/mad.c
- Restored user/mc/src/vfs/mad.h
- Restored user/mc/src/intl/libintl.h
- D toolchain/patches/elf2flt-20051225.diff
- A toolchain/patches/elf2flt-20070723.diff
- U toolchain/Makefile
- U vendors/Nintendo/DLDI/config.uClibc
- U lib/uClibc++/Rules.mak
- U lib/uClibc++/extra/Configs/dslinux_config
- D lib/uClibc++/include/system_configuration.h
- U lib/uClibc++/Makefile
- U linux-2.6.x/arch/arm/kernel/ptrace.c
- U linux-2.6.x/arch/arm/mm/fault.c
- Updated to revision 1851.
<<lessImportant information:
root password for DSLinux builds since Jun 28 2005 is "uClinux" (case sensitive!)
Works on real hardware, use on emulators is not supported
Since Apr 28 2007, RAM build is integrated in the DLDI build.
Enhancements:
- Restored user/mc/src/vfs/mad.c
- Restored user/mc/src/vfs/mad.h
- Restored user/mc/src/intl/libintl.h
- D toolchain/patches/elf2flt-20051225.diff
- A toolchain/patches/elf2flt-20070723.diff
- U toolchain/Makefile
- U vendors/Nintendo/DLDI/config.uClibc
- U lib/uClibc++/Rules.mak
- U lib/uClibc++/extra/Configs/dslinux_config
- D lib/uClibc++/include/system_configuration.h
- U lib/uClibc++/Makefile
- U linux-2.6.x/arch/arm/kernel/ptrace.c
- U linux-2.6.x/arch/arm/mm/fault.c
- Updated to revision 1851.
Download (MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
634 downloads
Nariva 0.1
Nariva project is a search service using Apache Lucene, VFS, and XML-RPC. more>>
Nariva project is a search service using Apache Lucene, VFS, and XML-RPC.
Nariva is an application which aims to provide cross- platform, open API search functionality targeted at desktops. It uses Apache Lucene to perform the indexing and searching functionality and also exposes the Apache Lucene API as an XML-RPC service (provided using Apache XML- RPC).
Files on the local file system are monitored using a sandbox component called Commons Virtual Filesystem (VFS). Nariva ties all these projects together to provide a simple, fast, cross platform, desktop search solution.
Main features:
- Runs cross platform - Written in Java.
- Provides a webservice interface using XML-RPC so its easy to create custom GUI client.
- Low priority search service thread reduces noticable CPU usage.
- Can monitor more than one folder at a time.
- Extendable by using custom index classes set in preferences.
- Provides a default text extraction class for indexing unrecognized file types.
- Built in support for indexing and searching text, html, pdf and maf files.
- MAF Search GUI integrates into Firefox search engine list.
- By default only accepts connections from localhost (127.0.0.1).
- Search on specific fields or use full text search with boolean, fuzzy and proximity matches - Provided by Lucene.
- Re-indexes changed documents in monitored folders dynamically.
<<lessNariva is an application which aims to provide cross- platform, open API search functionality targeted at desktops. It uses Apache Lucene to perform the indexing and searching functionality and also exposes the Apache Lucene API as an XML-RPC service (provided using Apache XML- RPC).
Files on the local file system are monitored using a sandbox component called Commons Virtual Filesystem (VFS). Nariva ties all these projects together to provide a simple, fast, cross platform, desktop search solution.
Main features:
- Runs cross platform - Written in Java.
- Provides a webservice interface using XML-RPC so its easy to create custom GUI client.
- Low priority search service thread reduces noticable CPU usage.
- Can monitor more than one folder at a time.
- Extendable by using custom index classes set in preferences.
- Provides a default text extraction class for indexing unrecognized file types.
- Built in support for indexing and searching text, html, pdf and maf files.
- MAF Search GUI integrates into Firefox search engine list.
- By default only accepts connections from localhost (127.0.0.1).
- Search on specific fields or use full text search with boolean, fuzzy and proximity matches - Provided by Lucene.
- Re-indexes changed documents in monitored folders dynamically.
Download (MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
984 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above vfs search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed