Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-12 Thread Ron Hunter-Duvar
On October 12, 2017 4:25:29 PM MDT, Person  wrote:
>l tried the former commands again, with “ls -lh” and “pwd”, but the
>terminal remained unresponsive, even if it was formerly responsive.
>
>So I tried changing the command around a little. The Qubes site
>mentions to enter this command: “qvm-run --pass-io  'cat
>/path/to/file_in_src_domain' > /path/to/file_name_in_dom0”, and I
>realized that I didn’t put in a desired path for the file in dom0. I
>tried using a directory in dom0 that I found, which was
>/home/user/Downloads. When I entered this command, dom0’s response was
>“Usage: qvm-run [options] [] []” and “qvm-run: error: Too
>many arguments”. I’m not too sure what this means, but I believe I
>somehow typed in the command wrong. I typed in “qvm-run —pass-io
>sys-net ‘cat /home/user/Downloads’ /home/user/Downloads”. (The first
>“/home/user/Downloads is the directory in sys-net and the second is the
>directory in dom0.)

Where you show the command you typed, you're missing the output redirection 
(the ">"). So instead of the shell doing the redirection to the file, it passes 
it as an argument to the qvm-run command, resulting in the error you got.

Ron

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/60927EFB-EB40-4004-9655-6F035AF74196%40shaw.ca.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-12 Thread Person
l tried the former commands again, with “ls -lh” and “pwd”, but the terminal 
remained unresponsive, even if it was formerly responsive.

So I tried changing the command around a little. The Qubes site mentions to 
enter this command: “qvm-run --pass-io  'cat 
/path/to/file_in_src_domain' > /path/to/file_name_in_dom0”, and I realized that 
I didn’t put in a desired path for the file in dom0. I tried using a directory 
in dom0 that I found, which was /home/user/Downloads. When I entered this 
command, dom0’s response was “Usage: qvm-run [options] [] []” and 
“qvm-run: error: Too many arguments”. I’m not too sure what this means, but I 
believe I somehow typed in the command wrong. I typed in “qvm-run —pass-io 
sys-net ‘cat /home/user/Downloads’ /home/user/Downloads”. (The first 
“/home/user/Downloads is the directory in sys-net and the second is the 
directory in dom0.)

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/baecc65c-8f65-4522-ba67-8b4529f662dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-10 Thread Unman
On Mon, Oct 09, 2017 at 08:20:44PM -0700, Person wrote:
> I have copied the file to dom0 several times without error messages, so it is 
> unlikely that the transferral was unsuccessful. 
> 

Here are some basic Linux commands that you should use in a terminal in
dom0:
pwd  - this will show you the directory that you are in.
ls - this will list the contents. You would expect to see the file that
you have just created. If you use 'ls -lh' you will get a  LONG listing
('l') with sizes in HUMAN format ('h').
SO you can confirm that the file you have just copied is the expected
size.

Run the command to copy the iso image.
Then use 'ls -lh' and check that the file is indeed there.
'pwd' to identify the directory.


Armed with that knowledge you will be able to put together the right
path to the iso image when you try to start using the --cdrom option.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20171010234311.3yo5c4jxvsjjolzh%40thirdeyesecurity.org.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-06 Thread Person
Once again, dom0 did not reply. I took this as a sign that the iso was 
successfully copied, but the Standalone VM did not register something to boot 
from and I could not find it in the dom0 filesystem again. This puzzles me, 
because I am sure that the file was originally at the exact location I put in 
the command.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/488045c9-6a61-4c4c-a6f0-2e9d35434743%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-03 Thread Ron Hunter-Duvar

On 10/03/2017 09:37 PM, Person wrote:

Because the terminal didn’t respond with an error message, I am relatively sure 
that the ISO was successfully copied to dom0. Copying it to dom0 wasn’t a 
problem, really, but finding it in dom0 was. And the “find” commands don’t seem 
to work for finding in dom0.

In a dom0 terminal, the file should be in whatever directory you were in 
when you ran the qvm-run command, since you didn't specify a directory 
in the command you showed. If you didn't change directories first, that 
would either be /root if you were root or /home/user otherwise.


You should be able to find it (as root) by running:

# find /root /home -name '*.iso'

If it's not found in either of them, then you either put it somewhere 
else (like /tmp or /var/lib/qubes), or the copy didn't work.


As for what to do with it once it's copied, I can't help there at this 
point.


Ron

--
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/7d3a91a8-1853-4179-0b9c-9b05e4cfc171%40shaw.ca.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-03 Thread Person
Because the terminal didn’t respond with an error message, I am relatively sure 
that the ISO was successfully copied to dom0. Copying it to dom0 wasn’t a 
problem, really, but finding it in dom0 was. And the “find” commands don’t seem 
to work for finding in dom0.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/c3a982ed-7790-4a32-910e-a7f4f620ba29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-02 Thread Person
Apparently the brackets were one of my mistakes. My bad (and thank you for 
pointing that out).

I ran the copy-to-dom0 and attach-to-VM commands again, and dom0 didn’t 
respond. So I opened the Standalone VM and it didn’t register anything to boot 
from, even though I’m sure that I copied the ISO successfully to dom0. When I 
open the dom0 File System, from the Stanalone VM Boot Screen, I can’t find the 
ISO that I copied there.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/ba70a4d1-293d-48c7-b369-623ad10d3ca4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-02 Thread Unman
On Sun, Oct 01, 2017 at 09:41:03PM -0600, Ron Hunter-Duvar wrote:
> On 10/01/2017 06:59 PM, Person wrote:
> > The file was in Home/User/Downloads, and I did make sure to include the 
> > command. Also, the Ubuntu file did end in “.iso”.
> > 
> > I did run qvm-start in dom0. I believe I typed “qvm-start  
> > --cdrom=sys-net:/home/user/Downloads/”, or I 
> > did the same thing but replaced “Ubuntu” with “hvm”. (“Ubuntu” is the name 
> > of the standalone VM I made and wanted to attach the .iso to.)
> > 
> > As for the qvm-run error, I have no idea if I entered the location 
> > correctly or not. I typed “qvm-run --pass-io  'cat 
> > /home/user/Downloads/' > 
> > ubuntu-17.04-server-amd64.iso”.
> > 
> > I did copy the template to dom0, but I could not find it in dom0 (when I 
> > open the dom0 Boot Screen where stand-alone VMs look for things to boot 
> > from, I cannot find the template file there) and so was unable to install 
> > it in dom0. I did install Xenial in sys-net, but I couldn’t find the 
> > template when I looked at my list of VMs, even when I use the methods you 
> > listed.
> > 
> > I believe my main problem is copying the files to dom0 in general, because 
> > that is the only way I can make these files into VMs.
> > 
> You didn't actually type the angle brackets <> around the vm and file names,
> did you? If so, that would probably be your problem.
> 
> Ron
> 

Ron's right - the use of angle brackets is a convention to show that a
parameter is to be substituted by an actual value. You also see
underscores used: _qube name_

Dont type them._

Similarly you will see optional arguments in square brackets: like this-
qvm-start [options] 

The options are, well, optional - and you type a VALUE for the vmname:
qvm-start Ubuntu

I hope that's clear - if it is you *should* be able to finally get the
Ubuntu iso copied into dom0.

Finally, you really need to look again at the Qubes documentation. You
install Templates in dom0. So you will need to copy the Template you
downloaded to dom0 and then install it there. If you do that you WILL see
a template available which will allow you to create xenial qubes.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20171002232623.y4a4b5w2dn45ldr4%40thirdeyesecurity.org.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-01 Thread Ron Hunter-Duvar

On 10/01/2017 06:59 PM, Person wrote:

The file was in Home/User/Downloads, and I did make sure to include the 
command. Also, the Ubuntu file did end in “.iso”.

I did run qvm-start in dom0. I believe I typed “qvm-start  
--cdrom=sys-net:/home/user/Downloads/”, or I did the 
same thing but replaced “Ubuntu” with “hvm”. (“Ubuntu” is the name of the standalone VM I 
made and wanted to attach the .iso to.)

As for the qvm-run error, I have no idea if I entered the location correctly or not. I typed 
“qvm-run --pass-io  'cat 
/home/user/Downloads/' > 
ubuntu-17.04-server-amd64.iso”.

I did copy the template to dom0, but I could not find it in dom0 (when I open 
the dom0 Boot Screen where stand-alone VMs look for things to boot from, I 
cannot find the template file there) and so was unable to install it in dom0. I 
did install Xenial in sys-net, but I couldn’t find the template when I looked 
at my list of VMs, even when I use the methods you listed.

I believe my main problem is copying the files to dom0 in general, because that 
is the only way I can make these files into VMs.

You didn't actually type the angle brackets <> around the vm and file 
names, did you? If so, that would probably be your problem.


Ron

--
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/048d7722-a76d-ffce-a7b0-e5d0204e310a%40shaw.ca.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-01 Thread Person
The file was in Home/User/Downloads, and I did make sure to include the 
command. Also, the Ubuntu file did end in “.iso”.

I did run qvm-start in dom0. I believe I typed “qvm-start  
--cdrom=sys-net:/home/user/Downloads/”, or I did 
the same thing but replaced “Ubuntu” with “hvm”. (“Ubuntu” is the name of the 
standalone VM I made and wanted to attach the .iso to.)

As for the qvm-run error, I have no idea if I entered the location correctly or 
not. I typed “qvm-run --pass-io  'cat 
/home/user/Downloads/' > 
ubuntu-17.04-server-amd64.iso”.

I did copy the template to dom0, but I could not find it in dom0 (when I open 
the dom0 Boot Screen where stand-alone VMs look for things to boot from, I 
cannot find the template file there) and so was unable to install it in dom0. I 
did install Xenial in sys-net, but I couldn’t find the template when I looked 
at my list of VMs, even when I use the methods you listed.

I believe my main problem is copying the files to dom0 in general, because that 
is the only way I can make these files into VMs.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/c56d1916-eda6-4070-939e-c19fcbf2c189%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-10-01 Thread Unman
On Sat, Sep 30, 2017 at 08:31:52PM -0700, Person wrote:
> When I said “I can’t find Ubuntu in dom0”, I meant that I could find the file 
> in sys-net, but she. I copied it to dom0, I could not find the file in dom0, 
> even though the transferral received no error messages. I apologize for any 
> misunderstandings.
> 
> I added the XTerm to sys-net, and I used the find -name *iso command on that 
> terminal, but the terminal didn’t reply at all (I don’t know why). So 
> instead, I tried the
> “Qvm-start  --cdrom=sys-net:/home/user/Downloads/“ on both 
> dom0 and the sys-net XTerm, but the XTerm replied with “hvm: no such file or 
> directory” and dom0 replied with “syntax error near unexpected token 
> ‘newline’”. 
> 
> As for the command “qvm-run --pass-io  'cat 
> /home/user/Downloads/' > ubuntu_iso_name”, dom0 replies with 
> “sys-net: no such file or directory”.
> 
> Thank you for including the link to the Ubuntu Qubes templates, it will be so 
> much easier to get Ubuntu for Qubes. I already installed the Xenial template 
> (I know because I tried installing thrice), but unfortunately I can’t find it 
> anywhere on Qubes.
> 

You need to give more information:
WHERE is the file on sys-net? You say you can find it using Files - in
which directory is it to be found?
If you run a command and it gives no reply then the command has finished
without any output. In the case of 'find' it means that no file was
found - this suggests that EITHER the ubuntu image doesnt end in *iso
OR you ran the command somewhere where the file wasnt to be found.

qvm-start is a command to be run in dom0 - you say that you  got an
error message - what EXACTLY did you type?

The qvm-run error shows that you  have not yet found the location and
filename of the ubuntu image that you downloaded.

You say you downloaded a template and installed it - I assume that you
copied it to dom0 and installed it there?
When you say you "can't find it anywhere" what do you mean?
If you run in dom0 'qvm-ls' you should see an entry for xenial marked
Tpl - If you try to create a new VM then you should see xenial in the
list of availbale templates to use.
If neither is the case, please run this command in dom0:
'sudo dnf list installed|grep template' and confirm that the xenial
template is included in the output.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20171001144646.co4x7nhhm6ugqipq%40thirdeyesecurity.org.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-30 Thread Person
When I said “I can’t find Ubuntu in dom0”, I meant that I could find the file 
in sys-net, but she. I copied it to dom0, I could not find the file in dom0, 
even though the transferral received no error messages. I apologize for any 
misunderstandings.

I added the XTerm to sys-net, and I used the find -name *iso command on that 
terminal, but the terminal didn’t reply at all (I don’t know why). So instead, 
I tried the
“Qvm-start  --cdrom=sys-net:/home/user/Downloads/“ on both 
dom0 and the sys-net XTerm, but the XTerm replied with “hvm: no such file or 
directory” and dom0 replied with “syntax error near unexpected token 
‘newline’”. 

As for the command “qvm-run --pass-io  'cat 
/home/user/Downloads/' > ubuntu_iso_name”, dom0 replies with 
“sys-net: no such file or directory”.

Thank you for including the link to the Ubuntu Qubes templates, it will be so 
much easier to get Ubuntu for Qubes. I already installed the Xenial template (I 
know because I tried installing thrice), but unfortunately I can’t find it 
anywhere on Qubes.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/e33fe7c2-4a93-4fa3-a622-c93588d0ec9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-30 Thread Unman
On Fri, Sep 29, 2017 at 07:46:19PM -0700, Person wrote:
> I tried copying the Ubuntu ISO to dom0 instead of the standalone VM directly, 
> because the standalone VM only finds things to boot from in dom0.
> 
> I have not received any messages from Qubes that this transfer does not work, 
> but when I look in dom0, the Ubuntu file is gone.
> 

