1
0
Fork 0
mirror of https://gitlab.com/niansa/magicwrap.git synced 2025-03-06 20:48:30 +01:00
Module based namespace
Find a file
2021-03-22 15:57:35 +01:00
modules Minor improvements 2021-03-22 15:57:35 +01:00
moremods Removed very bad and unstable module "debootstrapped" 2019-07-20 01:55:57 +01:00
scripts Print out debug informations in debug mode only and created a new start script 2019-07-20 15:20:00 +01:00
.gitignore Minor improvements 2021-03-22 15:57:35 +01:00
library.sh Print out debug informations in debug mode only and created a new start script 2019-07-20 15:20:00 +01:00
LICENSE Add LICENSE 2019-07-01 19:39:22 +00:00
main.sh Fix error if no parameters aree passed to main.sh 2019-07-20 16:51:05 +02:00
mw.sh Minor improvements 2021-03-22 15:57:35 +01:00
README.md Changed README.md 2019-07-20 17:23:30 +02:00

Magicwrap

This is a module-based namespace wrapper slightly inspired by magisk. It is completely written in bash and does not require root access.

Note: Magicwrap is still in early development. An installer for module files (.zip, .tar, ...) is in paused progress.

How to run?

  1. Install bubblewrap, bash, busybox-static and optionally fakeroot if you want to use the fakeroot module.
  2. Run ./main.sh start

Usage

[mwdebug=true] [mwcinit=/path/to/init.sh] [mwcconf=/path/to/config.sh] ./main.sh <command>

Default settings

By default, Magicwrap is optimized to run simple terminal applications. Disable or enable modules in modules/{config,init}.sh to make Magicwrap fit your needs. Always enable/disable modules in both init.sh and config.sh!!!

Module sets

Another way to fit magicwrap to your needs is to apply a module set by running: ./main.sh modset <modset>

  • Every module restricts access to /etc and /var
  1. simple: Allows access to most directorys
  2. complete: Restricts access to /home and /opt
  3. graphical: Allows access to users home directory and some directorys to run graphical applications properly
  4. graphical-adv: Same as graphical but restricts access to /home and /opt and enables controller

Module overview

  1. base: Creates base filesystem and init
  2. advdirs: Mounts more directorys (/opt, /srv)
  3. jailedcfg: Mounts stock debian configuration directorys (/etc, /var)
  4. sharedfs: Mounts directorys that are shared between namespaces (/home, /opt)
  5. graphical: Mounts some files that are required to run graphical applications properly
  6. fakeroot: Replaces sudo with fakeroot
  7. control: Allows application to do advanced operations (umount, external xdg-open)
  8. pidone: Runs application as PID 1; not recommended

Module management

The module management scripts are inside scripts/modulemgr/ but they are not recommended yet as most modules will throw errors.