Created
June 8, 2018 10:43
-
-
Save ryantm/99239516868c9c02f18f88c0399aa8f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/x6894sbycq6n355c9nflvf51c5wl5b4a-lxc-3.0.1 | |
├── bin | |
│ ├── init.lxc | |
│ ├── lxc-attach | |
│ ├── lxc-autostart | |
│ ├── lxc-cgroup | |
│ ├── lxc-checkconfig | |
│ ├── lxc-checkpoint | |
│ ├── lxc-config | |
│ ├── lxc-console | |
│ ├── lxc-copy | |
│ ├── lxc-create | |
│ ├── lxc-destroy | |
│ ├── lxc-device | |
│ ├── lxc-execute | |
│ ├── lxc-freeze | |
│ ├── lxc-info | |
│ ├── lxc-ls | |
│ ├── lxc-monitor | |
│ ├── lxc-snapshot | |
│ ├── lxc-start | |
│ ├── lxc-stop | |
│ ├── lxc-top | |
│ ├── lxc-unfreeze | |
│ ├── lxc-unshare | |
│ ├── lxc-update-config | |
│ ├── lxc-usernsexec | |
│ └── lxc-wait | |
├── etc | |
│ ├── apparmor.d | |
│ │ ├── abstractions | |
│ │ │ └── lxc | |
│ │ │ ├── container-base | |
│ │ │ └── start-container | |
│ │ ├── lxc | |
│ │ │ ├── lxc-default | |
│ │ │ ├── lxc-default-cgns | |
│ │ │ ├── lxc-default-with-mounting | |
│ │ │ └── lxc-default-with-nesting | |
│ │ ├── lxc-containers | |
│ │ └── usr.bin.lxc-start | |
│ ├── default | |
│ │ └── lxc | |
│ └── lxc | |
│ └── default.conf | |
├── include | |
│ └── lxc | |
│ ├── attach_options.h | |
│ ├── lxccontainer.h | |
│ └── version.h | |
├── lib | |
│ ├── liblxc.la | |
│ ├── liblxc.so -> liblxc.so.1 | |
│ ├── liblxc.so.1 -> liblxc.so.1.4.0 | |
│ ├── liblxc.so.1.4.0 | |
│ ├── pkgconfig | |
│ │ └── lxc.pc | |
│ └── security | |
│ └── pam_cgfs.so | |
├── libexec | |
│ └── lxc | |
│ ├── hooks | |
│ │ └── unmount-namespace | |
│ ├── lxc-containers | |
│ ├── lxc-monitord | |
│ ├── lxc-net | |
│ └── lxc-user-nic | |
├── sbin -> bin | |
└── share | |
├── bash-completion | |
│ └── completions | |
│ └── lxc | |
├── lxc | |
│ ├── config | |
│ │ ├── common.conf | |
│ │ ├── common.conf.d | |
│ │ │ └── README | |
│ │ ├── common.seccomp | |
│ │ ├── nesting.conf | |
│ │ ├── oci.common.conf | |
│ │ └── userns.conf | |
│ ├── hooks | |
│ │ ├── clonehostname | |
│ │ ├── dhclient | |
│ │ ├── dhclient-script | |
│ │ ├── mountecryptfsroot | |
│ │ ├── nvidia | |
│ │ ├── squid-deb-proxy-client | |
│ │ └── ubuntu-cloud-prep | |
│ ├── lxc.functions | |
│ ├── lxc-patch.py | |
│ ├── selinux | |
│ │ ├── lxc.if | |
│ │ └── lxc.te | |
│ └── templates | |
│ ├── lxc-busybox | |
│ ├── lxc-download | |
│ ├── lxc-local | |
│ └── lxc-oci | |
└── man | |
├── ja | |
│ ├── man1 | |
│ │ ├── lxc-attach.1.gz | |
│ │ ├── lxc-autostart.1.gz | |
│ │ ├── lxc-cgroup.1.gz | |
│ │ ├── lxc-checkconfig.1.gz | |
│ │ ├── lxc-checkpoint.1.gz | |
│ │ ├── lxc-config.1.gz | |
│ │ ├── lxc-console.1.gz | |
│ │ ├── lxc-copy.1.gz | |
│ │ ├── lxc-create.1.gz | |
│ │ ├── lxc-destroy.1.gz | |
│ │ ├── lxc-device.1.gz | |
│ │ ├── lxc-execute.1.gz | |
│ │ ├── lxc-freeze.1.gz | |
│ │ ├── lxc-info.1.gz | |
│ │ ├── lxc-ls.1.gz | |
│ │ ├── lxc-monitor.1.gz | |
│ │ ├── lxc-snapshot.1.gz | |
│ │ ├── lxc-start.1.gz | |
│ │ ├── lxc-stop.1.gz | |
│ │ ├── lxc-top.1.gz | |
│ │ ├── lxc-unfreeze.1.gz | |
│ │ ├── lxc-unshare.1.gz | |
│ │ ├── lxc-update-config.1.gz | |
│ │ ├── lxc-user-nic.1.gz | |
│ │ ├── lxc-usernsexec.1.gz | |
│ │ └── lxc-wait.1.gz | |
│ ├── man5 | |
│ │ ├── lxc.conf.5.gz | |
│ │ ├── lxc.container.conf.5.gz | |
│ │ ├── lxc.system.conf.5.gz | |
│ │ └── lxc-usernet.5.gz | |
│ └── man7 | |
│ └── lxc.7.gz | |
├── ko | |
│ ├── man1 | |
│ │ ├── lxc-attach.1.gz | |
│ │ ├── lxc-autostart.1.gz | |
│ │ ├── lxc-cgroup.1.gz | |
│ │ ├── lxc-checkconfig.1.gz | |
│ │ ├── lxc-checkpoint.1.gz | |
│ │ ├── lxc-config.1.gz | |
│ │ ├── lxc-console.1.gz | |
│ │ ├── lxc-copy.1.gz | |
│ │ ├── lxc-create.1.gz | |
│ │ ├── lxc-destroy.1.gz | |
│ │ ├── lxc-device.1.gz | |
│ │ ├── lxc-execute.1.gz | |
│ │ ├── lxc-freeze.1.gz | |
│ │ ├── lxc-info.1.gz | |
│ │ ├── lxc-ls.1.gz | |
│ │ ├── lxc-monitor.1.gz | |
│ │ ├── lxc-snapshot.1.gz | |
│ │ ├── lxc-start.1.gz | |
│ │ ├── lxc-stop.1.gz | |
│ │ ├── lxc-top.1.gz | |
│ │ ├── lxc-unfreeze.1.gz | |
│ │ ├── lxc-unshare.1.gz | |
│ │ ├── lxc-user-nic.1.gz | |
│ │ ├── lxc-usernsexec.1.gz | |
│ │ └── lxc-wait.1.gz | |
│ ├── man5 | |
│ │ ├── lxc.conf.5.gz | |
│ │ ├── lxc.container.conf.5.gz | |
│ │ ├── lxc.system.conf.5.gz | |
│ │ └── lxc-usernet.5.gz | |
│ └── man7 | |
│ └── lxc.7.gz | |
├── man1 | |
│ ├── lxc-attach.1.gz | |
│ ├── lxc-autostart.1.gz | |
│ ├── lxc-cgroup.1.gz | |
│ ├── lxc-checkconfig.1.gz | |
│ ├── lxc-checkpoint.1.gz | |
│ ├── lxc-config.1.gz | |
│ ├── lxc-console.1.gz | |
│ ├── lxc-copy.1.gz | |
│ ├── lxc-create.1.gz | |
│ ├── lxc-destroy.1.gz | |
│ ├── lxc-device.1.gz | |
│ ├── lxc-execute.1.gz | |
│ ├── lxc-freeze.1.gz | |
│ ├── lxc-info.1.gz | |
│ ├── lxc-ls.1.gz | |
│ ├── lxc-monitor.1.gz | |
│ ├── lxc-snapshot.1.gz | |
│ ├── lxc-start.1.gz | |
│ ├── lxc-stop.1.gz | |
│ ├── lxc-top.1.gz | |
│ ├── lxc-unfreeze.1.gz | |
│ ├── lxc-unshare.1.gz | |
│ ├── lxc-update-config.1.gz | |
│ ├── lxc-user-nic.1.gz | |
│ ├── lxc-usernsexec.1.gz | |
│ └── lxc-wait.1.gz | |
├── man5 | |
│ ├── lxc.conf.5.gz | |
│ ├── lxc.container.conf.5.gz | |
│ ├── lxc.system.conf.5.gz | |
│ └── lxc-usernet.5.gz | |
└── man7 | |
└── lxc.7.gz | |
38 directories, 164 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment