Results 1 to 9 of 9

Thread: Persistent image creation prompt

  1. #1
    Junior Member
    Join Date
    Jun 2010
    Posts
    5

    Persistent image creation prompt

    I'd like to change the text at the persistent image creation prompt, because some of the users of my live CD find it confusing. (It gives sizes with a suffix, e.g. "400MB", but if you type the size with a suffix, image creation fails silently. I want to change the prompt to make it clear that you have to type in a pure number.) The problem is I'm having trouble finding the script responsible for doing persistent image creation. I've looked at the knoppix init scripts in /etc/init.d, and tried grepping phrases from the prompt, but haven't had any success. Can someone point me in the right direction?

  2. #2
    Junior Member
    Join Date
    Jun 2010
    Posts
    5
    Oh, should have mentioned this is Knoppix v6.2.1.

  3. #3
    Senior Member registered user
    Join Date
    Feb 2010
    Posts
    512
    You can find the init script inside the initial ramdisk minirt.gz. If you need help to extract minirt.gz and recreate it then you should read http://www.knoppix.net/wiki/Knoppix_...up_script_text

  4. #4
    Junior Member
    Join Date
    Jun 2010
    Posts
    5
    Ah, thank you. I think that was the clue I needed.

  5. #5
    Senior Member registered user
    Join Date
    Dec 2009
    Posts
    423
    Quote Originally Posted by brodbd View Post
    I'd like to change the text at the persistent image creation prompt, because some of the users of my live CD find it confusing. (It gives sizes with a suffix, e.g. "400MB", but if you type the size with a suffix, image creation fails silently. I want to change the prompt to make it clear that you have to type in a pure number.)
    Why don't you change it to accept both 400 ***AND*** 400MB ?

    You can consider using sed to accomplish the job :-

    Code:
                   $ echo 400MB | sed "s/[^0-9]//g"
                    400
    Code:
                    $ echo 400MB | sed "s/[0-9]//g"
                    MB
    By using sed, you can extract the number portion of the user input. If the user input something else other than 400MB and 400, you might want to prompt for error.

  6. #6
    Moderator Moderator
    Join Date
    Jan 2010
    Location
    Asheville, NC, USA
    Posts
    528
    Quote Originally Posted by klaus2008 View Post
    You can find the init script inside the initial ramdisk minirt.gz. If you need help to extract minirt.gz and recreate it then you should read http://www.knoppix.net/wiki/Knoppix_...up_script_text
    Note: FWIW, the path has changed from
    Code:
    cd /mnt/hda1/knx/master/boot/isolinux
    to
    Code:
    cd /mnt-system/boot/syslinux/


    Cheers!
    Krishna

  7. #7
    Moderator Moderator
    Join Date
    Jan 2010
    Location
    Asheville, NC, USA
    Posts
    528
    Quote Originally Posted by kl522 View Post
    Why don't you change it to accept both 400 ***AND*** 400MB ?

    You can consider using sed to accomplish the job :-

    Code:
                   $ echo 400MB | sed "s/[^0-9]//g"
                    400
    Code:
                    $ echo 400MB | sed "s/[0-9]//g"
                    MB
    By using sed, you can extract the number portion of the user input. If the user input something else other than 400MB and 400, you might want to prompt for error.
    This seems like a good addition, esp. for newbies; the prompt could say "Enter size (MB):"

    Cheers!
    Krishna

  8. #8
    Junior Member
    Join Date
    Jun 2010
    Posts
    5
    Thanks for the suggestion. I may just do that. It would have the added benefit of working for any localization, too.

  9. #9
    Junior Member
    Join Date
    Jun 2010
    Posts
    5
    Here's my attempt at a patch. It now accepts "MB" and "GB" as units (non-case-sensitive) and will loop until it gets valid input, is canceled, or times out. I didn't attempt to add error messages because I only speak English, so I wouldn't be able to properly localize them.

    Code:
    --- /mnt/sda1/knx/master/boot/isolinux/minirtdir/init    2010-07-02 12:59:57.000000000 +0000
    +++ ./init    2010-07-02 12:48:10.000000000 +0000
    @@ -531,12 +531,23 @@
     }
     
     createdata(){
    - local rc size avail
    + local rc size sizein sizeunits avail
      avail="$(df -m /mnt-system | awk '{size=$4}END{print size - 1}')"
      [ "$avail" -ge 200 ] 2>/dev/null || return 2
    - runknoppixchroot /usr/bin/dialog --timeout 10 --inputbox "\n${CREATEIMG1}${avail}${CREATEIMG2}\n" 16 75 2>/tmp/knoppix.size; rc="$?"
    - read size </tmp/knoppix.size; rm -f /tmp/knoppix.size
    - [ "$rc" = "0" -a "$size" -ge 200  -a "$size" -le "$avail" ] 2>/dev/null || return 3
    + until [ "$size" -ge 200  -a "$size" -le "$avail" ] ; do
    +  runknoppixchroot /usr/bin/dialog --timeout 10 --inputbox "\n${CREATEIMG1}${avail}${CREATEIMG2}\n" 16 75 2>/tmp/knoppix.size; rc="$?"
    +  read sizein </tmp/knoppix.size; rm -f /tmp/knoppix.size
    +  [ "x$sizein" = "x" -o "$rc" != "0" ] && return 3
    +  size="$(echo $sizein | sed 's/[^0-9]//g')"
    +  sizeunits="$(echo $sizein | sed 's/[^A-Za-z]//g' | awk '{print toupper($1)}')"
    +  if [ "x$sizeunits" != "x" ] ; then
    +   if [ $sizeunits = "GB" ] ; then
    +    size=$(($size*1024))
    +   elif [ $sizeunits != "MB" ]; then
    +    size=0
    +   fi
    +  fi
    + done
      runknoppixchroot /usr/bin/dialog --yes-label "${ENCRYPT}" --no-label "${NO_ENCRYPT}" --defaultno --yesno "${QUESTION_ENCRYPT}" 16 75 2>/dev/null; rc="$?"
      [ -b /dev/loop0 ]    || mknod -m 755 /dev/loop0 b 7 0
      [ -d /KNOPPIX-DATA ] || mkdir -m 755 /KNOPPIX-DATA

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Commodore 1541-ii Disk Drive, Power Supply, Serial Cable, Box  Read Description picture

Commodore 1541-ii Disk Drive, Power Supply, Serial Cable, Box Read Description

$69.99



Commodore 1541 Disk Drive With Manuals (Refurbished) picture

Commodore 1541 Disk Drive With Manuals (Refurbished)

$50.00



Vintage retro Big Box PC Commodore Atari ULTIMA III EXODUS game CLOTH MAP picture

Vintage retro Big Box PC Commodore Atari ULTIMA III EXODUS game CLOTH MAP

$29.99



Vintage 1984 Commodore Plus 4 Computer w/ Cords Back Cover Missing D331 🤩😎 picture

Vintage 1984 Commodore Plus 4 Computer w/ Cords Back Cover Missing D331 🤩😎

$84.88



Commodore 64 1802 Monitor CRT Display - Read Description picture

Commodore 64 1802 Monitor CRT Display - Read Description

$160.00



Vintage Koala Pad Touch Tablet for Commodore 64 - Original Box/Manual/Cartridge picture

Vintage Koala Pad Touch Tablet for Commodore 64 - Original Box/Manual/Cartridge

$49.97



Commodore Computer VIC-1541 Single Disc Floppy Drive, with Users Manual untested picture

Commodore Computer VIC-1541 Single Disc Floppy Drive, with Users Manual untested

$39.00



Blue Chip Electronics Commodore Printer Interface C64 VIC20 - CardCo Centronics picture

Blue Chip Electronics Commodore Printer Interface C64 VIC20 - CardCo Centronics

$7.50



TeensyROM Cartridge for Commodore 64/128: MIDI, Fastload, Emulation, and Network picture

TeensyROM Cartridge for Commodore 64/128: MIDI, Fastload, Emulation, and Network

$65.00



Vintage Commodore 1084S-D1 Full Color 13

Vintage Commodore 1084S-D1 Full Color 13" Monitor CRT 64/128/PC/Amiga (Tested)

$299.99