Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petere/postgresqlfs
FUSE driver to access PostgreSQL databases as a file system
https://github.com/petere/postgresqlfs
database fuse postgresql
Last synced: 2 months ago
JSON representation
FUSE driver to access PostgreSQL databases as a file system
- Host: GitHub
- URL: https://github.com/petere/postgresqlfs
- Owner: petere
- License: mit
- Created: 2009-09-02T18:14:45.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2018-01-15T01:57:17.000Z (about 7 years ago)
- Last Synced: 2024-04-16T01:25:31.453Z (10 months ago)
- Topics: database, fuse, postgresql
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 81
- Watchers: 12
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
postgresqlfs
============postgresqlfs is a FUSE driver to access PostgreSQL databases as a file
system. It exposes the object structure of a PostgreSQL database
instance as directories and files that you can operate on using file
system tools.The idea is that you can use this together with Midnight Commander to
browse and edit a database in text mode in situations where psql would
be to cumbersome but pgAdmin or phpPgAdmin are not available.Use `postgresqlfs --help` to get usage information. Usually, it is just
$ postgresqlfs mountpoint
to mount, and
$ fusermount -u mountpoint
to unmount.
You also need access to the `/dev/fuse` device, which may be tied to
some group membership on your operating system.[![Build Status](https://travis-ci.org/petere/postgresqlfs.svg?branch=master)](https://travis-ci.org/petere/postgresqlfs)
Peter Eisentraut