Gvfs-1.48.0

Introduction to Gvfs

The Gvfs package is a userspace virtual filesystem designed to work with the I/O abstractions of GLib's GIO library.

This package is known to build and work properly using an LFS-10.1 platform.

Package Information

Gvfs Dependencies

Required

dbus-1.12.20, GLib-2.68.1, libusb-1.0.24, libsecret-0.20.4 and libsoup-2.72.0

Recommended

Optional

Apache-2.4.46, Avahi-0.8, BlueZ-5.56, dbus-glib-0.112, Fuse-3.10.2, gnome-online-accounts-3.38.1, GTK-Doc-1.33.2, libarchive-3.5.1, libgcrypt-1.9.2, libxml2-2.9.10, libxslt-1.1.34, OpenSSH-8.5p1, Samba-4.14.2, libbluray, libgphoto2, libimobiledevice, libmtp, libnfs, and Twisted

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gvfs

Installation of Gvfs

Install Gvfs by running the following commands:

mkdir build &&
cd    build &&

meson --prefix=/usr     \
      -Dfuse=false      \
      -Dgphoto2=false   \
      -Dafc=false       \
      -Dbluray=false    \
      -Dnfs=false       \
      -Dmtp=false       \
      -Dsmb=false       \
      -Dtmpfilesdir=no  \
      -Ddnssd=false     \
      -Dgoa=false       \
      -Dgoogle=false    \
      -Dsystemduserunitdir=no .. &&
ninja

This package does not come with a test suite.

Now, as the root user:

ninja install
[Note]

Note

If you installed the package to your system using a DESTDIR method, /usr/share/glib-2.0/schemas/gschemas.compiled was not updated/created. Create (or update) the file using the following command as the root user:

glib-compile-schemas /usr/share/glib-2.0/schemas

Command Explanations

-D<option>=false: These switches are required if the corresponding optional dependency is not installed. Remove those where you have installed the corresponding application and wish to use it with Gvfs. The dnssd option requires avahi and both goa/google require GNOME Online Accounts.

-Dtmpfilesdir=no -Dsystemduserunitdir=no: These switches provide systemd directory locations. Setting them to no disables the dependency on systemd and logind.

-Dcdda=false: This switch is required if libcdio is not installed. The cdda backend is useless on machines without a CDROM/DVD drive.

Contents

Installed Programs: None
Installed Library: libgvfscommon.so, libgvfsdaemon.so and some under /usr/lib/gio/modules/
Installed Directories: /usr/include/gvfs-client and /usr/{lib,share}/gvfs

Short Descriptions

libgvfscommon.so

contains the common API functions used in Gvfs programs

Last updated on 2021-04-08 01:16:54 -0500