Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mar-kolya/filesys-btrfs
Module to make calls to btrfs util from perl.
https://github.com/mar-kolya/filesys-btrfs
Last synced: 4 days ago
JSON representation
Module to make calls to btrfs util from perl.
- Host: GitHub
- URL: https://github.com/mar-kolya/filesys-btrfs
- Owner: mar-kolya
- Created: 2011-09-18T05:30:35.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-16T04:09:50.000Z (over 11 years ago)
- Last Synced: 2023-03-12T07:23:43.647Z (over 1 year ago)
- Language: Perl
- Homepage:
- Size: 109 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
Filesys-Btrfs
Simple wrapper around Linux C util. Btrfs util is used to
manage btrfs filesystem: manage snapshots, subvolumes and etc. Only
subset of C options is supported (hopefuly it is useful
subset).For more information about C util please see L manpage.
B This module is hightly experimental (as btrfs itself). API
can change in the future.Example:
use Filesys::Btrfs;
my $btrfs = Filesys::Btrfs->new($mount_point);
$btrfs->subvolume_create('subvolume');INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make installNote: due to nature of the module most of tests cannot be run if user is not root,
'sudo make test' should make sure that module is working fine.SUPPORT AND DOCUMENTATION
After installing, you can find documentation for this module with the
perldoc command.perldoc Filesys::Btrfs
You can also look for information at:
RT, CPAN's request tracker (report bugs here)
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Filesys-BtrfsAnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/Filesys-BtrfsCPAN Ratings
http://cpanratings.perl.org/d/Filesys-BtrfsSearch CPAN
http://search.cpan.org/dist/Filesys-Btrfs/LICENSE AND COPYRIGHT
Copyright (C) 2011 Nikolay Martynov
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.See http://dev.perl.org/licenses/ for more information.