[one-users] (no subject)

2011-04-19 Thread Nacho
http://euro-news.rift.tv/q6s3j1
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Could not open log file

2011-04-19 Thread Marco Mirabile
$ bin/one start
bin/one: riga 139: /srv/cloud/one/var/oned.pid: Permission denied
bin/one: riga 162: /srv/cloud/one/var/sched.pid: Permission denied
Error: Can not start oned, opening lock file /var/lock/one/one
Could not open log file
cat: /srv/cloud/one/var/oned.pid: File o directory does not exist
cat: /srv/cloud/one/var/sched.pid: File o directory does not exist

in the path /srv/cloud/one/var/ there aren't oned.pid and sched.pid files
help me please
thanks
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] searching for xmlrpc-c libraries

2011-04-19 Thread Marco Mirabile
Error searching for xmlrpc-c libraries. Please check this things:

 * You have installed development libraries for xmlrpc-c. One way to check
   this is calling xmlrpc-c-config that is provided with the development
   package.
 * Check that the version of xmlrpc-c is at least 1.06. You can do this also
   calling:
   $ xmlrpc-c-config --version
 * If all this requirements are already met please send log files located in
   .xmlrpc_test to the mailing list.

root@marco-laptop:/home/marco/opennebula-2.2# xmlrpc-c-config --version
1.06.27
root@marco-laptop:/home/marco/opennebula-2.2#


my version is 1.06 and this version already met, but i don't know file
.xmlrpc_test.
where is the path of .xmlrpc_test?
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] sudo apt-get install nokogiri

2011-04-19 Thread Vivek Shrivastava
use the following command to install nokogiri:-
sudo gem install --http-proxy http://username:password  proxy server
address:portnumber --no-ri --no-rdoc nokogiri

2011/4/19 Łukasz Oleś 

> 2011/4/19 Marco Mirabile :
> > apt-get install nokogiri
>
> apt-cache search nokogiri
>
> --
> Łukasz Oleś
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>



-- 
From,

Vivek Shrivastava
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Errors in tm_clone.sh for NFS hosts

2011-04-19 Thread Whiffen, Richard

This is looking more and more like a bug or variable scope issue.

I added the following to /usr/lib/one/tm_commands/nfs/tm_clone.sh:

log "SRC Value: $SRC"
log "DST value: $DST"

(after the line "get_vmdir")

The log entries now say:
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: SRC Value: 
io-kvm-ctrl-01.streamsage.com:/home/oneadmin/one-templates/ttylinux.img
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: DST value: 
sn-kvm-11:/srv/cloud/one/var/59/images/disk.0
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: 
io-kvm-ctrl-01.streamsage.com:/home/oneadmin/one-templates/ttylinux.img 
sn-kvm-11:/srv/cloud/one/var/59/images/disk.0
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: DST: 
/var/lib/one/59/images/disk.0
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: Creating directory 
/var/lib/one/59/images
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: Executed "mkdir -p 
/var/lib/one/59/images".
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: Executed "chmod a+w 
/var/lib/one/59/images".
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: Cloning 
/home/oneadmin/one-templates/ttylinux.img
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: Executed "cp -r 
/home/oneadmin/one-templates/ttylinux.img /var/lib/one/59/images/disk.0".
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: Executed "chmod a+rw 
/var/lib/one/59/images/disk.0".


So DST has the correct value: /srv/cloud/one/var/59/image/disk.0. But two log 
lines later, DST is set to: /var/lib/one/59/images/disk.0
Tue Apr 19 09:39:30 2011 [TM][I]: tm_clone.sh: DST: 
/var/lib/one/59/images/disk.0

So somewhere in the sub-routine "fix_paths" we're picking up /var/lib instead 
of /srv/cloud/???

For now I've commented out "fix_paths" in tm_clone.sh and fix_dst_path in 
/usr/lib/one/tm_commands/nfs/tm_context.sh and it's now creating virts on my 
NFS enabled hosts.

