Sponsored Content
Top Forums Shell Programming and Scripting Help about parse the variable Post 302745383 by yanglei_fage on Monday 17th of December 2012 08:03:12 AM
Old 12-17-2012
Quote:
Originally Posted by jim mcnamara
You are getting an error from the command itself - you are trying to set up an emulated device that is already set up. I think you are misusing the command itself, which I know very little about.
NO, becasue I derectly use below cmd which print by echo "$QEMU_CMD" it works


Code:
qemu-system-x86_64 -smp 2 -m 512 -net nic,macaddr=52:54:00:65:43:21 -net tap,script=/etc/qemu-ifup -hda /boot/guest_raw.img  -kernel /boot/bzImage -append "root=/dev/hda rw console=ttyS0,115200 ip=dhcp " -nographic

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

parse a string variable

Hello all, need a little help. I have an input variable such as ARGV which equals something like /use/home/name/script/test.dat I need to be able to get just the "test.dat" (i.e. the file name) at the end of the directory and the directory can be anything and any length. To put it another... (3 Replies)
Discussion started by: methos
3 Replies

2. Shell Programming and Scripting

parse variable

I have a variable (it is a date actually -> 2007-01-03) which would be passed in as parameter, what I want is to parse in and put year, month, and day in separate variables, I have tried the following but doesn't work echo $dt | awk -F- '{print $1 $2 $3}' | read y m d Thanks in... (2 Replies)
Discussion started by: mpang_
2 Replies

3. Shell Programming and Scripting

How do you parse a variable in a bash script?

I have a script I use on my web server (Apache2). I am changing to Lighttpd and need to make a few changes. This is what I use on my apache server #!/bin/bash # accepts 3 parameters: <domain name> <user name> <XXXXXXXX> # domain name is without www (just domain.com) # username would be... (3 Replies)
Discussion started by: vertical98
3 Replies

4. Shell Programming and Scripting

Parse String from a Variable

Hello, Is there a quick way to parse the values from a variable? The variable has the following sample input: TA= The values of the TA variable is not fixed/hardcoded Basically I need to get the IV_Test and PF_SAPP_FWK values. I created a script that first use sed to remove ,... (3 Replies)
Discussion started by: racbern
3 Replies

5. Shell Programming and Scripting

how to parse value of the variable

I have a variable which has a full path to the file, for example : A=/t1/bin/f410pdb Does anybody know the command to parce this variable and assign the result to 3 other variables so each subdirectory name will be in a new variable like this B=t1 C=bin D=f410pdb Many thanks -A (5 Replies)
Discussion started by: aoussenko
5 Replies

6. Shell Programming and Scripting

Parse variable into a command

What I am trying to do is write a script that makes some commands easier, now one of the commands is to rebuild mail boxes in plesk, which would would be something like /usr/loca/psa/websrvmng --vhost-reconfigure --vhost-name=domain.com but the domain.com bit is going to need to change with... (3 Replies)
Discussion started by: foz
3 Replies

7. Shell Programming and Scripting

Parse Logfile output variable

<SUMMARY filecount_excluded="0" dirbytes_sent="3367893" dirbytes_hashcache="13275664" ..and so on..> <session numthreads="1" type="avtarbackup" ndispatchers="1" ..and so on..><host numprocs="4" speed="900" osuser="root" name="ashsux01" memory="24545" /><build time="11:04:53" msgversion="13-10" ... (11 Replies)
Discussion started by: Ikon
11 Replies

8. UNIX for Advanced & Expert Users

How to parse nested variable

Hi, I want to parse nested variable in my script. for exp- c=1 G1='0318' G2='0023' G3='3092' G4='0014' while ;do g=G$c a=$g echo "Group=$g and value=$a" c=`expr $c + 1` done final output are as - --------------------------- Group=G1 and... (4 Replies)
Discussion started by: apskaushik
4 Replies

9. Shell Programming and Scripting

How to parse the variable in .mk file?

