On 04/09/2024 15:17, Thomas Schmitt wrote:
I tried "*" for bullet list. But it works only for a single line,
not for a multi-line text paragraph as on
https://www.debian.org/CD/faq/#verify
I do not see anything special there. I have tried to convert to a bullet
a random paragraph from the new page and I do not see any issue with
generated HTML (in preview):
* To verify the downloaded ISO image file, compute the checksum of the
ISO image files by a tool such as "sha512sum" and "sha256sum".
A successful verification looks like the following program run.
(The $-sign is shown as example of the shell prompt, which might look
different on your system.):
{{{
$ grep ' debian-12.7.0-amd64-netinst.iso$' SHA512SUMS | sha512sum -c -
debian-12.7.0-amd64-netinst.iso: OK
}}}
Another paragraph
I now sent a proposal to debian...@lists.debian.org :
https://lists.debian.org/debian-cd/2024/09/msg00011.html
From my point of view, the proposed variant is too long for that huge
enough page.
Perhaps check_debian_iso should be put into a VCS.
"shellcheck -e SC2006" (to silence complains concerning ``) suggests
double quotes around "$file"
In /tmp/check_debian_iso line 153:
sum_from_file=`dd if=$file bs=2048 count=$blocks | $checksummer | head
-1 | awk '{print $1}'`
^---^ SC2086 (info): Double quote to prevent
globbing and word splitting.
On 03/09/2024 23:45, Thomas Schmitt wrote:
Interested people are invited to proof-read it
$ computed=$(dd if=/dev/sdc count=323072 bs=2048 | sha512sum | awk
'{print $1}')
Should the command line be prefixed with "#" instead since regular user
can not do it?
dd: failed to open '/dev/sdb': Permission denied
ls -l /dev/sdb
brw-rw---- 1 root disk 8, 16 Sep 4 17:27 /dev/sdb
On the other hand
$ sudo mount "$path_to_image_or_usb_device" "$mountpoint"
can be done as a regular user (an alternative is pmount)
udisksctl mount -b /dev/sdb1
or
udisksctl loop-setup -r --file debian-live-12.7.0-amd64-kde.iso
Mapped file debian-live-12.7.0-amd64-kde.iso as /dev/loop0.
udisksctl mount -b /dev/loop0p1
"d-live 12.7.0 kd amd64" is a bit weird from my point of view for the
mountpoint, but unfortunately udisksd logic is hardcoded.
udisksctl unmount -b /dev/loop0p1
udisksctl loop-delete -b /dev/loop0