blob: 2dce9399a47d62098f6d6bc098883fb07ef09e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: README,v 1.1 2011/10/12 01:05:00 yamt Exp $
pgfs - a puffs file system server backed by a PostgreSQL database
install:
install postgresql (tested with 9.2devel)
# make
# make install
newfs:
# createdb hoge
# psql -f newfs.sql hoge
mount:
# mount_pgfs -o dbname=hoge,dbuser=takashi,nconn=16 a /mnt
|