Results 1 to 10 of 10

Thread: stupid stupid stupid knoppix

  1. #1
    Junior Member registered user
    Join Date
    Jul 2003
    Posts
    14

    stupid stupid stupid knoppix



    I remastered koppix more than 4 times in 2 days

    every time I custom the KDE,Mozilla Bookmark , Openoffice, and other and then I copy them to

    /etc/skel/ (and even to /usr/share/knoppix/profile) but It still create a new home for knoppix with the default settings (not with /etc/skel)

    I searched the forum but I can't find any good solution ( I change the line
    Code:
     \cp /etc/skel/{.kde*,Desktop}  $HOME/
    to
    Code:
     \cp /etc/skel/{.kde*,Desktop,.m*,.x*,.n*}  $HOME/
    in /etc/X11/Xsesson.d/45sesson
    but I still get th default settings


    Any help pleaaaaseee

  2. #2
    Junior Member
    Join Date
    Aug 2003
    Posts
    2
    I'm no knoppix master but your second code line should work i believe.
    Are you sure you didn't forget anything as simple as permissions, configfiles already in homedir or something like that? I has happend to me and it can be very annoying...

  3. #3
    Junior Member registered user
    Join Date
    Jul 2003
    Posts
    14
    Yes I am sure that code will work but it didn't work

    I try to many things but I still get the default settings (permissions is ok)

  4. #4
    Junior Member
    Join Date
    Aug 2003
    Posts
    1

    Re: stupid stupid stupid knoppix

    Quote Originally Posted by MrAhmad
    every time I custom the KDE,Mozilla Bookmark , Openoffice, and other and then I copy them to

    /etc/skel/ (and even to /usr/share/knoppix/profile) but It still create a new home for knoppix with the default settings (not with /etc/skel)

    I searched the forum but I can't find any good solution
    Any help pleaaaaseee
    First things first:

    1) when you boot, are the files in /etc/skel at least?

    Anyhow, I've had a similar problem and resolved the following way (supposing, you're already CHROOTed!):

    1) copy all the files you wish to be in /home/USER to /opt/
    2) Create a scripts directory inside /opt
    Code:
    mkdir /opt/startup_scripts
    3) create the init script to copy the files
    Code:
    touch /etc/init.d/copy_home_files
    4) copy_home_files content
    Code:
    #!/bin/sh
         case "$1" in
              start)
                     echo -n "Starting COPY FILES TO HOME DIRECTORY"
                            start-stop-daemon --start --quiet --exec /opt/startup_scripts/startup.sh \
                                                     -- $PARAMS
                                                            echo "."
                                                                   ;;
                                                                                             *)
                                                                                            echo "Usage: /etc/init.d/copy_home_files " \
                                                                                                  " {start}" >&2
                                                                                                 exit 1
                                                                                                ;;
                                                                                             esac
                                                                                          
                                                                                          exit 0
    5) Now lets make the actual script
    Code:
    touch /opt/startup_scripts/startup.sh
    6) startup.sh content
    Code:
    #!/bin/sh
    cp -R /opt/xml /home/knoppix
    chown -R knoppix:knoppix /home/knoppix/xml
    cp -R /opt/.mozilla /home/knoppix
    chown -R knoppix:knoppix /home/knoppix/.mozilla
    cp -R /opt/jakarta-tomcat-4.1.27 /home/knoppix
    chown -R knoppix:knoppix /home/knoppix/jakarta-tomcat-4.1.27
    mkdir /home/knoppix/.icewm
    echo "#!/bin/bash
    mozilla
    " > /home/knoppix/.icewm/startup
    chown knoppix:knoppix /home/knoppix/.icewm/startup
    chmod 755 /home/knoppix/.icewm/startup
    you get the picture... (this is my actual script!)

    7) and finally, we add the startup script to the boot process by
    Code:
    update-rc copy_home_files defaults > /dev/null
    THERE!!! Now when your system (on the cd) boots, your files should be copied from /opt/WHATEVER_FILES to /home/USER/...

    Good luck!

    enrolado

  5. #5
    Senior Member registered user
    Join Date
    Nov 2002
    Posts
    100
    I dont think knoppix is the one thats stupid.

    [edit] But I can understand how it made you say that.You spend countless hours trying to build the dream cd and it dont do as expected.Grrrrrr.

  6. #6
    Junior Member registered user
    Join Date
    Jul 2003
    Posts
    14
    Thank you enrolado for the script

    I will try it today


    and I think Knoppix must fix this problem in the next release (Its very bad not to use /etc/skel like all other dist.)

  7. #7
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479
    Quote Originally Posted by MrAhmad
    (Its very bad not to use /etc/skel like all other dist.)
    It uses /etc/skel when it is copied to the HD and creating new users so it is just an issue with the re-mastering process and not knowing where the files are created therein.

  8. #8
    Junior Member registered user
    Join Date
    Jul 2003
    Posts
    14
    Thanks enrolado

    Very very very nice scripts

    I think you have to write this tips in Tips Forum

    BTW : remember to chmod (0755) the files /etc/init.d/copy_home_files and /opt/startup_scripts/startup.sh

  9. #9
    Junior Member
    Join Date
    Sep 2004
    Posts
    1
    Hi.
    I have copy_home_files in /etc/init.d, chmod 755 for /etc/init.d/copy_home_files and /opt/startup_scripts/startup.sh etc ..

    and I did:

    update-rc.d copy_home_files defaults > /dev/null


    But there is a problem, because this script is running also after HD install (not only LiveCD) ..

    Maybe should I add copying these files to
    /etc/X11/Xsession.d/45xsession file ?

    thanks for help.
    Regards,
    Pablo

  10. #10

    Only 4 times in 2 days ? That's just the very beginning ;-)

    I think I had a count of my Knoppix Remasters at one time.

    Then things get fuzzy and I wandered through the valleys of darkness for many days.

    After-which... the clouds parted and the rain stopped...

    An important part of the way 45xsession (which is the script that copies the files into the $HOME directory) works seems to be based on chmod g+s in the structure of any directories that need to be recursively copied. I think this is because the script runs with permissions of the staff user which is not a member of the users nor the root group.

    So, when I wanted to change the default home directory... I would chmod -R 755 any directories I wanted to copy ( like .firefox ) and then chmod -R g+s those same directories.

    Then in the file copy section of 45xsession I added similar lines to enrolado's script ( ie cp -R /etc/skel/.firefox $HOME 2>/dev/null ) That's about line 63 in /etc/X11/Xsession.d/45xsession

    G

