On Thu, Jun 15, 2017 at 6:49 PM, Taylor Eisman <[email protected]>
 wrote:

> I've been having trouble writing a file to a folder on Linux - Ubuntu.
> I've attached a screenshot of the error below. If you have any further
> questions, please ask!
>

For the future — It's better to copy and paste the text rather than a
screenshot. Some errors are best investigated by running parts of the
program, and plain text is usually easier to read (or make readable).

In your case, at least one problem is that you have a "~" in your path. "~"
is not part of regular pathname syntax — it is a special character in the
standard *shell, *just like "$" is for variables, but it means nothing to
other programs. So the error is probably because you don't have a directory
actually named "~".

You should replace the "~" with a literal path ("/home/eisman/" or whatever
your home directory actually is).

On Thu, Jun 15, 2017 at 3:54 PM, Taylor Eisman <[email protected]>
wrote:

> Oh, I forgot! Is it possible to run GNURadio in SUDO mode? I'm considering
> it a possibility that the reason it's getting hung up on this line is that
> of the lack of administrator rights. GNURadio was installed via the PyBOMBS
> method.
>

This is a very bad habit of thinking. Don't run something as root *until
you understand why you need to*, and especially not complex programs like
GNU Radio.
_______________________________________________
Discuss-gnuradio mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to