Results 1 to 7 of 7

Thread: Anyone do a remaster on 5.0.1 CD release yet?

  1. #1
    Junior Member registered user
    Join Date
    Jan 2005
    Posts
    12

    Anyone do a remaster on 5.0.1 CD release yet?

    I'm about to begin a remaster of the CD release of 5.0.1, was curious if anyone has remastered 5.0.1 yet and discovered any potential gotchas with this new release that differ from the remaster from menu based scripts howto.

    Thanks

  2. #2
    Member registered user
    Join Date
    Jun 2004
    Posts
    89
    You need to pay attention to the modules subdirectory, which is new. A script to get the source onto your HD follows. Run it as user knoppix, while you are running knoppix.

    Code:
    #!/bin/bash
    # 1-CopySourceForRemaster copy the CD to HD for remastering
    
    PATH="/bin:/sbin:/usr/bin:/usr/sbin"
    export PATH
    
    XDIALOG_HIGH_DIALOG_COMPAT=1
    export XDIALOG_HIGH_DIALOG_COMPAT
    
    # Get root
    [ "`id -u`" != "0" ] && exec sudo "$0" "$@"
    
    TMP="/tmp/saveconfig.tmp$$"
    
    bailout(){
    rm -f "$TMP" "$TMP.done" "$TMP.err"
    echo ""
    echo "Done"
    exit 0
    }
    
    DIALOG="dialog"
    [ -n "$DISPLAY" ] && [ -x /usr/bin/Xdialog ] && DIALOG="Xdialog"
    
    trap bailout 1 2 3 15
    
    # LANGUAGE etc.
    [ -f /etc/sysconfig/knoppix ] && . /etc/sysconfig/knoppix
    [ -z "$LANG" ] && export LANG
    [ -z "$LANGUAGE" ] && export LANGUAGE
    [ -z "$CHARSET" ] && export CHARSET
    
    DESKTOPKB="$(du -sk $HOME/Desktop 2>/dev/null | awk '{print $1}')"
    
    
    TITLE1="ParallelKnoppix: Copy source to HD for remastering"
    MESSAGE1="Select a hard disk partition on which the source should be copied.
    A directory called parallel_knoppix_remaster will be created at the root level
    of that partition. Which partition would you like to use? (about 2GB free space is needed)"
    ERROR="That didn't work!"
    
    
    # Directory selector
    PARTITIONS=""
    for i in `awk '/^\/dev\/[hs]d[a-z].*\/media\/[hs]d[a-z]/{if(!/ntfs/){print $2}}' /etc/fstab`; do
    PARTITIONS="$PARTITIONS ${i} [Disk/Partition] off"
    done
    
    
    rm -f "$TMP"
    Xdialog --clear --title "$TITLE1" --radiolist "$MESSAGE1" 18 75 9 $PARTITIONS 2>"$TMP" || bailout
    
    ParKnoppixPART="$(<$TMP)"
    [ -z "$ParKnoppixPART" -o ! -e "$ParKnoppixPART" ] && bailout
    
    
    # mount the partition requested
    rm -f "$TMP.err"
    mount | grep -q "$ParKnoppixPART" || mount -r "$ParKnoppixPART" >"$TMP.err"
    [ "$?" != "0" ] && { $DIALOG --title "$TITLE1" --msgbox "$ERROR `cat $TMP.err`" 10 75; bailout; }
    mount | grep -q "$ParKnoppixPART.*ntfs" && { $DIALOG --title "$TITLE1" --msgbox "$ERROR NTFS" 10 75; bailout; }
    mount -o remount,rw "$ParKnoppixPART"
    
    
    # create the ParKnoppixPART, etc
    mkdir $ParKnoppixPART/parallel_knoppix_remaster
    export ParKnoppixDIR=$ParKnoppixPART/parallel_knoppix_remaster
    
    # get rid of old, if it exists
    rm -R -f $ParKnoppixDIR
    
    # copy the new
    mkdir $ParKnoppixDIR
    mkdir $ParKnoppixDIR/source
    mkdir $ParKnoppixDIR/source/KNOPPIX
    mkdir $ParKnoppixDIR/master
    mkdir $ParKnoppixDIR/master/KNOPPIX
    mkdir $ParKnoppixDIR/master/boot
    cp -a /cdrom/boot/ $ParKnoppixDIR/master/
    cp -a /cdrom/KNOPPIX/modules $ParKnoppixDIR/master/KNOPPIX
    cp -Rp /KNOPPIX/* $ParKnoppixDIR/source/KNOPPIX
    
    echo "Finish configuring desktop, then reboot normal distro"
    echo "and proceed to chroot activities"
    
    
    # final report
    SUCCESS="OK, the Knoppix source is now on the HD, ready for remastering"
    $DIALOG --title "$TITLE1" --msgbox "$SUCCESS" 12 65
    
    bailout

  3. #3
    Junior Member registered user
    Join Date
    Jan 2005
    Posts
    12
    Thanks for the script.

    Can you elaborate a little more as to when to execute the script? Normally what I do is boot knoppix 2, then at the prompt, mount my HD partition, and wget the latest menu scripts from: debian.tu-bs.de "remaster 0.1-6.tar.gz" untar, and then execute the ./knoppix-remaster script.

    Is what you provided a replacement to that script? or something that needs to be done in addition to this step?

    Thanks.

  4. #4
    Member registered user
    Join Date
    Jun 2004
    Posts
    89
    This script is to be run while you are booted up in Knoppix. It's a replacement for the other script you mention, and it's not necessarily better. It does work with Knoppix 5.0.1, though. The only new thing is the modules directory, this will probably be taken care of in the scripts you usually use, if it hasn't been done already. You can see how I use my script at http://pareto.uab.es/mcreel/Parallel...dvanced_topics

  5. #5
    Junior Member
    Join Date
    Jan 2006
    Location
    Ocala, Fla
    Posts
    3

    More Info please

    mcree,
    I dropped in on your website and attempted to see how you use the script.
    The Script you attached appears to be only a small part of the RE-master process.
    I was unable to see the rest of the process. Can you elaberate?
    Your post says
    .. to be run while booted up in Knoppix
    Does that mean Live CD?

    kantana,
    I also looked at the remaster 0.1-6 script. I grabbed and installed the .deb version of the script. After working with it for awhile I was unable to generate an iso file.

    It may be that I am going at it the wrong way. I am trying to create a CD of a system that has been installed to HD. I have been able to remaster Knoppix 3.7 without any problems. I have been using and older version of the remaster script, which doesn't look anything like this latest one.

    Thanks.

  6. #6
    Member registered user
    Join Date
    Jun 2004
    Posts
    89
    That script above is meant to be used while running the live CD, not after a HD install. It only gets the source for the remaster onto your hard disk. You need to do chroot activities, etc., from your normal distro. The ParallelKnoppix CD uses this script and 2 others to do remastering. The second takes care of chroot, and the 3rd creates the ISO image. I guess that the more general purpose scripts take care of all of this now. M.

  7. #7
    Junior Member
    Join Date
    Jan 2006
    Location
    Ocala, Fla
    Posts
    3
    Thanks for your reply.

    I have been approching this from the other end, from the HD install.
    Out of curiosity, I dropped in @ OSS Watch and looked over their How-to use Knoppix-Remaster. http://www.oss-watch.ac.uk/resources...ixremaster.xml

    I think that I'll give the Remaster from Live CD a try.

Similar Threads

  1. New Release?
    By jefro in forum The Lounge
    Replies: 4
    Last Post: 03-06-2009, 04:43 PM
  2. New V3.3-2003-11-03 release
    By baldyeti in forum News
    Replies: 29
    Last Post: 12-03-2003, 03:20 AM
  3. NEW RELEASE???
    By Ritchie in forum The Lounge
    Replies: 0
    Last Post: 11-02-2003, 10:57 PM
  4. QTParted is on the 04-28 release
    By aay in forum The Lounge
    Replies: 0
    Last Post: 05-03-2003, 04:29 AM
  5. 2002-12-10 release is out
    By aay in forum News
    Replies: 1
    Last Post: 12-11-2002, 07:18 AM

Posting Permissions

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


Grandstream GS-HT802 2 Port Analog Telephone Adapter VoIP Phone & Device, Black picture

Grandstream GS-HT802 2 Port Analog Telephone Adapter VoIP Phone & Device, Black

$32.00



NEW Polycom VVX 501 VoIP IP Phone & Stand Tested VVX501 2200-48500-019 Lync picture

NEW Polycom VVX 501 VoIP IP Phone & Stand Tested VVX501 2200-48500-019 Lync

$43.98



Grandstream WP820 Portable Wi-Fi Phone Voip Phone Device Rechargeable 1500Mah picture

Grandstream WP820 Portable Wi-Fi Phone Voip Phone Device Rechargeable 1500Mah

$67.31



Polycom VVX 411 VoIP IP Phone & Stand Tested Reset VVX411 2201-48450-001 picture

Polycom VVX 411 VoIP IP Phone & Stand Tested Reset VVX411 2201-48450-001

$19.98



Cisco CP-7945G VOIP Phone With Stand & Handset Business IP Phone 7945 picture

Cisco CP-7945G VOIP Phone With Stand & Handset Business IP Phone 7945

$3.00



New Cisco 7945G IP VoIP Gigabit GIGE Telephone Phone CP-7945G -  picture

New Cisco 7945G IP VoIP Gigabit GIGE Telephone Phone CP-7945G -

$24.95



Yealink SIP-T54W W/ HD Display Business VoIP Phone w/ Built-in Bluetooth and POE picture

Yealink SIP-T54W W/ HD Display Business VoIP Phone w/ Built-in Bluetooth and POE

$69.99



Yealink SIP-T54W IP VoIP Phone & Stand PoE Warranty Wireless No Power Scratches picture

Yealink SIP-T54W IP VoIP Phone & Stand PoE Warranty Wireless No Power Scratches

$49.98



Grandstream HT801 Single-Port Analog Telephone Adapter picture

Grandstream HT801 Single-Port Analog Telephone Adapter

$34.00



Polycom VVX 250 Business IP Phone with 2.8 in. Color Display & Ethernet, Black picture

Polycom VVX 250 Business IP Phone with 2.8 in. Color Display & Ethernet, Black

$39.99