LXC is an operating system-level virtualization method for running multiple isolated Linux systems (containers) on a single control host. It is sometimes referred to as “chroot on steroids”.

learn more… | top users | synonyms

0
votes
0answers
111 views

Java Instances on Docker [closed]

I was wondering: Is it possible to commit to an image a container with Java that would run a JAR file? I was thinking that I could have it run a script at startup that installs Java and downloads the ...
0
votes
0answers
54 views

IPv6 routing for Linux LXC guests [closed]

I've got an IPv6-enabled host running LXC containers. The host can ping6 guests and vice versa. However, guests pinging internet destinations get "Address unreachable" from the host, probably the ...
0
votes
2answers
49 views

virtual clock speed throttling on linux

Throttling at will the execution and display speed of a particular process, for example, a game, a flash game, or an OpenGL game. I want to be able to slow it down to 20% or 0.5%. This is simply not ...
0
votes
0answers
41 views

LXC containers cloning over network

I'd like to be able to clone a lxc container over the network. For example, I have a machine that contains lxc containers and on another machine, clone these containers and use them. Any idea ?
0
votes
1answer
34 views

lxc network type empty

I want to run lxc machine without network. I write in config file "lxc.network.type=empty" and boot instance image, but image not booting (hovered, freeze). In documentation written that: empty: ...
1
vote
1answer
85 views

Run a program inside an LXC container that is stored on the host

I am writing a binary that will run inside LXC containers. I control the source code of the binary but not the contents of the containers it will run in. In particular, I do not want to pollute the ...
4
votes
1answer
297 views

When will Docker be launched?

I need a tool to encapsulate heterogeneous payloads in Standard Containers, and run them on any server with strong guarantees of isolation and repeatability. When will Docker be launched??
2
votes
1answer
366 views

LXC - Cgroup memory controller: missing

I'm trying install LXC (0.7.4.1) on my Debian 6 but when I run the lxc-checkconfig I get "Cgroup memory controller: missing" root@lxcsrv01:~# lxc-checkconfig Kernel config /proc/config.gz not found, ...
0
votes
0answers
228 views

How to create a centos image of LXC format use in the Openstack environment

I want test LXC in Openstack environment,but have some problems about the images.At qemu-kvm,I usually use virt-manager to create a VM vir a file of .iso,then vrit-manager produced a .img file at ...
0
votes
1answer
36 views

lxc-0.8.0 installation issue on rhel5 that configure script report “Please install the libcap development files”

I want to install lxc-0.8.0 on rhel5. When I excute configure script, it reports error as below. [root@221 lxc-0.8.0]# ./configure --disable-armor ... checking for sys/capability.h... no configure: ...
-1
votes
1answer
87 views

How to launch ephemeral lxc with static ip address in such a way that it can connect to the internet? [closed]

I'm usung the lxc-start-ephemeral utility in Ubuntu 12.10. I've noticed that the ephemeral container starts up pretty quickly, but that it takes a long time (~20s) before ifconfig shows an ip address ...
0
votes
1answer
77 views

Should i shutdown lxc containers before shutting down the host?

I am running an ubuntu precise host with some lxc containers in it. Should or have i to shut down containers before shutting down the host ? Or host shutdown is propagated to containers automatically ...
0
votes
0answers
86 views

Execute a command in lxc container and get a response

I want to execute untrusted user submitted code in a sandbox. The code shouldn't use much CPU and Ram unless there is a bug or a user tries to compromise the server. Can I use lxc for creating a ...
0
votes
0answers
78 views

core dump are not generated on lxc guest

I set ulimit as unlimited for core files on both host and lxc guest even for root on host, I'm able generate core file on host but not on lxc guest. Is there any configuration in lxc for core file ...
0
votes
0answers
94 views

Execute mongod in linux container with limited resources

Can you tell me how is it possible to start mongodb in an isolated enviroment with limited resources? Mongod keeps filling all my RAM so I would like to restrict it. I am thinking about a linux ...
2
votes
1answer
511 views

