On 09/25/2016 02:17 PM, Lawrence E Graves wrote:
On 09/25/2016 01:54 PM, jd1008 wrote:
On 09/25/2016 01:41 PM, Lawrence E Graves wrote:
On 09/25/2016 01:38 PM, jd1008 wrote:
On 09/25/2016 01:14 PM, Lawrence E Graves wrote:
On 09/25/2016 01:01 PM, jd1008 wrote:
On 09/25/2016 12:50 PM, Lawrence E Graves wrote: > > > On 09/25/2016 12:45 PM, Ahmad Samir wrote: >> On 25 September 2016 at 18:06, Lawrence E Graves >> lgraves95@gmail.com wrote: >>> This the results of what you just told me. Hope it makes sense >>> to you. >>> >>> [root@Jehovah ~]# /usr/bin/liveusb-creator >>> file:///usr/lib64/qt5/qml/QtQuick/Controls/ComboBox.qml:560:5: >>> QML Menu: >>> Binding loop detected for property "__selectedIndex" >>> QOpenGLShaderProgram: could not create shader program >>> QOpenGLShader: could not create shader >>> QOpenGLShader: could not create shader >>> shader compilation failed: >>> >>> QOpenGLShaderProgram::uniformLocation( matrix ): shader >>> program is not >>> linked >>> QOpenGLShaderProgram::uniformLocation( opacity ): shader >>> program is not >>> linked >>> QOpenGLShaderProgram: could not create shader program >>> QOpenGLShader: could not create shader >>> QOpenGLShader: could not create shader >>> shader compilation failed:"" >>> >> A shot in the dark, try running it as user, not root: >> liveusb-creator_polkit >> >> this should show a polkit dialogue where you have to type your >> root >> password to authenticate. >> _______________________________________________ >> users mailing list -- users@lists.fedoraproject.org >> To unsubscribe send an email to >> users-leave@lists.fedoraproject.org > This is what happen when I did what you asked. > > file:///usr/lib64/qt5/qml/QtQuick/Controls/ComboBox.qml:560:5: > QML Menu: Binding loop detected for property "__selectedIndex" > QOpenGLShaderProgram: could not create shader program > QOpenGLShader: could not create shader > QOpenGLShader: could not create shader > shader compilation failed: > ... When I run liveusb-creator as root:
# liveusb-creator Qt: Session management error: None of the authentication protocols specified are supported /org/freedesktop/UDisks2/block_devices/sdb
and the GUI interface pops up and it works. _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org
I get the same results. It doesn't make sense to me. I have never had any trouble with it before.
I think the problem might be that liveusb-creator is trying to communicate with /bin/dbus-daemon and fails. _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org
Is there a way to fix that or will I have to wait until they fix it with an update?
I should have also asked: are you at liberty to say in more detail what you want to put on the USB? For example, is it an iso file? a directory of software including the boot sector, ...etc _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org
Yes, I was trying to load a usb drive with Fedora 25 Alpha to try it out.
In that case, assuming your USB has enough room, all you need to do is sudo dd if=<full-path-name-fedora25-iso> of=/dev/sd?? bs=16M
where /dev/sd?? is the pathname to the usb device. Notice that '<' and '>' are not part of the iso file pathname.
If some time later you want to make use of the USB as an ordinary disk (for read and write), all you need do is sudo dd if=/dev/zero of=/dev/sd?? bs=16M where /dev/sd?? is the pathname to the usb device.
Reason why you neeed to dd /dev/zero into the usb device if you want to read/write it as a regular disk, is that after you dd the iso image into it, fedora will only recognize it as a read only optical device.
Good luck