similar to: /dev/tty only on a new container

Displaying 20 results from an estimated 7000 matches similar to: "/dev/tty only on a new container"

2012 May 21
2
Cannot connect to the existing LXC containers (console)
Hi, after 2 years of "pure" LXC usage, I'm trying now to administrate our LXC containers with libvirt No problem with a LXC container I create "from Scratch" (lxc-create), but with our existing containers, I've a strange behavior with the console: vsonde43 login: Debian GNU/Linux 5.0 vsonde43 console vsonde43 login: Debian GNU/Linux 5.0 vsonde43 tty1 vsonde43 login:
2012 Jun 07
1
[virt-tools-list] virt-make-fs: Partition 1 has different physical/logical beginnings and endings
On Thu, Jun 07, 2012 at 02:49:14PM +0200, Sebastien Douche wrote: > On Ubuntu 12.04, I'm trying to create a second disk for a VM. The disk > seems work well (and mounted) but I don't like the cfdisk / fdisk > message. > > # virt-make-fs --partition --size=+300M --type=ext3 --format=qcow2 > srv-2912.tar.gz datadisk-test.qcow2 > Formatting 'datadisk-test.qcow2',
2012 May 29
1
"ext2: parent directory not found" with Ubuntu 12.04
Hi all, On the most libguestfs commands (guestfish, virt-*), I have always the same message: "febootstrap-supermin-helper: ext2: parent directory not found: /lib: File not found by ext2_lookup" I'm aware of a similar bug with the old package [1]: "Note on febootstrap (may not be directly related to this bug): You need 3.14 to work around that. I would recommend using at least
2012 Jun 05
2
A RFE for libvirt
Hi, I am a libvirt user , there is a requirement about libvirt : I need a virsh cmd like "#virsh *create-as* --disk --net " to create a very sample guest I have not xml file and I think it's a little hard for me to create a NEW xml for libvirt , so I need a virsh cmd like "vol-create-as " help me do that. I know there are a lot of options for creating a guest , I just need
2012 Jun 01
0
The LXC container propagate the ro remount to the host mount point
Hi, every so often (cannot determine when it occurs at this time), the VM remount in read only the host partition (/srv here). Is it a bug? A misconfiguration? My config: <filesystem type='mount' accessmode='passthrough'> <source dir='/srv/lxc/lib/vprobe10/rootfs'/> <target dir='/'/> </filesystem> -- Sebastien Douche
2013 May 23
0
hardware error 0x80000021 on Ubuntu 12.10, need advice
Hi, On a DELL r610 (Intel Xeon L5520) and a Windows guest I have an hardware error. The bug is well known[1][2] and seems fixed with the package 3.5.0-16-generic. But I use 3.5.0-30-generic. Do I need to upgrade to 13.10? Or just the kernel ? Or modify the options of the kvm module? Thanks. [1] https://bugzilla.redhat.com/show_bug.cgi?id=854983 [2]
2012 Dec 24
3
New version Samba matrix
Hi everybody, I have a client with redhat 3.8 32bits, on this platform he use an old samba version Could you tell me if the new samba's version (Samba 4) can be installed on this platform. Fr?d?ric DOUCHE Groupe APX Vos Architectes ''Services & Technologies'' Mobile:+33.(0)6.98.05.29.85 29 Rue Denis Papin - Parc Club des Pr?s - 59650 Villeneuve D'Ascq
2015 Oct 21
2
Libvirt enhancement requests
Hi folks, I know you're rebuilding livbirt for the SIG. Would it be possible to enable RBD support in it? I know quite a few cases (in the Cloudstack community) that switched to Ubuntu particularly because CEPH support was missing. The recommendation is to rebuild the rpms, but this is not a viable thing for everyone. E.g.
2012 May 16
1
lxc: Add /dev/tty to lxcContainerPopulateDevices() ?
Hi, src/lxc/lxc_container.c:lxcContainerPopulateDevices() has this table of devices that are automatically created when an lxc container is started. const struct { int maj; int min; mode_t mode; const char *path; } devs[] = { { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_NULL, 0666, "/dev/null" }, { LXC_DEV_MAJ_MEMORY, LXC_DEV_MIN_ZERO, 0666,
2015 Oct 27
2
Libvirt enhancement requests
So... how exactly do we proceed? Anyone from the Virt SIG, please stand up? -- Sent from the Delta quadrant using Borg technology! Nux! www.nux.ro ----- Original Message ----- > From: "Pasi K?rkk?inen" <pasik at iki.fi> > To: "Discussion about the virtualization on CentOS" <centos-virt at centos.org> > Sent: Sunday, 25 October, 2015 11:02:22 >
2017 Aug 17
4
unable to emit vectorized code in LLVM IR
I assume compiler knows that your only have 2 input values that you just added together 1000 times. Despite the fact that you stored to a[i] and b[i] here, nothing reads them other than the addition in the same loop iteration. So the compiler easily removed the a and b arrays. Same with 'c', it's not read outside the loop so it doesn't need to exist. So the compiler turned your
2017 Aug 17
2
unable to emit vectorized code in LLVM IR
Ok. I have managed to vectorize the second loop in the following code. But the first loop is still not vectorized? Why? int main(int argc, char** argv) { int a[1000], b[1000], c[1000]; int g=0; int aa=atoi(argv[1]), bb=atoi(argv[2]); for (int i=0; i<1000; i++) { a[i]=aa+i, b[i]=bb+i;} for (int i=0; i<1000; i++) { c[i]=a[i] + b[i]; g+=c[i]; } printf("sum: %d\n", g); return 0;
2014 Dec 01
3
Problem with /dev/tty in LXC established with virt-install
I have created a LXC container with debootstrap followed by virt-install like this: host=mylxc1 debootstrap wheezy /home/lxc/$host virt-install -c lxc:// -n $host --filesystem /home/lxc/$host,/ --ram 1024 I am confused about the /dev filesystem in this container. Specifically the device '/dev/tty'. >From inside the container: ~# ls -la /dev/tty ls: cannot access /dev/tty: No such
2013 Mar 28
1
How to give access to /dev/tty
Hello, First I apologize because I sent this email on the lxc-users mailing by error. So sorry for the double message. I'm trying to run an X server inside a container. I was able to achieve this with lxc-tools (and that is why I mixed myself between the 2 lists) by setting the option lxc.tty = 4 that allows access to 4 tty. Now I want to use libvirt because my final goal is to
2017 Aug 17
2
unable to emit vectorized code in LLVM IR
lli sum-vec03.ll 5 2 #0 0x0000000000c1f818 (lli+0xc1f818) #1 0x0000000000c1d90e (lli+0xc1d90e) #2 0x0000000000c1da5c (lli+0xc1da5c) #3 0x00007f987c2c3d10 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x10d10) #4 0x00007f987c6f0038 #5 0x0000000000989f8c (lli+0x989f8c) #6 0x00000000009383dc (lli+0x9383dc) #7 0x000000000057eedd (lli+0x57eedd) #8 0x00007f987b464a40 __libc_start_main
2014 Jul 08
2
How to get uuid info inside a lxc container created by libvirt_lxc
Hi , Is there anyway to get uuid info inside a lxc container which is created by libvirt_lxc? For kvm, we can use dmidecode or lshw to get this info inside vm. Is there any tools to do this thing for libvirt lxc? Thanks for any help~ -- ------------ Jackie Best Regards
2004 Dec 30
3
labels and counting
Hello, I have got the following problem: given is a large string sequence consisting of the four letters "A" "C" "G" and "T" (as before). Additionally, I have got a second string sequence of the same length giving a label for each character. The labels are "+" and "-". Now I would like to create an 8x8 matrix which contains the
2015 Oct 28
2
Libvirt enhancement requests
On Tue, Oct 27, 2015 at 05:19:16PM +0000, Nux! wrote: > To clarify my own request: > > RBD (for CEPH) support is available in the version bundled in RHEL 7.2 Beta, so we'll have it in CentOS 7.2 (or whatever will be the identifying number). > > The hooks seems just like a matter of creating files in the correct location. > > ..So, all is good in the world once again.
2015 Oct 31
3
Libvirt enhancement requests
Hi Lucian, It seems to be upstream libvirt-1.2.15-2 with options with_xen and with_libxl enabled. http://cbs.centos.org/koji/buildinfo?buildID=1348 Regards, Jean-Marc Le 28/10/2015 09:38, Nux! a ?crit : > Pasi, > > Where are these RPMs, how are they built, what exactly are the differences vs the stock ones? > > Regards, > Lucian > > -- > Sent from the Delta quadrant
2008 Sep 03
5
[LLVMdev] xcodebuild and LLVM
Dear All, Is there a way to convince xcodebuild to build bitcode files for LLVM for an arbitrary Xcode project? So far, I've been able to get xcodebuild to use LLVM by installing XCode 3.1 and using CC="llvm-gcc" on the command line. I've also managed to get LLVM bitcode generates for intermediate files by using "CC="lvm-gcc -emit-llvm"; however, this gives