LXC without chroot

Is there any way to use LXC for resource management using process groups without creating containers? I am working on a service that runs arbitrary code inside a sandbox, for which I am only ...
0
votes
0answers
157 views

Use schroot replacing lxc

I have been using lxc for a while, but I found the configuration and documentation hard to follow, is not clear what to do sometimes and any new version means a lot of changes in my code. I was ...
0
votes
0answers
178 views

use libvirt in lxc [closed]

when I use libvirt in lxc. virsh start cflinux And report the error error: Failed to start domain cflinux error: internal error cannot load AppArmor profile ...
0
votes
1answer
99 views

execute terminal command in isolated unix environment [closed]

I am writing a webapplication in which users are able to execute git, bzr, and hg commands on the server. Basically, a user writes the git/bzr/hg command into a html form, hits a button, the command ...
0
votes
3answers
166 views

where is the easiest tutorial(skip detail of config but works one) to use lxc? [closed]

I want to build ipython-notebook playground environment for colleagues, but it seems have security problems, so I want to use virtual machine(User accounts has privacy problem), like lxc. but I find ...
0
votes
0answers
136 views

gdbserver without network

I would like debug an application in a LXC with gdbserver. But my container can't have network (security). I've few idea to make it, but nothing work. Here my ideas: -Use gdbserver with ttyS0, with: ...
-2
votes
1answer
136 views

Linux. How to run program with LXC with restricted IO permissions? [closed]

I'm able to run programs in LXC containers, and I can create LVM filesystems. So, how to restrict program rights, so that, program can only read and write into paritcular LVM filesystem (programs in ...
10
votes
2answers
736 views

Why can't rsyslogd find libgcc_s.so.1?

Scenario: Running a debootstrapped Ubuntu 11.4 lxc guest on a Ubuntu 12.4 lxc host (both 64 bit) Inside the lxc guest, rsyslogd is constantly crashing with SIGABRT stating: libgcc_s.so.1 must be ...
1
vote
0answers
322 views

Use stdout/stderr from remote (detached) command execution in screen without file access

I am running isolated bash consoles (in the context of Linux containers/network name spaces) in separate GNU screen sessions on a Linux machine. I am able to remotely execute commands on these ...
0
votes
0answers
122 views

How I can get lxc-monitor output in my Java/Scala program?

I'm trying to get output from lxc-monitor and everytime I get empty results. For example: val pb = Process("/usr/bin/lxc-monitor -n .+") val pio = new ProcessIO(_ => (), stdout ...
2
votes
1answer
253 views

How to spawn a process in Scala with PTY?

In ruby I have: PTY.spawn("/usr/bin/lxc-monitor -n .+") do |i, o, pid| # ... end How do this in scala/java?
8
votes
2answers
4k views

How to create multiple network namespace from a single process instance

I am using following C function to create multiple network namespaces from a single process instance: void create_namespace(const char *ns_name) { char ns_path[100]; snprintf(ns_path, 100, ...
0
votes
1answer
131 views

How to switch user-space process back to the root network namespace?

The problem is that /var/run/netns/ directory contains all the network namespaces, except the root namespace. So I am not sure, how to get the fd, that should be passed to the following kernel call: ...
2
votes
2answers
114 views

What ring does qemu execute in?

What ring does qemu execute in when not tied into an existing hypervisor? Any more complete documentation on this subject would be appreciated as well.
0
votes
1answer
611 views

How to install LXC (or other linux container) on centOS 5 (2.6.18 kernel) without modify kernel?

[Background] I would like to regulate the resource allocation between different processes running on CentOS 5. I am not familiar with related tools. I have searched for a while and think LXC may be a ...
1
vote
0answers
193 views

Can I use a socket as stdin/stdout in lxc (linux containers)?

I am interested in starting a daemon inside an lxc container with its stdin/stdout as a socket passed from the host, inetd style. Is this possible?