Displaying 20 results from an estimated 52 matches for "image_name".
2015 Nov 11
2
[PATCH 1/2] dib: Make the interface between cmdline.ml and dib.ml explicit.
...-25,7 +25,37 @@ open Utils
open Printf
-let parse_args () =
+type cmdline = {
+ debug : int;
+ basepath : string;
+ elements : string list;
+ excluded_elements : string list;
+ element_paths : string list;
+ excluded_scripts : string list;
+ use_base : bool;
+ drive : string option;
+ image_name : string;
+ fs_type : string;
+ size : int64;
+ root_label : string option;
+ install_type : string;
+ image_cache : string option;
+ compressed : bool;
+ qemu_img_options : string option;
+ mkfs_options : string option;
+ is_ramdisk : bool;
+ ramdisk_element : string;
+ extra_packages :...
2009 Oct 25
3
Image_tag Positioning/Alignment
Hi:
I searched the forum before posting and could not find any help on how
to position an image using image_tag (''image_name'').
I have an image in a div, and I need to move it to the right.
How do I this? I have this code:
<div id="mainDivright"><%= image_tag (''name.gif''), :options =>
{:align=>"right" } %></div>
I even tried this:
<div align=&...
2019 Nov 30
3
Converting LVM to qcow2
Hi!
I need to convert a KVM virtual machine from LVM to a qcow2 image, and wonder if this is the best way to do it (*1):
[$] qemu-img convert -O qcow2 /dev/vg_name/lv_name/ /var/lib/libvirt/images/image_name.qcow2
If this is the best way to do this, will this keep the information on: /dev/vg_name/lv_name/ untouched?
Thanks, and please point me towards another mailing list if this it not right place to ask questions related to qemu-img!
Best regards,
Richard Taubo
*1) Via: http://nocoast-tech.blogsp...
2017 Feb 02
7
[PATCH 0/6] dib: various improvements
Hi,
this series improves virt-dib, adding some upstream changes, and
refactoring the handling of output formats.
Thanks,
Pino Toscano (6):
dib: clear up "already provided" message
dib: add --checksum
dib: pass custom mkfs options after the filesystem type
dib: refactor output formats handling
dib: clarify "output:" lines in --machine-readable documentation
dib:
2017 Feb 14
0
[PATCH 10/10] dib: add squashfs output format
...s = Some squashfs_check;
+ run_on_filesystem = Some squashfs_run_fs;
+}
+
+let () = register_format fmt
diff --git a/dib/utils.ml b/dib/utils.ml
index 3775a41..da5e738 100644
--- a/dib/utils.ml
+++ b/dib/utils.ml
@@ -33,6 +33,7 @@ let current_arch () =
| arch -> arch
let output_filename image_name = function
+ | "squashfs" -> image_name ^ ".squash"
| fmt -> image_name ^ "." ^ fmt
let log_filename () =
diff --git a/dib/virt-dib.pod b/dib/virt-dib.pod
index 2786050..7083e78 100644
--- a/dib/virt-dib.pod
+++ b/dib/virt-dib.pod
@@ -212,6 +212,12 @@ QEMU...
2008 May 19
11
Rosetta Stone again
Many people have discussed the problems with Rosetta Stone, in
particular the failure to detect the cdrom with the "Language Pack".
I am having the same problem, but none of the described solutions work
for me.
I think that my dosdevices are configured correctly:
niemand at dell dosdevices $ ls -l
total 0
lrwxrwxrwx 1 niemand users 10 2007-09-07 11:59 c: -> ../drive_c
lrwxrwxrwx 1
2008 May 19
11
Rosetta Stone again
Many people have discussed the problems with Rosetta Stone, in
particular the failure to detect the cdrom with the "Language Pack".
I am having the same problem, but none of the described solutions work
for me.
I think that my dosdevices are configured correctly:
niemand at dell dosdevices $ ls -l
total 0
lrwxrwxrwx 1 niemand users 10 2007-09-07 11:59 c: -> ../drive_c
lrwxrwxrwx 1
2015 May 29
0
[PATCH v3] RFC: New virt-dib tool
...paths = ref [] in
+ let append_element_path arg =
+ element_paths := arg :: !element_paths in
+
+ let excluded_scripts = ref [] in
+ let append_excluded_script arg =
+ excluded_scripts := arg :: !excluded_scripts in
+
+ let debug = ref 0 in
+
+ let basepath = ref "" in
+
+ let image_name = ref "image" in
+
+ let fs_type = ref "ext4" in
+
+ let size = ref (unit_GB 5) in
+ let set_size arg = size := parse_size arg in
+
+ let memsize = ref None in
+ let set_memsize arg = memsize := Some arg in
+
+ let network = ref true in
+
+ let smp = ref None in
+ let se...
2015 Mar 31
0
[PATCH] WIP: New virt-dib tool
...t = ref [] in
+ let append_blacklisted_script arg =
+ blacklist := arg :: !blacklist in
+
+ let trace = ref false in
+ let verbose = ref false in
+ let debug = ref 0 in
+ let set_debug arg =
+ debug := arg in
+
+ let dryrun = ref false in
+
+ let basepath = ref "" in
+
+ let image_name = ref "image" in
+
+ let fs_type = ref "ext4" in
+
+ let size = ref (unit_GB 5) in
+ let set_size arg = size := parse_size ~prog arg in
+
+ let memsize = ref None in
+ let set_memsize arg = memsize := Some arg in
+
+ let network = ref true in
+
+ let smp = ref None in
+...
2015 Jul 03
1
[PATCH v5] New tool: virt-dib
...in
+ let append_excluded_script arg =
+ excluded_scripts := arg :: !excluded_scripts in
+
+ let debug = ref 0 in
+ let set_debug arg =
+ if arg < 0 then
+ error (f_"--debug parameter must be >= 0");
+ debug := arg in
+
+ let basepath = ref "" in
+
+ let image_name = ref "image" in
+
+ let fs_type = ref "ext4" in
+
+ let size = ref (unit_GB 5) in
+ let set_size arg = size := parse_size arg in
+
+ let memsize = ref None in
+ let set_memsize arg = memsize := Some arg in
+
+ let network = ref true in
+
+ let smp = ref None in
+ let se...
2006 Mar 27
2
Trouble with rendering partials
...tial => ''threadtop'', :object => @thread %>
<% for @reply in @replies %>
<%= render :partial => "reply", :object => @reply %>
<% end %>
<% end %>
_threadtop.rhtml:
---
<div class="threadtop">
<% if thread.image_name != "" %>
<% end %>
<p>
<span class="subject"><%= thread.subject %></span>
<span class="name"><%= thread.name %></span>
<span class="date"><%= thread.date.strftime("%m/%d/%Y %H:%M")
%...
2013 Apr 15
1
View saved workspace commands
R version : 2.15.2
Windows: 7 32-bit
Hello,
I was trying to load a saved workspace image from the working directory.
I issued the command load('image_name') in R console. It did not throw any
error, but then it returned the prompt. I want to view the commands (or
history) I typed there, how do I do that? Pressing up arrow does not bring
any of this workspace command, it rather brings older ones, same as the
output of history(). Any help will be...
2019 Nov 30
0
Re: Converting LVM to qcow2
On Sat, Nov 30, 2019 at 01:12:31 +0100, ort_libvirt@bergersen.no wrote:
> Hi!
>
> I need to convert a KVM virtual machine from LVM to a qcow2 image, and wonder if this is the best way to do it (*1):
> [$] qemu-img convert -O qcow2 /dev/vg_name/lv_name/ /var/lib/libvirt/images/image_name.qcow2
>
> If this is the best way to do this, will this keep the information on: /dev/vg_name/lv_name/ untouched?
As long as you also reconfigure the VM to use
/var/lib/libvirt/images/image_name.qcow2 after this point the old
logical volume will not be used.
The above approach is good if y...
2017 Feb 21
0
[PATCH 3/3] dib: rename "aux" to "in_target.aux"
...es
-export HOME=$mysysroot/tmp/aux/perm/home
-export PATH=$mysysroot/tmp/aux/hooks/bin:$PATH
+export HOME=$mysysroot/tmp/in_target.aux/perm/home
+export PATH=$mysysroot/tmp/in_target.aux/hooks/bin:$PATH
export TMP=$mysysroot/tmp
export TMPDIR=$TMP
export TMP_DIR=$TMP
@@ -190,12 +190,12 @@ export IMAGE_NAME=\"%s\"
export DIB_IMAGE_ROOT_FS_UUID=%s
export DIB_IMAGE_CACHE=$HOME/.cache/image-create
export DIB_ROOT_LABEL=\"%s\"
-export _LIB=$mysysroot/tmp/aux/lib
-export _PREFIX=$mysysroot/tmp/aux/elements
+export _LIB=$mysysroot/tmp/in_target.aux/lib
+export _PREFIX=$mysysroot/tmp/i...
2006 Jan 25
1
url_for_file_column in parent model''s view
...of form of the parent model
(books). Now I need to figure out how to view the images in simple
display view of the parent model (books).
I am not sure about the syntax of the url_for_file_column helper.
Here is what I have so far:
<% for image in @book.images %>
<label for="image_name">Image:</label>
<div class="reviewfield"><% url_for_file_column image, image.name,
"thumb" %> </div><br />
<label for="image_caption">Caption</label>
<div class="reviewfield"><%= image.caption...
2015 Jun 16
2
[PATCH v4] RFC: New tool: virt-dib
...in
+ let append_excluded_script arg =
+ excluded_scripts := arg :: !excluded_scripts in
+
+ let debug = ref 0 in
+ let set_debug arg =
+ if arg < 0 then
+ error (f_"--debug parameter must be >= 0");
+ debug := arg in
+
+ let basepath = ref "" in
+
+ let image_name = ref "image" in
+
+ let fs_type = ref "ext4" in
+
+ let size = ref (unit_GB 5) in
+ let set_size arg = size := parse_size arg in
+
+ let memsize = ref None in
+ let set_memsize arg = memsize := Some arg in
+
+ let network = ref true in
+
+ let smp = ref None in
+ let se...
2009 Jul 29
5
ovirt-node-image patchset Fedora
modified ovirt-node-image for inclusion in Fedora
Removes ovirt-node-image-pxe sub package
adds get-ovirt-node-image script
adds generate-ovirt-node-pxe-tree script (replaces subpackage)
moved all the scripts/tools into tools subdir
adds new rpm, ovirt-node-recipe includes tools, manifests, and ks file/recipe
Process for building upstream ovirt node packages....
1. Build ovir-node.rpm in koji
2006 May 11
4
modelling data to specify user access
...table that holds all the images, and divide it out into portfolio and
galleries.
I am sitting down mapping the data right now, but I am not sure how to
handle this. How many tables to I need and how do I map them together?
So far I have these tables:
Users
*ID
*username
*password
Images
*ID
*image_name
*path_to_image
*path_to_thumbnail
Galleries
*ID
*gallery_name
and then I''m not sure about:
Gallery_Names?
User_Access?
I''d appreciate help if anyone has had experience with this before...
Jason
--
Posted via http://www.ruby-forum.com/.
2017 Feb 21
3
[PATCH 1/3] dib: unset all temporary dirs envvars in fake-sudo
The real sudo does it as well, and leaving them when preserving the
environment (-E) maybe breaks the applications, as e.g. chroot will have
a TMPDIR path pointing outside of it.
---
dib/dib.ml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dib/dib.ml b/dib/dib.ml
index df83ba1..d15cd19 100644
--- a/dib/dib.ml
+++ b/dib/dib.ml
@@ -301,6 +301,11 @@ if [ -z \"$preserve_env\" ];
2007 Feb 26
2
[PATCH 0 of 2] Parse image elfnotes, write them to xenstore, save and load via image sxpr
Here are two patches that let xm create, save and restore extract and
preserve elfnotes read by the domain builder. This is handy for a few
things. In particular, I''d like it so that xm can decide whether or
not guest domains support fast resume (if save fails, or for
checkpointing).
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com