Rich



From: Rich Whiffen 
mailto:richard_whif...@cable.comcast.com>>
Date: Mon, 18 Apr 2011 15:51:39 -0400
To: mailto:users@lists.opennebula.org>>
Subject: Errors in tm_clone.sh for NFS hosts

I think this one is pretty straight forward, I just need someone to tell me 
where I set it.When I try to create a virt on a tm_nfs target, the tm_clone 
is cloning into the wrong directory.

It says its trying to do it right:
 tm_clone.sh: 
io-kvm-ctrl-01.streamsage.com:/srv/cloud/var/images/83603da305e13410317b0c947f435a019644f46f
 sn-kvm-11:/srv/cloud/one/var/56/images/disk.0

/srv/cloud/one/var/56/images is the correct target path, but the clone script  
appears to be putting it in:  /var/lib/one/56/images/disk.0
tm_clone.sh: DST: /var/lib/one/56/images/disk.0

Where do I set the variable for the tm_nfs config to not use '${ONE_LOCATION}' 
for the destination but rather use the /srv/cloud/one/var/ (/srv is the NFS 
mount common to both the oneadmin control box and the target host).

The log file of a failure:
Mon Apr 18 15:10:30 2011 [DiM][I]: New VM state is ACTIVE.
Mon Apr 18 15:10:30 2011 [LCM][I]: New VM state is PROLOG.
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: 
io-kvm-ctrl-01.streamsage.com:/srv/cloud/var/images/83603da305e13410317b0c947f435a019644f46f
 sn-kvm-11:/srv/cloud/one/var/56/images/disk.0
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: DST: 
/var/lib/one/56/images/disk.0
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: Creating directory 
/var/lib/one/56/images
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: Executed "mkdir -p 
/var/lib/one/56/images".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: Executed "chmod a+w 
/var/lib/one/56/images".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: Cloning 
/srv/cloud/var/images/83603da305e13410317b0c947f435a019644f46f
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: Executed "cp -r 
/srv/cloud/var/images/83603da305e13410317b0c947f435a019644f46f 
/var/lib/one/56/images/disk.0".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_clone.sh: Executed "chmod a+rw 
/var/lib/one/56/images/disk.0".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_context.sh: Executed "mkdir -p 
/var/lib/one/56/images/isofiles".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_context.sh: Executed "cp -R 
/var/lib/one/56/context.sh /var/lib/one/56/images/isofiles".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_context.sh: Executed "/usr/bin/mkisofs -o 
/var/lib/one/56/images/disk.1 -J -R /var/lib/one/56/images/isofiles".
Mon Apr 18 15:11:53 2011 [TM][I]: tm_context.sh: Executed "rm -rf 
/var/lib/one/56/images/isofiles".
Mon Apr 18 15:11:55 2011 [LCM][I]: New VM state is BOOT
Mon Apr 18 15:11:55 2011 [VMM][I]: Generating deployment file: 
/var/lib/one/56/deployment.0
Mon Apr 18 15:12:25 2011 [VMM][I]: Command execution fail: 'if [ -x 
"/var/tmp/one/vmm/kvm/deploy" ]; then /var/tmp/one/vmm/kvm/deploy 
/srv/cloud/one/var/56/images/deployment.0; else  
exit 42; fi'
Mon Apr 18 15:12:25 2011 [VMM][I]: STDERR follows.
Mon Apr 18 15:12:25 2011 [VMM][I]: Warning: Permanently added 
'sn-kvm-11,192.168.241.41' (RSA) to the list of known hosts.
Mon Apr 18 15:12:25 2011 [VMM][I]: error: Failed to create domain from 

[one-users] MooseFS transfer manager -- New contribution to OpenNebula ecosystem

2011-04-19 Thread Borja Sotomayor

Hi everyone,

We have a new contribution to the OpenNebula ecosystem: A transfer 
manager for using MooseFS (http://www.moosefs.org/, a fault tolerant, 
network distributed file system) as a backend storage.


More details here:

http://opennebula.org/software:ecosystem:moosefs

Thanks to Giovanni Toraldo from LiberSoft (http://www.libersoft.it/) for 
contributing this!


Cheers,
--
Borja Sotomayor

 Scientific Writer, Computation Institute
 Lecturer, Department of Computer Science
 University of Chicago
 http://people.cs.uchicago.edu/~borja/

 Community Manager, OpenNebula project
 http://www.opennebula.org/
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] file ~/.ssh/config

2011-04-19 Thread Marco Mirabile
a question
the file "~/.ssh/config"
I don't understand to configure the file "~/.ssh/config"
how to set it?
is it manual configuration ?

in the exeples I saw this congigure

$ cat ~/.ssh/config
Host *
StrictHostKeyChecking no
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] sudo apt-get install nokogiri

2011-04-19 Thread Łukasz Oleś
2011/4/19 Marco Mirabile :
> apt-get install nokogiri

apt-cache search nokogiri

-- 
Łukasz Oleś
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] sudo apt-get install nokogiri

2011-04-19 Thread Marco Mirabile
nokogiri not found in ubuntu 10.10
help me! please

root@marco-laptop:~# apt-get install nokogiri
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
E: Impossibile trovare il pacchetto nokogiri
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Not able to access running Ubuntu vm

2011-04-19 Thread Jaime Melis
Hi Amit,

take a look at this [1] post, it might help you out with running Ubuntu
10.10. Although I have described the process for Ubuntu 10.04 it should work
with Ubuntu 10.10.

[1]
http://lists.opennebula.org/pipermail/users-opennebula.org/2011-April/004893.html

Cheers,
Jaime

On Fri, Apr 15, 2011 at 12:52 PM, Amit Soni  wrote:

