overlay4u
Project description
Simple way to create an overlayfs in ubuntu within Python.
Warnings!
overlay4u requires root. Be sure you’re aware of that. It’s still very much a work in progress so please use with caution and hopefully on VM that you do not care about.
Caveats
overlay4u is not currently being designed for anything but Ubuntu 12.04. At this time that’s the first priority.
Currently Working
Mounting works! (Tested and works)
Creating a table of mounted filesystems
Unmounting
Using overlay4u
Create an overlay at dest:
import overlay4u overlay = overlay4u.mount('dest', 'lower', 'upper') overlay.unmount()
If the destination already has something mounted it won’t mount again:
import overlay4u overlay1 = overlay4u.mount('dest', 'lower', 'upper') # This will throw an error. overlay2 = overlay4u.mount('dest', 'lower', 'upper')
List all overlays:
import overlay4u overlays = overlay4u.list() # Overlays is now a list of all the currently mounted overlays on your # system
Grab a previously mounted overlayfs:
import overlay4u overlay = overlay4u.get('/some_mount_point')
That’s all. It’s a relatively simple tool.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file overlay4u-0.0.4.tar.gz
.
File metadata
- Download URL: overlay4u-0.0.4.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9777262173d355120d1d7ee28223430574a924d6be401ae75cca6040f34fc0d5 |
|
MD5 | cad091fba2dc316adc1778e05915ecb4 |
|
BLAKE2b-256 | a5cd11d28d061a8a858b57e2b7bf698425b872e87cf94f0b63ac5e64f14f88dc |