Hi Lawrence.
I had the same problem.
https://riverbankcomputing.com/pipermail/pyqt/2014-January/033681.html
from liveusb import _
you have to add the line
"from OpenGL import GL"
It will look like
import os
import sys
from OpenGL import GL
from liveusb import _
On Sun, Sep 25, 2016 at 9:15 PM, fred roller <fredroller66@xxxxxxxxx> wrote:
[root@Jehovah Downloads]# dd if=Fedora-Workstation-Live-x86_64-25_Alpha-2.iso of=/dev/sda1 bs=16M
dd: error writing '/dev/sda1': No space left on device
32+0 records in
31+0 records out
524288000 bytes (524 MB, 500 MiB) copied, 1.26722 s, 414 MB/sLawrence, for installing based on the information above try:dd if=./Fedora-Workstation-Live-x86_64-25_Alpha-2.iso of=/dev/sda bs=1M status=progress for your understanding... the "./" in front of the filename notes your location to the system as "in my current directory" but irregardless the illegal operand came from the space between the "=" and the "F" in your second attempt. The first failure of running out of space is because dd was directed to a partition sda1. Also, be sure this is your usb drive, my experience is that sda is usually the hard drive. Broken down sda1 is: "sd"=serial device,"a" [or b,c,d,e,f, etc] is the devices in sequence as discovered, "1" [or 2,3,4, etc] are the partitions on the device. With that try the following command WITHOUT the usb plugged in:ls /dev/sd*which should give you something like:/dev/sda /dev/sda1 /dev/sda2 /dev/sda3Then re-run the same command WITH the usb plugged in which should give you something like:/dev/sda /dev/sda1 /dev/sda2 /dev/sda3 /dev/sdb /dev/sdb1This last letter to appear is the one you want and without the number. So be REAL sure you have your usb device letter correct and:dd if=./Fedora-Workstation-Live-x86_64-25_Alpha-2.iso of=/dev/sdb bs=1M status=progress will work.If you want to easily understand the command line I suggest you go through this quick course:It is a great primer for understanding all we are talking about and can be done in about an evening.Caution: "dd" is an aggressive program so be sure of the variables you writing to in the "of=" parts of the command. Also, the "status=progress" part is optional, lets you see your progress of the command.HTHFred
_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@lists.fedoraproject.org
--
------------------------------
/\_/\
|O O| pepebuho@xxxxxxxxx
~~~~ Javier Perez
~~~~ While the night runs
~~~~ toward the day...
m m Pepebuho watches
from his high perch.
/\_/\
|O O| pepebuho@xxxxxxxxx
~~~~ Javier Perez
~~~~ While the night runs
~~~~ toward the day...
m m Pepebuho watches
from his high perch.
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx