For those of you following my continuing story ...... My HP 6730b Win7
Laptop (that I had installed MGA6 on) has died, sort of, before I got
around to installing MGA9 onto it.
However .... about six months ago, I purchased a New HP Win 11 Desktop computer ... so now I have to install MGA9, which I've downloaded, onto
it.
I had previously downloaded MGA9 and burnt it to DVD as the old Laptop
had a DVD drive .... however the new Desktop does NOT have a DVD drive,
just USB drives. So I need to get the MGA9 iso onto a Bootable USB
drive.
Has anybody got Win11 compatible instructions for
burning/coping/whatever a MGA9 iso file to a USB drive??
Or, hang on, I can still get to the MGA6 installation on the old Laptop
.... so I could use it to burn the Mageia9 (that I had previously
downloaded) to a USB drive.
So MGA9 burnt/copied on Win 11 to USB or on MGA6 to USB??
TIA.
For those of you following my continuing story ...... My HP 6730b Win7 Laptop (that I had installed MGA6 on) has died, sort of, before I got
around to installing MGA9 onto it.
However .... about six months ago, I purchased a New HP Win 11 Desktop computer ... so now I have to install MGA9, which I've downloaded, onto it.
I had previously downloaded MGA9 and burnt it to DVD as the old Laptop
had a DVD drive .... however the new Desktop does NOT have a DVD drive,
just USB drives. So I need to get the MGA9 iso onto a Bootable USB drive.
Has anybody got Win11 compatible instructions for burning/coping/
whatever a MGA9 iso file to a USB drive??
Or, hang on, I can still get to the MGA6 installation on the old
Laptop .... so I could use it to burn the Mageia9 (that I had previously downloaded) to a USB drive.
So MGA9 burnt/copied on Win 11 to USB or on MGA6 to USB??
TIA.
On Sun, 26 Jan 2025 02:03:24 -0500, Daniel70
<daniel47@eternal-september.org> wrote:
On 26/01/2025 2:02 am, Markus Robert Kessler wrote:<snip>
cat /install/mga9x64.iso > /dev/sdb
Of cource you have to be sure to address the right device, assuming
here that sdb is your first USB stick.
Good thought, Markus .... but, as the other two devices I have
connected by USB are my Keyboard and my Mouse, I don't THINK I can do
too much damage!! ;-P
The dev/sd? entries are for disk drives. Doesn't matter if they are ide, sata, usb, etc.
Make sure you know which /dev/sd? entry is for what, or you may
overwrite your disk drive.
That's one of the reasons to use isodumper. It only shows usb drives.
The following script will show just usb drives ...
$ cat /home/dave/bin/listusbdrives #!/bin/bash
for block in $(tree -if /sys/devices|grep usb|grep
/block/sd[a-z]$); do
device=${block##*/} # strip last slash and everything before
it.
printf '%s\n' "$device"
done
Regards, Dave Hodgins
On Mon, 27 Jan 2025 03:02:23 -0500, Daniel70 <daniel47@eternal-september.org> wrote:
On 27/01/2025 3:47 am, David W. Hodgins wrote:<snip>
The following script will show just usb drives ...
$ cat /home/dave/bin/listusbdrives
#!/bin/bash
for block in $(tree -if /sys/devices|grep usb|grep
/block/sd[a-z]$); do
device=${block##*/} # strip last slash and everything before
it.
printf '%s\n' "$device"
done
I'm guessing I'd have to adjust the /home/ *dave* /bin bit first!! ;-P
Yeah. What the above is showing is a script I wrote on my computer.
You'll need to create
the file in your ~/bin directory, copy/paste the script and save it,
then run
"chmod a+x ~/bin/listusbdrives" to make it executable.
Regards, Dave Hodgins
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 482 |
Nodes: | 16 (3 / 13) |
Uptime: | 61:31:26 |
Calls: | 9,569 |
Calls today: | 3 |
Files: | 13,663 |
Messages: | 6,143,523 |