> Hello,
>
> I made this img file using the following commands:
>
> qemu-img create -f qcow2 vdisk.img 10G
> qemu-system-x86_64 -hda vdisk.img -cdrom /path/to/ubuntu-server.iso
> -boot d  -m 384
> mv vdisk.img ubuntu-1010-server-network-init.img
>
> So, I am pretty sure it's qcow2 format.
>
> Also, I tried to convert the img file to the raw format using the
> following command but still I got the same blank screen:
>
> qemu-img convert -O raw ubuntu-1010-server-network-init.img
> ubuntu-1010-server-network-init.raw
>
> So I am still not able to run ubuntu VM in opennebula. I would be
> great if there are some sort of standard contextualized images of
> standard linux distros available for usage.
>
> Amit
>
> On Fri, Apr 15, 2011 at 1:26 PM, Olivier Sallou 
> wrote:
> > your source file is
> >
> > ubuntu-1010-server-network-init.img
> >
> > with img extension are you sure it is a qcow2?
> >
> > Olivier
> > Le 4/15/11 12:13 PM, Amit Soni a écrit :
> >> Hello,
> >>
> >> There is some interesting progress. I was able to connect to the vnc
> >> session of the machine. I found the following output:
> >>
> >> Booting from Hard Disk ...
> >> Boot failed: not a bootable disk
> >>
> >> No bootable device.
> >>
> >> Apparently, the format of the IMG file is qcow2 and I didn't mentioned
> >> that format in the VM template. Hence, I did the following changes in
> >> the VM template as mentioned in the link
> >> https://support.opennebula.pro/entries/348847-using-qcow-images:
> >>
> >> DISK   = [
> >>   source   =
> "/srv/cloud/images/ubuntu/ubuntu-1010-server-network-init.img",
> >>   target   = "hda",
> >>   readonly = "no",
> >>   DRIVER=qcow2
> >> ]
> >>
> >> However, now when I access the VM from the vnc session I see blank
> >> screen (not a single character on the screen). The VM is still in the
> >> "runn" state.
> >> Now I am really confused what could have went wrong.
> >>
> >> --Amit
> >>
> >>
> >> 2011/4/14 Amit Soni :
> >>> Hello,
> >>>
> >>> I was trying the same thing using following parameters in the template
> file:
> >>>
> >>> RAW = [ type = "kvm",
> >>>  data = " >>> path=\"/dev/pts/5\"/> >>> tty=\"/dev/pts/5\"> >>> port=\"0\"/>" ]
> >>>
> >>> However, when I accessed the machine using the virsh console I got the
> >>> following output after which it just froze. I hit "enter" many time
> >>> but no response. Although I was able to get out of the console:
> >>>
> >>> virsh # console one-13
> >>> Connected to domain one-13
> >>> Escape character is ^]
> >>>
> >>> I read somewhere that this can be because I have not enabled the VM to
> >>> be accessed from serial console so then I followed the following guide
> >>> to make some modification in the VM:
> >>>
> >>> https://help.ubuntu.com/community/SerialConsoleHowto
> >>>
> >>> However, after making the changes when I boot the VM using the "qemu"
> >>> command I just  see the some output like follows:
> >>>
> >>> fsck from util-linux-ng 2.17.2
> >>> /dev/sda1: clean ... files, ... blocks
> >>>  * Starting AppArmor profiles
> >>>
> >>> And that's it. After this there is no response from the VM. However, I
> >>> am able to ssh into the VM (since I have started it from qemu
> >>> command).
> >>>
> >>> But the important thing is, even after these changes for enabling
> >>> serial console in the VM and starting the VM from the opennebula with
> >>> the above mentioned RAW parameters, I get the same result. It get the
> >>> same output upon accessing the console and after that it just freezes.
> >>>
> >>> Could see any mistake that I might be making.
> >>>
> >>> Thanks & Regards,
> >>> Amit
> >>>
> >>>
> >>> 2011/4/14 Idafen Santana Pérez :
>  Hi Zeeshan,
> 
>  how do you access a running VM?
> 
>  Regards
>  Idafen
> 
>  On Thu, Apr 14, 2011 at 6:13 PM, Zeeshan Ali Shah 
> wrote:
> > Manually Console to the running VM to see what went wrong ..
> >
> > /Zeeshan
> >
> > On Thu, Apr 14, 2011 at 5:40 PM, Amit Soni 
> wrote:
> >> Hello,
> >>
> >> I manually created a Ubuntu IMG by installing the Ubuntu 10.10
> server
> >> ISO using qemu command as follows:
> >>
> >> qemu-img create -f qcow2 vdisk.img 10G
> >> qemu-system-x86_64 -hda vdisk.img -cdrom /path/to/ubuntu-server.iso
> >> -boot d  -m 384
> >>
> >> Then I added the network contextualisation scripts as mentioned in
> the
> >> first section of the article:
> >> http://opennebula.org/documentation:archives:rel2.0:cong
> >> But I did one change; I added the execution of the "vmcontext"
> script
> >> in the "/etc/init.d/networking" script since adding the "vmcontext"

Re: [one-users] Does anyone have run Ubuntu instance in OpenNebula successfully ?

2011-04-19 Thread Jaime Melis
Hello,

Indeed the classic approach of installing manually an Ubuntu 10.04 VM under
KVM and launching it with OpenNebula is a bit tricky since it has problems
booting up. We have used and alternative method to prepare VMs which works
perfectly with Ubuntu 10.04:

- Create an OpenNebula template with 2 DISKs:

DISK = [
source = "/path/to/ubuntu-10.04.2-server-amd64.iso",
type= "cdrom",
target  = "hdc"
]

DISK = [ TYPE   = fs,
 SIZE   = 10240,
 FORMAT = ext3,
 SAVE   = yes,
 TARGET = sda ]

