On 09/25/2016 03:40 PM, jd1008 wrote:
On 09/25/2016 02:59 PM, Lawrence E Graves wrote:
On 09/25/2016 02:27 PM, jd1008 wrote:
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 _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org
Unless I did something wrong, that didn't work either. This the results:
[root@Jehovah ~]# dd if=<full-path-name-fedora25-iso> of=/dev/sd?? bs=16M -bash: full-path-name-fedora25-iso: No such file or directory [root@Jehovah ~]# dd if= full-path-name-fedora25-iso of=/dev/sd?? bs=16M dd: unrecognized operand ‘full-path-name-fedora25-iso’ Try 'dd --help' for more information. [root@Jehovah ~]# dd if=<full-path-name-fedora25-iso> of=/home/lawrence69/Downloads bs=16M -bash: full-path-name-fedora25-iso: No such file or directory [root@Jehovah ~]# [root@Jehovah ~]# dd if=<full-path-name-fedora25-iso> of=/home/lawrence69/Downloads bs=16M -bash: full-path-name-fedora25-iso: No such file or directory [root@Jehovah ~]# dd if= full-path-name-fedora25-iso of=/home/lawrence69/Downloads bs=16M dd: unrecognized operand ‘full-path-name-fedora25-iso’ Try 'dd --help' for more information. [root@Jehovah ~]# dd if=/dev/zero of=/dev/sd?? bs=16M dd: error writing '/dev/sd??': No space left on device 751+0 records in 750+0 records out 12598886400 bytes (13 GB, 12 GiB) copied, 3.37454 s, 3.7 GB/s [
You did NOT read and UNDERSTAND my message.
<full-path-name-fedora25-iso> means that you are to substitute it for the ACTUAL full pathname of the ACTUAL iso file. For example, on my machine, the pathname to a sample iso file is: /sdd1/Linux/Fedora/fc24/Fedora-Workstation-Live-x86_64-24-1.2.iso
and the pathname to the usb flash drive is /dev/sdd
So, you need to understand a little more about Linux lingo. _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org
That is what I have been saying from the beginning. I am good with the hardware and simple install software after that it become hard. If I am taken step by step I get it but I will not waste anyone's time trying to do that so I try to get a simple command or commands and pray it works. I truly thank you for your time today.