Have you read this?
https://www.qubes-os.org/doc/copy-from-dom0/
Make sure that you run the command correctly from a dom0 terminal.
qvm-run --pass-io  'cat /home/user/Downloads/' > 
ubuntu_iso_name

(I don't understand what you mean by "the Ubuntu file is gone.")

If you just want a ubuntu template, I've put some packaged templates
for xenial and zesty here:
http://qubes.3isec.org/Templates




-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20170930233323.vuenizmm6y6iqaes%40thirdeyesecurity.org.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-30 Thread Unman
On Sat, Sep 23, 2017 at 07:24:25PM -0700, Person wrote:
> I believe I downloaded to [sys-net] Downloads. I can find the file easily if 
> I just go to sys-net and click "Files".
> 
> However, I can't find the terminal you are speaking of in sys-net 
> specifically. I tried it on dom0 instead, but it doesn't work.
> 

Some basics:
You can add a shortcut to the menu using the "Add more shortcuts" option
for the qube. If you do this you will see an option for (at minimum)
xterm. This will give you a menu item to launch a terminal in your chosen
qube.
Alternatively, you can open a terminal in dom0 and use:
qvm-run  xterm
To open a terminal in the qube (add -a if the qube is not running and it
will automatically start.)

So much for the terminal.

You say you can find the file easily, but not where it is. I assume it's
in /home/user/Downloads
Then the command would be 
qvm-start  --cdrom=sys-net:/home/user/Downloads/

I don't understand what your final sentence means.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20170930232312.qadop2owqiewctmt%40thirdeyesecurity.org.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-29 Thread Person
I tried copying the Ubuntu ISO to dom0 instead of the standalone VM directly, 
because the standalone VM only finds things to boot from in dom0.

I have not received any messages from Qubes that this transfer does not work, 
but when I look in dom0, the Ubuntu file is gone.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/e446a267-6c3f-453d-8751-bb53c2f43aff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-27 Thread Person
On Sunday, September 24, 2017 at 10:24:25 AM UTC+8, Person wrote:
> I believe I downloaded to [sys-net] Downloads. I can find the file easily if 
> I just go to sys-net and click "Files".
> 
> However, I can't find the terminal you are speaking of in sys-net 
> specifically. I tried it on dom0 instead, but it doesn't work.

Is there any other way to install the server, or should I download a different 
operating system on the QVM instead?

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/7ce4f055-f43f-4df9-95ae-fdf5188e3615%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-23 Thread Person
I believe I downloaded to [sys-net] Downloads. I can find the file easily if I 
just go to sys-net and click "Files".

However, I can't find the terminal you are speaking of in sys-net specifically. 
I tried it on dom0 instead, but it doesn't work.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f3f288d5-d31f-47ae-a533-93a8a76acf24%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-14 Thread Unman
On Wed, Sep 13, 2017 at 05:40:48PM -0700, Person wrote:
> I tried again. The website qubes-os.org had instructions to enter this code: 
> --cdrom=[appvm]:[/path/to/iso/within/appvm] in dom0. How exactly do I find 
> the path to the ISO? 
> 

You said that you downloaded the iso on sys-net - where did you download
it TO?
If you really cant remember and you have many files on sys-net then you can use 
'find':
open a terminal in sys-net , 'find -name *iso' should do it.

unman

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20170914215807.xlwjs7gpsg2ql73f%40thirdeyesecurity.org.
For more options, visit https://groups.google.com/d/optout.


[qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-13 Thread Person
I tried again. The website qubes-os.org had instructions to enter this code: 
--cdrom=[appvm]:[/path/to/iso/within/appvm] in dom0. How exactly do I find the 
path to the ISO? 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/92c3dec5-dcaf-4c1c-9de1-f5f9addfcd79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[qubes-users] Error Creating Ubuntu VM in Qubes 3.2

2017-09-08 Thread Person
I wanted to have an Ubuntu VM, so I downloaded the ISO image in sys-net and 
created a QVM. When I attempt to start the QVM, it says there are no bootable 
devices, and there is a problem copying the file to dom0 so that I can boot 
from (it doesn't show up). I have tried running a command on the terminal, but 
it says that the directory doesn't exist.

Directly copying the ISO to the QVM doesn't work, because qrerex agent is not 
installed on it (I can't find any way to actually install it, too).

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/61d5cc0a-77c2-4db5-a45f-30e87b154fb2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.