- Define the VNC attribute, and OS = [BOOT = "cdrom" ]
- Launch the VM with OpenNebula
- Connect to the running VM with VNC and install Ubuntu. (It comes in really
handy here to have a DHCP server for the installation).
- Manually partition: a single partition mounted on / without swap.
- Install OpenSSH server during installation
- Before shutting down the VM, execute "onevm saveas  
" DISK_ID should be '0'.

The saved image should now boot without further trouble.

Regarding Contextualization:
- for net-contexutalization: a very easy and straight-forward way to
contextualize is to disable automatic configuration of eth0 in
/etc/network/interfaces and adding this [1] script to /etc/rc.local
- don't forget to install acpid package
- follow OpenNebula's guide on contextualization for full contextualization
[2]

We are preparing a blog post explaining this more thoroughly and we will
link to a contextualized Ubuntu 10.04 prepared by us. It should be ready by
next week.

[1] http://pastebin.com/hL3Z23kH
[2] http://opennebula.org/documentation:rel2.2:cong

Regards,
Jaime

2011/4/18 Idafen Santana Pérez 

> Hi Jeff, did you solve your problem? I'm stuck at the same point.
>
> Regards
> Idafen
>
> On Mon, Apr 4, 2011 at 4:52 AM, Jeff  wrote:
>
>>  Thanks you very much ,Carsten. You guys are so kind! I will give it a
>> try.
>> Best Regards,
>> Jeff
>>
>>
>> On 4/4/2011 10:43 AM, carsten.friedr...@csiro.au wrote:
>>
>>  Try enabling the VNC option. This might give you some indication about
>> what went wrong. Ssh or ping will only work if the VM successfully booted
>> and successfully configured the network. VNC is available from the very
>> start of the boot process.
>>
>>
>>
>> If this fails, I can give you a Ubuntu 10.4 image and template that works
>> here. It requires KVM as hypervisor and an existing DHCP server to obtain an
>> IP address.
>>
>>
>>
>> Carsten
>>
>>
>>
>> [image: cid:387141907@30042010-37FB] 
>>
>> Carsten Friedrich
>>
>> Research Team leader
>>
>> ICT Centre, GPO Box 664,Canberra, ACT 2601
>>
>> Phone: +61 2 6216 7019
>>
>> Email: carsten.friedr...@csiro.au
>>
>> Web:   http://www.csiro.au/org/ICT.html
>>
>>
>>
>>
>>
>> *From:* users-boun...@lists.opennebula.org [
>> mailto:users-boun...@lists.opennebula.org]
>> *On Behalf Of *Jeff Lee
>> *Sent:* Monday, 4 April 2011 12:11
>> *To:* users@lists.opennebula.org
>> *Subject:* [one-users] Does anyone have run ubuntu instance in opennebula
>> successfully ?
>>
>>
>>
>> Hi, all.I am stuck in this problem for several days.I can get the instance
>> running, however, I just can't ssh or even ping to it. I try to fix this
>> issues by Google.However, I have failed to find any tutorial about how to
>> create a ubuntu image from scratch for opennebula. Ubuntu website provides
>> images for Eucalyptus and EC2. So I am wondering ,is there any website
>> providing such kind of images ?
>> Best Regards,
>> Jeff
>>
>>
>>
>> ___
>> Users mailing list
>> Users@lists.opennebula.org
>> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>>
>>
>
> ___
> Users mailing list
> Users@lists.opennebula.org
> http://lists.opennebula.org/listinfo.cgi/users-opennebula.org
>
>


-- 
Jaime Melis, Cloud Technology Engineer/Researcher
Major Contributor
OpenNebula - The Open Source Toolkit for Cloud Computing
www.OpenNebula.org | jme...@opennebula.org
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Combining multiple storage backends within a single VM

2011-04-19 Thread Vivien Bernet-Rollande

On 04/18/11 10:55, Jaime Melis wrote:

Hi Viven,

The use of different TM mechanism is quite interesting, as you propose 
probably the best way to handle this is a TM clever enough to choose 
the corresponding storage backend for  different disks. In fact, that 
is the spirit of the example at [1], although simplier than the one 
you propose.

I've seen this example, but I didn't find it quite flexible enough.
* Include the TM options in the Image template. Define an 
image "Debian base system", with the proper TM options to handle it. 
The TM_OPTIONS will be stored in the image definition and could be 
accessed trough the driver by getting the VM id from the SRC_PATH and 
from there 'onevm show ', and get the disk that match de disk_id 
(also from the SRC_PATH, note that disks are named disk.) to 
get the IMAGE and the TM options from 'oneimage show'.


* Use special URLs for your images so the TM knows how to handle them. 
For example, iscsi_filer://debian. URLs are not modified by OpenNebula 
so you get the that URL. In the TM you can have the TM options for 
different URLs


In my opinion, URLs are meant as a way of finding things (like in that 
example), not as a way to know where to put them. Given a line like :
CLONE http:///srv/cloud/images/debian.img 
192.168.0.74:/var/lib/one//26/images/disk.0


I have no simple way to know if /var/lib/one//26/images/disk.0 should 
point to iscsi or nfs storage.
Of course I could specify something like 
http:///srv/cloud/images/debian.img@iscsi/filer1/target1/, but I would 
need to create images for http:///srv/cloud/images/debian.img@local/, 
http:///srv/cloud/images/debian.img@iscsi/filer2/target34/, or 
http:///srv/cloud/images/debian.img@nfs/filer1/path/to/share/.


I find such a hack unnecessarily complex, and very counter-intuitive.
NOTE: There is a "bug" in 2.2 that removes the custom attributes (like 
TM_OPTIONS you propose) [2]. This will be solved in 2.4. Storing the 
TM_OPTIONS have some advantages as you do not have to include them in 
all the templates that uses that OPTIONS. Also, if you want to change 
them you only have to do it in the Image Pool.


This is odd, my testing shows (on 2.2) that custom attributes for a disk 
are actually kept. They are shown when I do a "onevm show" (although the 
quotes are removed):


DISK=[
  CLONE=NO,
  DISK_ID=0,
  READONLY=no,
  SOURCE=/srv/cloud/images/debian.img,
  TARGET=sda1,
  TM_OPTIONS=--foo=bar --bar=baz ]

So it would be possible to write a "very smart"  TM that would :
 - the VM ID from $SRC_PATH
 - get the disk ID from $DST_PATH
 - parse the output of onevm show, and extract the value of TM_OPTIONS.
 - if no options are found, parse output of oneimage show.

However, this is complex, and therefore error prone and hard to maintain.

I think that this approach is pretty close to the Storage Pool 
proposed in your email.


However I think that two queries (onevm show + oneimage show) is a bit 
cumbersome, my proposal here is to include a special Image attribute 
(TM_OPTIONS or DISK_ATTRIBUTES) that will be copied form the IMAGE to 
the DISK attribute in the VM template (when the VM is created), so a 
simple onevm show will give you those values.


What do you think?
With this method the metadata "how is the disk accessed" is attached to 
the image. I see a two problems with this :
 - I will need to create two images if I want to deploy the same image 
on both local disks and iscsi (see the URL point earlier).
 - It cannot be applied to swap, contextualization images, or disks not 
built from images.


I do however like the idea of setting a default value for TM_OPTIONS on 
the image. That way, I could specify that a CD Image is always accessed 
through NFS unless specified otherwise. I just checked : unknown options 
are kept and can be accessed with "oneimage show", provided we know the 
id or the name of the image.


--
Vivien

___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Regular users can not search their information such as userid

2011-04-19 Thread aiguoxin2008 aiguoxin2008
Regular users can not search their information such as
userid,username,isabled and so on.

-- 
aiguoxin
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org