Hi all, I am passing a variable in .mk file as NEED="TEST=Name WORK=Ps DEL=let" I need to echo and export each variable like TEST, WORK. DEL TEST=Name WORK=Ps DEL=let We have to parse the NEED variable which may contain many elements like TEST, DEL& etc.. Any idea on this... (10 Replies)
Discussion started by: ricky-row
10 Replies

10. UNIX for Beginners Questions & Answers

Grepping for one variable while using awk to parse an associated variable

Im trying to search for a single variable in the first field and from that output use awk to extract out the lines that contain a value less than a value stored in another variable. Both the variables are associated with each other. Any guidance is appreciated. File that contains the... (6 Replies)
Discussion started by: ncwxpanther
6 Replies
qemubuilder(8)							     pbuilder							    qemubuilder(8)

NAME
qemubuilder - a pbuilder wrapper for qemu. SYNOPSIS
qemubuilder [commands] [options] DESCRIPTION
qemubuilder Executes the specified pbuilder operation with qemu COMMANDS
Most commands imitate pbuilder, see pbuilder manual for details. --create Create the base.qemu image. --update Update the base.qemu image. --build .dsc-file Build a package given a .dsc file --login Start a session within the base.qemu. --execute Execute a command within the base.qemu. --dumpconfig dump configuration information. --arch-diskdevice sd/hd specify whether disk device inside the virtual machine is called /dev/sda or /dev/hda. The possible value is 'sd' or 'hd'. --smp 2 The option passed to SMP. OPTIONS
Most options are the same as pbuilder, except for the following which are handled specially. SMP 2 The SMP option for qemu. I don't think I can support bind-mounts in qemu. Documentation here should be updated according to what's defined in parameter.c, but it isn't. CONFIGURATION FILES
qemubuilder reads the following configuration files per default. /usr/share/pbuilder/pbuilderrc Application default, not to be changed. /etc/pbuilderrc System-wide default. ~/.pbuilderrc User default anything specified with --configfile option Additional configuration at runtime. CONFIGURATION FILE OPTIONS
The possible configuration options are as follows. Others are ignored. DISTRIBUTION=distribution BUILDRESULT=directory BUILDPLACE=directory BASEPATH=path MIRRORSITE=http://mirror KERNEL_IMAGE=vmlinuz Linux kernel to use. INITRD=initrd initrd to use. ARCHITECTURE=arch The target architecture. You can also use ARCH=arch for compatibility with 0.60 or older. MEMORY_MEGS=64 memory size to use in qemu session, in MB. ARCH_DISKDEVICE=hd The architecture-specific disk device specifier. Most arches use sd these days. The only exceptions were i386 and amd64, which used to use hd. EXAMPLES
qemubuilder --create Create a base.qemu image. qemubuilder --update Update the base.qemu image. qemubuilder --build test_0.1.dsc Build the package specified in dsc file, with the base.qemu image. pdebuild --pbuilder qemubuilder Run qemubuilder --build against the current directory. The current directory should be an extracted Debian source package direc- tory. Edit /etc/pbuilderrc to have PDEBUILD_PBUILDER=qemubuilder to make this the default behavior for pdebuild. qemubuilder --create --distribution sid --basepath /var/cache/pbuilder/base-test.qemu Create a base.qemu image with the path /var/cache/pbuilder/base-test.qemu and distribution sid. Example pbuilderrc for i386 KERNEL_IMAGE=vmlinuz-2.6.18-4-k7 INITRD=initrd.img-2.6.18-4-k7 ARCHITECTURE=i386 BASEPATH=/home/dancer/tmp/base-i386.qemu MEMORY_MEGS=64 Note. INITRD may or may not be required for your system. Debian Installer initrd may or may not work depending on which one you choose, use the one from an installed system. CAVEATS Note that for mirror specification, http://localhost/debian/ usually doesn't work, it will be searching for files on the virtual machine itself, not the host OS. AUTHOR
Junichi Uekawa (dancer@debian.org) SEE ALSO
/usr/share/doc/pbuilder/pbuilder-doc.html, pbuilder (8), pdebuild (1) pbuilder 2008 Aug 10 qemubuilder(8)
All times are GMT -4. The time now is 02:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy