Daniel Peebles
Daniel Peebles
It seems like a pretty FAQ-ish thing, and I'd put it in the readme or the docbook.
It sounds like (if it's not fundamentally different in approach to kvm), that framework could provide your interface to the kernel, and then most of your kvm-like code could be...
Traditional (non-fake) chroot invocations will not touch symlink targets, instead treating them like opaque strings. This commit lets users ask for that behavior from fakechroot as well. cc @dex4er
For the `symlink` syscall, I have a scenario in which I don't want `fakechroot` to extend the path being symlinked _to_ (absolute or relative), and just want it to create...
I have a proxy listening on localhost on my Vagrant host. The issue is that localhost becomes 10.0.2.2 from the guest's perspective. When I log into my guest, the http_proxy...
A quick glance suggests that the GitHub API endpoints are hardcoded to the public ones. Would it be possible to support custom API endpoints to use GitHub Enterprise, which otherwise...
It seems like this should be possible in the API callback to get user information.
I never expected to see an error of that sort in a Nix universe. If NixOps (conditionally) needs VirtualBox, it should depend on VirtualBox and take care of installing the...
I've often wanted a combinator called `sized :: Get a -> Get (Int, a)` that will behave the same as its input, except will also tell you how many bytes...
Basically something like `delimit :: Get a -> Get a` that resets the `bytesRead` counter on the inner `Get`. This would primarily be useful in conjunction with the `isolate` combinator...