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
  •  


Gigabyte Aorus Ultra Durable B550 AORUS ELITE AX V2 Desktop Motherboard picture

Gigabyte Aorus Ultra Durable B550 AORUS ELITE AX V2 Desktop Motherboard

$29.94



ASRock B550M Pro SE AM4 DDR4 SATA 6Gb/s 1 PCIe 4.0 x16 Micro ATX Motherboard picture

ASRock B550M Pro SE AM4 DDR4 SATA 6Gb/s 1 PCIe 4.0 x16 Micro ATX Motherboard

$84.99



ASRock Z170M-ITX/ac LGA 1151 Intel Z170 HDMI  USB 3.0 Mini ITX Intel Motherboard picture

ASRock Z170M-ITX/ac LGA 1151 Intel Z170 HDMI USB 3.0 Mini ITX Intel Motherboard

$49.99



MSI H81M-P33 Desktop Motherboard Intel MicroATX Socket LGA1150 USB 3.0 W/IO picture

MSI H81M-P33 Desktop Motherboard Intel MicroATX Socket LGA1150 USB 3.0 W/IO

$26.99



Gigabyte GA-Q170M-D3H-GSM LGA1151 DDR4 Desktop Motherboard  (No  I/O Plate) picture

Gigabyte GA-Q170M-D3H-GSM LGA1151 DDR4 Desktop Motherboard (No I/O Plate)

$39.99



Asus Prime H310M-A R2.0 Intel LGA 1151 DDR4 Desktop Motherboard picture

Asus Prime H310M-A R2.0 Intel LGA 1151 DDR4 Desktop Motherboard

$54.99



Asus H81M-C Intel LGA1150 DDR3 Desktop Motherboard MicroATX Socket H3  picture

Asus H81M-C Intel LGA1150 DDR3 Desktop Motherboard MicroATX Socket H3

$23.99



Gigabyte Z370P D3 ATX Z370 LGA1151 Motherboard (Support Intel 6/7th 8th 9th) picture

Gigabyte Z370P D3 ATX Z370 LGA1151 Motherboard (Support Intel 6/7th 8th 9th)

$59.99



MSI PRO B650-P WiFi AMD AM5 DDR5 WiFi 6E ProSeries Motherboard picture

MSI PRO B650-P WiFi AMD AM5 DDR5 WiFi 6E ProSeries Motherboard

$107.30



Gigabyte M-ATX motherboard with Intel Core i3 8100 CPU and 8GB DDR4 RAM picture

Gigabyte M-ATX motherboard with Intel Core i3 8100 CPU and 8GB DDR4 RAM

$84.00