Similar Threads

  1. This is going to sound really stupid
    By pf123 in forum General Support
    Replies: 3
    Last Post: 09-28-2004, 05:53 PM
  2. I'm stupid, help me please
    By osaria in forum General Support
    Replies: 3
    Last Post: 09-09-2004, 05:54 PM
  3. Stupid question about remastering.
    By spite in forum Customising & Remastering
    Replies: 2
    Last Post: 10-07-2003, 02:53 PM
  4. This will sound really stupid...
    By Ander in forum General Support
    Replies: 2
    Last Post: 06-26-2003, 10:54 PM
  5. A word from the stupid :p
    By Gandalf_Grey_ in forum Customising & Remastering
    Replies: 2
    Last Post: 01-23-2003, 02:44 PM

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 SG300-52-Port Gigabit Managed Rack Mountable Network Switch picture

Cisco SG300-52-Port Gigabit Managed Rack Mountable Network Switch

$44.95



Fortinet FortiSwitch FS-124D-POE 24 Port Gigabit Ethernet Switch UNREGISTERED picture

Fortinet FortiSwitch FS-124D-POE 24 Port Gigabit Ethernet Switch UNREGISTERED

$99.97



ARUBA J9772A 2530-48G PoE+ 48 PORT ETHERNET SWITCH W/ RACK EARS J9772-60301 picture

ARUBA J9772A 2530-48G PoE+ 48 PORT ETHERNET SWITCH W/ RACK EARS J9772-60301

$140.23



HPE ARUBA 2530-24G J9773A PoE+ 24-PORT GIGABIT ETHERNET SWITCH J9773-60201 picture

HPE ARUBA 2530-24G J9773A PoE+ 24-PORT GIGABIT ETHERNET SWITCH J9773-60201

$93.24



Ubiquiti Networks UniFi US-8, 8 Port Ethernet Switch, Used with Power Supply picture

Ubiquiti Networks UniFi US-8, 8 Port Ethernet Switch, Used with Power Supply

$42.50



Dell X1026P E11W 24-Port PoE Smart Managed Gigabit Ethernet Switch 2X SFP picture

Dell X1026P E11W 24-Port PoE Smart Managed Gigabit Ethernet Switch 2X SFP

$25.00



NETGEAR GS108 ProSafe 8-Port GbE Unmanaged Switch w/ Power Adapter picture

NETGEAR GS108 ProSafe 8-Port GbE Unmanaged Switch w/ Power Adapter

$14.99



TP-Link TL-SG108 8-Port 10/100/1000 Mbps Gigabit Ethernet Desktop Switch FREE SH picture

TP-Link TL-SG108 8-Port 10/100/1000 Mbps Gigabit Ethernet Desktop Switch FREE SH

$14.99



HP JG937A Flexnetwork 5130-48G PoE+ 48-Port Gigabit Network Switch picture

HP JG937A Flexnetwork 5130-48G PoE+ 48-Port Gigabit Network Switch

$55.95



New Netgear 8port Ultra60 PoE Multi-Gigabit 2.5G Ethernet+ Switch MS108EUP100NAS picture

New Netgear 8port Ultra60 PoE Multi-Gigabit 2.5G Ethernet+ Switch MS108EUP100NAS

$189.00