[LEFT]Hi guys, we are at that time in the cycle when lots of keen but inexperienced users are going to be trying openSUSE for the first time, some of them new to linux altogether. Many of them will be using USB sticks, and some no doubt, will refer to this wiki:[/LEFT]
[LEFT]SDB:Live USB stick - openSUSE[/LEFT]
[LEFT]I usually use Imagewriter, but thought I would try another method this time (for no good reason, really, I have learned how to work around the “bug/feature” in imagewriter which makes USB unusable, by using dd).
Here are some thoughts on the wiki page, and some suggestions. I know I can edit wiki pages myself, but I thought best to run it past more expert members of the community first. I would welcome your comments and thoughts.
[/LEFT]
[LEFT]First, the user is sent to the download page for 12.2:
[/LEFT]
[LEFT]Index of /distribution/12.2/iso[/LEFT]
[LEFT]Or[/LEFT]
[LEFT]
~> aria2c -x5 http://download.opensuse.org/distribution/12.2/iso/openSUSE-12.2-KDE-LiveCD-x86_64.iso
[/LEFT]
[LEFT]Surely this should be directed to a generic download page, so he can make his choice.[/LEFT]
[LEFT]Secondly, the verification of download seems not to be very clear at all. Surely a simple instruction how-to find the SHA1 checksum, and compare it with the correct one would be preferable here?[/LEFT]
[LEFT]Verify a download integrity:[/LEFT]
[LEFT]~> gpg --recv-keys 9C800ACA[/LEFT]
[LEFT]~> wget http://download.opensuse.org/distribution/12.2/iso/openSUSE-12.2-KDE-LiveCD-x86_64.iso.asc[/LEFT]
[LEFT]~> gpg -a openSUSE-12.2-KDE-LiveCD-x86_64.iso.asc [/LEFT]
[LEFT]In the wiki page, we are instructed to "find what device it is" and are offered the following command to do so:[/LEFT]
[LEFT]~> su[/LEFT]
[LEFT]# grep -Ff <(hwinfo --disk --short) <(hwinfo --usb --short)[/LEFT]
[LEFT]This seems to be a rather convoluted command, and to a new user completely baffling, containing reversed redirects and parentheses . Surely a simple:[/LEFT]
[LEFT]
~> su -
# fdisk -l
would be a better start point?[/LEFT]
[LEFT]If the user has a multitude of USB drives attached, perhaps he should be advised at this point to unplug those not required, until he is 100% sure which he is going to overwrite.[/LEFT]
[LEFT]Next, shouldn’t there be some advice here to format the USB drive as VFAT?
[/LEFT]
[LEFT]When we come to writing our .iso image, we are advised in the text to issue:
[/LEFT]
[LEFT]# dd if=/path/to/downloaded.iso of=/dev/sdX[/LEFT]
[LEFT] But in the accompanying screenshot, the user has used dd_rescue, which could be confusing for our hypothetical noobie, especially as dd_rescue appears not to have a man. He has also, in the screenshot, used a relative path, which could also trip some people up.
[/LEFT]
[LEFT]Also on the wiki there is a suggestion to use:[/LEFT]
[LEFT]live-fat-stick and a link:
[/LEFT]
[LEFT]https://github.com/cyberorg/live-fat-stick[/LEFT]
[LEFT]Ths takes us to github, where it is not immediately clear what to do next, ie how to download the actual script. Should not the link perhaps be to the RAW page:[/LEFT]
[LEFT]https://raw.github.com/cyberorg/live-fat-stick/master/live-fat-stick[/LEFT]
[LEFT]Or better even, a wget command/link to download the script directly, and perhaps even to make it executable?[/LEFT]
[LEFT]Whilst using the live-fat-stick script, it throws a warning:[/LEFT]
[LEFT]/usr/bin/live-fat-stick: line 21: partition: command not found[/LEFT]
[LEFT] This is because of a missing # on that line.[/LEFT]
[LEFT]Also, a typo in “Requires first arguement as iso image path” This should be “argument”[/LEFT]
[LEFT]I don’t know how to do corrections to github things, could someone do those for me please?[/LEFT]