Displaying 20 results from an estimated 300 matches similar to: "OpenSolaris for sparc in qemu on linux x64"
2007 Oct 31
6
b75 zone ip-exclusive problem
got a problem with b75 that the zone with ip-exclusive just takes the identity of the global zone.
For the primary nic there is no option to set its ip and hostname.
When i change the host name and ip the hostname does not change and the networking goes weird for both the zone and global zone.
sparc
eri
qfe
There any bugs about or should this work fine?
This message posted from
2007 Oct 15
5
problem with smbios 2.13?
Hello,
I''m using the latest b75 ISO to try and get a solaris dom0 running on my
laptop, a Sony SZ-330P. The Xen LiveCD works just fine, so I know that
theoretically it should work. Build 75 also works just fine on my Sony,
including sound and video, etc.
But when I try and boot the Xen kernel, the system hangs. There''s no
panic printed to console. If I pass a -v option at
2007 Oct 09
4
dom0 boot panic after bfu to b75
After BFU-ing my system to b75 I ended up with a panicing system
when booting into Xen:
grub> #---------- ADDED BY BOOTADM - DO NOT EDIT ----------
grub> title Solaris on Xen
grub> kernel$ /boot/$ISADIR/xen.gz
grub> module$ /platform/i86xpv/kernel/$ISADIR/unix /platform/i86xpv/kernel/$ISADIR/unix -B console=ttyb
grub> module$ /platform/i86pc/$ISADIR/boot_archive
grub>
2007 Nov 19
1
Recommended settings for dom0_mem when using zfs
I have a xVm b75 server and use zfs for storage (zfs root mirror and a
raid-z2 datapool.)
I see everywhere that it is recommended to have a lot of memory on a
zfs file server... but I also need to relinquish a lot of my memory to
be used by the domUs.
What would a good value for dom0_mem on a box with 4 gig of ram?
2007 Nov 19
1
Recommended settings for dom0_mem when using zfs
I have a xVm b75 server and use zfs for storage (zfs root mirror and a
raid-z2 datapool.)
I see everywhere that it is recommended to have a lot of memory on a
zfs file server... but I also need to relinquish a lot of my memory to
be used by the domUs.
What would a good value for dom0_mem on a box with 4 gig of ram?
2016 Mar 04
2
[PATCH 0/2] enable memory reclocking on maxwell1
A quick look over the memory reclocking part inside the maxwell mmiotraces
kind of reminded me of the kepler memory reclocking, it looks for most parts
the same.
I didn't do a deep inspection so treat this with great care, but it seems to
work at least on those maxwell gpus this was tested on.
It depends on the PMU fixes for the fuc5 though, otherwise the PMU might not
work as expected and
2014 Dec 18
2
[LLVMdev] Lowering x64bit LLVM IR to x86bit LLVM IR
Hi Tim,
Thank you for this information.
I have another request for help from you,
Below is my test case,
iGetValueFromASM proc
mov rax, 5
mov rax, 5
mov rax, 2
mov rax, 5
mov rax, 2
mov rax, 112233445566
add rax, 2
mov rax, 112233445566
add rax, 5
add rax, 2
I have lowered 32bit LLVM IR,
%0 = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32,
i32, i32, i32, i32, i32, i32, i32,
2015 Nov 10
8
[PATCH v4 0/6] virtio core DMA API conversion
On Mon, 2015-11-09 at 16:46 -0800, Andy Lutomirski wrote:
> The problem here is that in some of the problematic cases the virtio
> driver may not even be loaded.? If someone runs an L1 guest with an
> IOMMU-bypassing virtio device and assigns it to L2 using vfio, then
> *boom* L1 crashes.? (Same if, say, DPDK gets used, I think.)
>
> >
> > The only way out of this while
2015 Nov 10
8
[PATCH v4 0/6] virtio core DMA API conversion
On Mon, 2015-11-09 at 16:46 -0800, Andy Lutomirski wrote:
> The problem here is that in some of the problematic cases the virtio
> driver may not even be loaded.? If someone runs an L1 guest with an
> IOMMU-bypassing virtio device and assigns it to L2 using vfio, then
> *boom* L1 crashes.? (Same if, say, DPDK gets used, I think.)
>
> >
> > The only way out of this while
2012 May 21
1
libguestfs on Debian 6 squeeze problems
I'm trying to install libguestfs on Debian squeeze installed from
http://people.debian.org/~bengen/libguestfs/
It does not work. Here are the details:
I was able to install libguestfs-tools and its dependencies. However,
aptitude removed the following two packages: qemu and qemu-system. I'm
not sure if it's okay or not. If I try to install those packages back, I
get the
2007 Apr 17
1
PRAM
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 2775 bytes
Desc: image001.gif
Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20070417/437dacf8/attachment-0001.gif
2005 Feb 19
2
memory usage
Hi
I am currently trying to port speex v1.1.6 to a microcontroller with
very limited memory (<64Kbyte RAM).
what I found when initialising the encoder, a chunk of 32Kb was
attempted to be alloced, which failed:
src/nb_celp.c:
void *nb_encoder_init(const SpeexMode *m)
{
/* snip */
st = (EncState*)speex_alloc(sizeof(EncState)+8000*sizeof(spx_sig_t));
/* snip */
}
same goes for the
2007 Oct 19
7
Receptionists Phone suggestions? (Not Snom370)
Does anyone have any suggestions for a decent receptionists phone?
Aastra? Grandstream?
Something with (potentially) lots of BLFs, large(ish) screen, headset
and most importantly the ability to transfer calls?
I've installed five Snom 370s that seemed ideal but my client is very
very unhappy as the Snom 370 can't transfer a call correctly if there's
another call coming in (details
2014 Dec 05
2
[LLVMdev] Lowering x64bit LLVM IR to x86bit LLVM IR
Hi,
I need some help,
As per my requirement, I am trying to lower down the x86_64bit binary LLVM
IR to x86 LLVM IR.
Instruction of x86_64 binary are as follows,
mov rax, 1122334455667788
mov rax, 8877665544332211
To lower down the same in x86, I need to split 'rax' register into
'rax_lower' and 'rax_higher'.
Can anybody please give me some pointer to do the same or any
2015 Oct 17
2
[Error] guestfsd: /usr/lib/libaugeas.so.0: version `AUGEAS_0.16.0' not found (required by guestfsd)
2008 May 18
5
STEAM CHAT WORKS!!!!
I was in steam wondering if there was any cahnce of getting steam chat to work. Anyway I send a message saying if he could read my message to change his status to busy. He did.
Then suddly I started receiving messages under steam, ok the alert comes up twice both otherwise perfect!!!!!!!!!!!!
2004 Aug 06
1
icecast switches to another stream when stream ends
Hi!
i have the following problem: two different streams
are running on two different mountpoints; one ends,
the other continues. when i listen to the stream which
ends (i use mpg123), and the stream stops, then i have
a break of a few seconds, and then the music continues
and i hear stream two. mpg123 does not disconnect.
But i want mpg123 to disconnect and to stop
completely. Which
2011 Sep 23
4
Problems with Intel Ethernet and module e1000e
Hi all,
I'm facing a serious problem with the e100e kernel module for Intel
82574L gigabit nics on Centos 6.
The device eth0 suddenly stops working i.e. no more networking. When I
do ifconfig from console I get
eth0 Link encap:Ethernet HWaddr 00:xx:xx:xx:xx:EA
inet6 addr: fe80::225:90ff:fe50:8fea/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
2015 Oct 15
3
Build libguestfs error with undefined reference to `guestfs_int_init_libvirt_backend'
Dear all,
I am trying to build libguestfs library on my system : Ubuntu Server 12.04
x64bit on XEN hypervisor.
I have followed all instructions on their homepage but whey i am trying to
build the library make -> gives me the following error: libguestfs.so:
undefined reference to `guestfs_int_init_libvirt_backend'
Here is a sample code of the error :
make[2]: Entering directory
2015 Nov 09
2
[PATCH v4 0/6] virtio core DMA API conversion
So ...
I've finally tried to sort that out for powerpc and I can't find a way
to make that work that isn't a complete pile of stinking shit.
I'm very tempted to go back to my original idea: virtio itself should
indicate it's "bypassing ability" via the virtio config space or some
other bit (like the ProgIf of the PCI header etc...).
I don't see how I can make