Results 1 to 3 of 3

Thread: HOWTO: Final Guide for CD remastering. Inside KDE!

  1. #1
    Junior Member
    Join Date
    May 2005
    Posts
    5

    HOWTO: Final Guide for CD remastering. Inside KDE!

    This is a mix of tips and how-tos I gathered during the last weeks. Since there are too many tutorials, and some of them are old or incorrect I wanna make an easy and oriented one for anyone starting or for the guys with doubts remastering from CD.
    I tried with knoppix, whoppix, miniknoppix, feather and some other knoppix based distros I can't remember.

    Enjoy it.


    1) First I created the partitions: hda1 with 1gb for SWAP, and hda2 with ~6gb for ext3.

    2) Then I booted the live cd knoppix/feather/miniknoppix/<put your knoppix based distro name here>

    3) Become root
    sudo su

    4) Mounting partition
    mount -t ext3 /dev/hda2 /mnt/hda2

    5) Creating folders
    mkdir /mnt/hda2/source
    mkdir /mnt/hda2/source/KNOPPIX
    mkdir /mnt/hda2/master
    mkdir /mnt/hda2/master/KNOPPIX
    mkdir /mnt/hda2/master/boot
    mkdir /mnt/hda2/master/boot/isolinux

    6) Copying files
    cp –a /KNOPPIX/* /mnt/hda2/source/KNOPPIX
    cp /cdrom/boot/isolinux/* /mnt/hda2/master/boot/isolinux
    rm -f /mnt/hda2/source/KNOPPIX/etc/resolv.conf
    cp /etc/resolv.conf /mnt/hda2/source/KNOPPIX/etc/resolv.conf
    cp /etc/X11/XF86Config-4 /mnt/hda2/source/KNOPPIX/etc/X11/XF86Config-4

    6.1) To Edit BOOT LOGO read the post from "je" at:
    http://www.knoppix.net/forum/viewtopic.php?t=7


    7) Working inside the copied files (chroot)
    cd /mnt/hda2/source
    chroot KNOPPIX
    mount -t proc /proc proc

    8) Setting up the configurations to customise the distro inside X ;)
    cd /home
    cp -R /etc/skel knoppix
    chown -R knoppix.knoppix knoppix/
    vi /etc/X11/Xwrapper.config
    Change the line:
    allowed_users=console
    to:
    allowed_users=anybody

    9) Now lets use the default user "knoppix" instead root to customize KDE
    su knoppix
    cd /home/knoppix
    startx /usr/bin/startkde -- :1

    10) Now change anything you want inside kde


    11) Removing Stuff
    apt-get update
    apt-get remove --purge tetex-base
    apt-get remove --purge kde-18n-**
    apt-get remove --purge vim
    apt-get remove --purge emacs21
    apt-get remove --purge etc... and so on...
    rm -rf /usr/src/*
    rm -rf /usr/share/doc/*

    12) To install stuff..
    apt-get update
    apt-get install packagename

    13) Checking what we got installed. The next line will show in order what is installed and how big it is. We can remove them using: apt-get remove --purge packagename
    dpkg-query -W —-showformat='${Installed-Size} ${Package}\n' | sort -n

    14) Removing orphan packages (will remove useless stuff)
    deborphan | xargs apt-get -y —purge remove
    deborphan --find-config | xargs dpkg --purge

    14.1) Find out what is big by folders
    du -cb / | sort -n

    15) Restoring some options we changed before
    vi /etc/X11/Xwrapper.config
    Change the line:
    allowed_users=anybody
    to:
    allowed_users=console
    rm -fr /etc/X11/XF86Config-4
    vi /etc/resolv.conf
    Change:
    nameserver x.x.x.x
    to:
    #nameserver 127.0.0.1


    16) Getting back to console
    click on K (kde menu), LogOut, End Sesssion


    17) Restoring skel (default user) folders, configs, files to be restored when the live cd is made
    exit
    cd /home
    rm -rf /etc/skel
    mv knoppix/ skel
    mv skel /etc
    chown -R root.root /etc/skel

    18) Clear stuff and things we typed
    apt-get clean
    apt-get autoclean
    rm -f /etc/skel/.bash_history
    rm -f root/.bash_history


    19) Done. Let's get out from chroot and come back to the live cd we booted.
    umount /proc
    CTRL+d


    20) Lets create an image of what we have done
    mkisofs –R /mnt/hda2/source/KNOPPIX | create_compressed_fs –b – 65536 > /mnt/hda2/master/KNOPPIX/KNOPPIX

    21) And finally, let's create the .iso file
    cd /mnt/hda2/master
    mkisofs -pad -l -r -J -v -V "MyDistro" -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o MyDistro.iso /mnt/hda2/master/


    If you have anyother tips or errors/typos I did, please post it. Let's make a good guide that can be done for everyone and learn with the process.

  2. #2
    Junior Member
    Join Date
    Apr 2005
    Location
    Hong Kong
    Posts
    5
    Hi, I think I following similar procedure, (it actually the guide at http://www.knoppix.net/wiki/Remaster..._Install_HowTo ) to remaster from HDD install. However, once I burn the CD and try to boot the machine, while KDE starting, it ask me to login as the user I've created and there are many permission deny message. Most are skipable except:

    Could not start ksmserver. Check your installion.

    You don't have this problem? And there is user Knoppix in the system already???

  3. #3
    Junior Member
    Join Date
    May 2005
    Posts
    5
    Quote Originally Posted by carfield
    Hi, I think I following similar procedure, (it actually the guide at http://www.knoppix.net/wiki/Remaster..._Install_HowTo ) to remaster from HDD install. However, once I burn the CD and try to boot the machine, while KDE starting, it ask me to login as the user I've created and there are many permission deny message. Most are skipable except:

    Could not start ksmserver. Check your installion.

    You don't have this problem? And there is user Knoppix in the system already???
    I never had this problem. Are you changing users passwords?
    BTW, that wiki HOWTO is a remaster from the hdd, my howto is a remaster from cd.

    cheers

Similar Threads

  1. 5.0.1 remastering guide available?
    By johnnybhoy67 in forum Customising & Remastering
    Replies: 1
    Last Post: 10-12-2006, 01:04 PM
  2. HOWTO: Speedtouch USb (Idiots guide, by an idiot!)
    By sprinkles in forum Networking
    Replies: 25
    Last Post: 09-26-2006, 09:11 PM
  3. Replies: 2
    Last Post: 07-10-2004, 10:54 PM
  4. Addition to the remastering guide
    By kiko in forum Customising & Remastering
    Replies: 0
    Last Post: 11-28-2003, 06:07 AM
  5. How to? Final remastering cleanup
    By arkaine23 in forum Customising & Remastering
    Replies: 0
    Last Post: 11-12-2003, 05:04 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
  •  


Cisco GLC-FE-100FX-RGD 100BASE-FX SFP Transceiver Module picture

Cisco GLC-FE-100FX-RGD 100BASE-FX SFP Transceiver Module

$17.99



Lot of 10pcs Brocade 57-1000012-01 8Gbps SWL 850nm SFP+ Optical Transceivers picture

Lot of 10pcs Brocade 57-1000012-01 8Gbps SWL 850nm SFP+ Optical Transceivers

$19.00



Cisco Meraki MA-SFP-1GB-SX 1000BASE-SX SFP Transceiver Module picture

Cisco Meraki MA-SFP-1GB-SX 1000BASE-SX SFP Transceiver Module

$24.99



Cisco Meraki MA-SFP-10GB-SR 10G SFP+ SR 850nm 300m LC MMF picture

Cisco Meraki MA-SFP-10GB-SR 10G SFP+ SR 850nm 300m LC MMF

$29.99



Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03  picture

Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03

$8.00



SFP-10G-SR Original Cisco 10GBASE-SR SFP+ V02 Multi mode Transceiver 10-2415-02 picture

SFP-10G-SR Original Cisco 10GBASE-SR SFP+ V02 Multi mode Transceiver 10-2415-02

$5.00



Brand New Cisco GLC-LH-SMD 1000BASE-LX/LH SFP Module 1310nm 10km SMF LC picture

Brand New Cisco GLC-LH-SMD 1000BASE-LX/LH SFP Module 1310nm 10km SMF LC

$13.89



10Gbps 10GB SFP+SR transceiver for UniFi Switch 16 XG 16port Ubiquiti US-16-XG picture

10Gbps 10GB SFP+SR transceiver for UniFi Switch 16 XG 16port Ubiquiti US-16-XG

$10.99



10 PCS Cisco GLC-LH-SMD 10-2625-01 1310nm SFP Transceiver Module picture

10 PCS Cisco GLC-LH-SMD 10-2625-01 1310nm SFP Transceiver Module

$85.00



New HP HPE Aruba J9150D 10G SFP+ LC SR 850nm 300m MMF XCVR Transceiver Module picture

New HP HPE Aruba J9150D 10G SFP+ LC SR 850nm 300m MMF XCVR Transceiver Module

$49.99