similar to: User Mode Linux and the CentOS 4.0 Kernel

Displaying 20 results from an estimated 10000 matches similar to: "User Mode Linux and the CentOS 4.0 Kernel"

2007 Apr 18
1
[Bridge] Setting the interfaces in promiscuous mode
Hello, I have been using the bridging facilities provided by Linux (vanilla 2.6.7 SMP with UML skas host patch applied) to bridge a regular physical ethernet network (on interface eth0) with a virtual network (on interface tap0, cf uml_switch, http://user-mode-linux.sourceforge.net/networking.html). A couple of virtual machines (run using user-mode linux, a tool that enables you to run linux
2007 Aug 19
1
[PATCH 1/5] um/... convert #include "linux/..." to #include <linux/...>
(untested) There are several files that #include "linux/file" not #include <linux/file> #include "asm/file" not #include <asm/file> Here's a little script that converts them: egrep -i -r -l --include=*.[ch] \ "^[[:space:]]*\#[[:space:]]*include[[:space:]]*\"(linux|asm)/(.*)\"" * \ | xargs sed -i -e
2007 Aug 19
1
[PATCH 1/5] um/... convert #include "linux/..." to #include <linux/...>
(untested) There are several files that #include "linux/file" not #include <linux/file> #include "asm/file" not #include <asm/file> Here's a little script that converts them: egrep -i -r -l --include=*.[ch] \ "^[[:space:]]*\#[[:space:]]*include[[:space:]]*\"(linux|asm)/(.*)\"" * \ | xargs sed -i -e
2007 Aug 24
0
[PATCH] convert #include "linux/..." and #include "asm/..." to #include <...>
There are several files that: #include "linux/file" not #include <linux/file> #include "asm/file" not #include <asm/file> Here's the little script that converted them: egrep -i -r -l --include=*.[ch] \ "^[[:space:]]*\#[[:space:]]*include[[:space:]]*\"(linux|asm)/(.*)\"" * \ | xargs sed -i -e
2007 Aug 24
0
[PATCH] convert #include "linux/..." and #include "asm/..." to #include <...>
There are several files that: #include "linux/file" not #include <linux/file> #include "asm/file" not #include <asm/file> Here's the little script that converted them: egrep -i -r -l --include=*.[ch] \ "^[[:space:]]*\#[[:space:]]*include[[:space:]]*\"(linux|asm)/(.*)\"" * \ | xargs sed -i -e
2019 May 22
1
custom virt-io support (in user-mode-linux)
On 22/05/2019 14:02, Johannes Berg wrote: > Hi, > > While my main interest is mostly in UML right now [1] I've CC'ed the > qemu and virtualization lists because something similar might actually > apply to other types of virtualization. > > I'm thinking about adding virt-io support to UML, but the tricky part is > that while I want to use the virt-io basics
2019 May 23
0
[Qemu-devel] custom virt-io support (in user-mode-linux)
On Wed, May 22, 2019 at 03:02:38PM +0200, Johannes Berg wrote: > Hi, > > While my main interest is mostly in UML right now [1] I've CC'ed the > qemu and virtualization lists because something similar might actually > apply to other types of virtualization. > > I'm thinking about adding virt-io support to UML, but the tricky part is > that while I want to use
2019 May 22
0
custom virt-io support (in user-mode-linux)
Hi Anton, > > I'm thinking about adding virt-io support to UML, but the tricky part is > > that while I want to use the virt-io basics (because it's a nice > > interface from the 'inside'), I don't actually want the stock drivers > > that are part of the kernel now (like virtio-net etc.) but rather > > something that integrates with wifi (probably
2007 Sep 06
0
Asterisk on UML (User Mode Linux)
What's the current thinking on running Asterisk in a UML environment? I saw some discussion about Xen and asterisk on a Xen DomU. I'm currently running Asterisk in a UML and have noticed poorer quality on calls. I'm only using SIP and IAX2 trunks. No hardware adapters. I guess timing is important, but even if I could get the provider to install a kernel with the Zaptel Dummy timing
2004 Sep 10
1
[bodrato@gulp.linux.it: Bug#174609: flac: option "-E, --escape-coding" in man page, but not accepted]
I assume this option was intentionally removed, and the man page should simply be updated...is this correct? ----- Forwarded message from Marco Bodrato <bodrato@gulp.linux.it> ----- Date: Sat, 28 Dec 2002 13:31:35 +0100 From: Marco Bodrato <bodrato@gulp.linux.it> Resent-From: Marco Bodrato <bodrato@gulp.linux.it> To: Debian Bug Tracking System <maintonly@bugs.debian.org>
2019 May 22
4
custom virt-io support (in user-mode-linux)
Hi, While my main interest is mostly in UML right now [1] I've CC'ed the qemu and virtualization lists because something similar might actually apply to other types of virtualization. I'm thinking about adding virt-io support to UML, but the tricky part is that while I want to use the virt-io basics (because it's a nice interface from the 'inside'), I don't actually
2019 May 22
4
custom virt-io support (in user-mode-linux)
Hi, While my main interest is mostly in UML right now [1] I've CC'ed the qemu and virtualization lists because something similar might actually apply to other types of virtualization. I'm thinking about adding virt-io support to UML, but the tricky part is that while I want to use the virt-io basics (because it's a nice interface from the 'inside'), I don't actually
2004 Dec 22
2
xenU wont boot, cannot open root device
Hi, I am trying to replace uml with xen, but I cant get the unpreviliged Domains booting.. Ive tested a cuple of filesystems in a file (ext3 or xfs formatted) and Ive also tried the ttylinux-xen image. But I always get this error: VFS: Cannot open root device "hda1" or unknown-block(3,1) Please append a correct "root=" boot option Kernel panic - not syncing: VFS: Unable to
2009 May 07
1
[LLVMdev] Compiling user mode linux with LLVM
Hello, I've recently started working on compiling UML with LLVM: the goal is to produce a bitcode version of vmlinux. With some tweaks to the build process, I can use: make ARCH=um CROSS_COMPILE=llvm- CFLAGS="-emit-llvm" to produce vmlinux bitcode. The question is with respect linker script support. Since llvm-ld does not support linker scripts--please correct me if I'm
2009 May 07
0
[LLVMdev] Compiling user mode linux with LLVM
Hello, I've recently started working on compiling UML with LLVM: the goal is to produce a bitcode version of vmlinux. With some tweaks to the build process, I can use: make ARCH=um CROSS_COMPILE=llvm- CFLAGS="-emit-llvm" to produce vmlinux bitcode. The question is with respect linker script support. Since llvm-ld does not support linker scripts--please correct me if I'm
2019 May 23
2
[Qemu-devel] custom virt-io support (in user-mode-linux)
Hi Stefan, > Check out vhost-user. It's a protocol for running a subset of a VIRTIO > device's emulation in a separate process (usually just the data plane > with the PCI emulation and other configuration/setup still handled by > QEMU). Yes, I think that's basically what I'm looking for. > vhost-user uses a UNIX domain socket to pass file descriptors to shared
2019 May 23
2
[Qemu-devel] custom virt-io support (in user-mode-linux)
Hi Stefan, > Check out vhost-user. It's a protocol for running a subset of a VIRTIO > device's emulation in a separate process (usually just the data plane > with the PCI emulation and other configuration/setup still handled by > QEMU). Yes, I think that's basically what I'm looking for. > vhost-user uses a UNIX domain socket to pass file descriptors to shared
2013 Aug 09
5
[PATCH 0/4] Not quite working User-Mode Linux backend.
This is a User-Mode Linux backend for libguestfs. You can select it by doing: export LIBGUESTFS_BACKEND=uml export LIBGUESTFS_QEMU=/path/to/vmlinux Note we're reusing the 'qemu' variable in the handle for convenience. QEmu is not involved when using the UML backend. This almost works. UML itself crashes when the daemon tries to connect to the serial port. I suspect it's
2003 Jan 07
0
Your Enterprise Java/J2EE Architect Requirement
Good morning and Happy New Year 2003! Let it be prosperous for both you and me! Below you see a very short version of my CV as of January 2003 for your kind consideration and update. Word, TXT, and PDF version of the complete CV are available upon request. Enjoy the economic recovery! Make it a great day: ZAR ================================================================= ZAR PETKOV,
2005 Apr 20
0
CESA-2005:366 Important CentOS 3 ia64 kernel - kernel security update (Read the NOTES)
CentOS Errata and Security Advisory CESA-2005:366 https://rhn.redhat.com/errata/RHSA-2005-366.html The following updated files have been uploaded and are currently syncing to the mirrors: files: updates/ia64/RPMS/kernel-2.6.9-5.0.5.EL.ia64.rpm updates/ia64/RPMS/kernel-devel-2.6.9-5.0.5.EL.ia64.rpm updates/ia64/RPMS/kernel-doc-2.6.9-5.0.5.EL.noarch.rpm