Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: How can I change KDE Menu and Icons after remastering?

  1. #1
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    16

    How can I change KDE Menu and Icons after remastering?

    please forgive my poor english.

    when I remastering with Knoppix.build scripts, every config file is perfectly reflected in Live CD. (locales, application config files ... etc) but KDE menu and Icons, wall paper, theme, widow decorations are always return to Basic Knoppix. How can I change KDE Menu and Icons after remastering?

    What is the real KNOPPIX KDE menu config file in /usr/share/applications, /usr/share/applnk, /etc/skel?
    and How can I reflect on remastering CD?

  2. #2
    Member registered user
    Join Date
    Jun 2004
    Location
    United Kingdom
    Posts
    57
    as suggested by moran:

    vi /etc/X11/Xsession.d/45xsession

    comment out lines 125 - 154

    and save the file.
    (comment out is putting # at the start of each line).

    stage 2:

    vi /etc/init.d/knoppix-autoconfig

    at line 1181 after the fi in new line i add:
    mkdir /home/knoppix
    cp -R /etc/skel/.??* /home/knoppix
    cp -R /etc/skel/* /home/knoppix

    chown -R knoppix:knoppix /home/knoppix


    make steps 2 & 3 and burn the iso.


    To edit KDE menu use menu editor,

    K menu => Settings => Menu Editor

    Good Luck

    Nikolay

  3. #3
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    16

    Failed.

    I failed.
    After remastering, back to basic again.

    boot message says '/home/knoppix is already maded'.

    can someone help me?

  4. #4
    Member registered user
    Join Date
    Jun 2004
    Location
    United Kingdom
    Posts
    57
    it seems that you left X you didn't delete /etc/skel and replace it with /home/knoppix. Follow UnderScores How to:

    rm –rf /etc/skel

    It will remove /etc/skel and its content. Then:

    mv /home/knoppix /etc/skel

    This will move /home/knoppix to /etc/skel. And at the end change the owner:

    chown –R root:root /etc/skel

    /home/knoppix is being recreated on every start up

  5. #5
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    16
    It has been working!!!
    even though still boot message '/home/knoppix, file has already made' printed
    anyway Nikolay, Thank you for your help.

  6. #6
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    16
    Nikolay, I am worried about one thing.

    vi /etc/X11/Xsession.d/45xsession

    comment out lines 125 - 154
    I think, that comment out will effect on 'Persistent home directory'.

    Code:
    startkde(){
    # Play sound
    #playsound
    
    if [ -z "$DONTCHANGE" ]; then
    # No persistent homedir, copy everything
    rsync -Ha --ignore-existing /etc/skel/{.kde*,Desktop} $HOME/ 2>/dev/null
     if [ "$USER" = "knoppix" ]; then
      rsync -Ha --ignore-existing /usr/share/knoppix/profile/{.kde*,Desktop} $HOME/ 2>/dev/null
      # Build ksycoca database for KDE speedup
      [ -d /usr/share/knoppix/profile/var/tmp/kdecache-knoppix ] && rsync -Ha --ignore-existing /usr/share/knoppix/profile/var/tmp/kdecache-knoppix/ /var/tmp/kdecache-knoppix 2>/dev/null
     fi
    It will comment out 'DONTCHANGE' value so 'No persistent homedir, copy everything' will be lost.
    What do U think about it?

  7. #7
    Member registered user
    Join Date
    Jun 2004
    Location
    United Kingdom
    Posts
    57
    To be honest, I am not sure about it. I think the only way to find out is just to test it out. gonna do it when get home. and will post the results.

    Nikolay

  8. #8
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    16
    I finished that test sucessfully.
    maybe 'dontchange' value does not effect on persistent home directory.
    thanks anyway.

  9. #9
    Member registered user
    Join Date
    Mar 2005
    Location
    Brasilia/Brazil
    Posts
    31
    GunSmoke,
    I have developed, with some fiends here in Brazil, a script that does the remastering of the knoppix currently installed on the HD, which is posted at http://www.knoppix.net/forum/viewtopic.php?t=18222 and have faced the same problem you described. We solved it adding this code rsync -Ha --ignore-existing /etc/skel/ $HOME/ at line 67 of the 45xsession and deleting 26 lines, starting from the line nr 200 in the same file (45xsession). It worked perfectly, maybe you should try this, once it doesnt touch the persistent home directory.
    Cheers.
    PS: Im talking about the 3.7 version of knoppix. I didnt try the 3.8.1 yet, which I think Im doing today. I wil post if sucessful or not.

  10. #10
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    16
    I am Korean.
    and I thanks for your international cooperation.

    my 45xsession file is
    Code:
    23 # add at least _one_ entry to xauth
    24 # remove when updated nxclient is available
    25 
    26 xauth add $DISPLAY  MIT-MAGIC-COOKIE-1  $(mcookie)
    27
    maybe that 26 line has nothing to do with my purpose.
    so I think that I must not delete that line. plz tell me another line that I must delete.

    Code:
    64 # Copy profiles if not already present
    65 rsync -Ha --ignore-existing /etc/skel/{.acrorc,.Xdefaults,.gimp*,.gconf*,.bashrc,.nessus*,.links,.local,.lynx*,.qt,.xine,tmp} $HOME/ 2>/dev/null
    66 [ "$USER" = "knoppix" ] && rsync -Ha --ignore-existing /usr/share/knoppix/profile/{.gnupg,.acrorc,.Xdefaults,.bashrc,.nessus*,.links,.lynx*,.qt,.xine,tmp} $HOME/ 2>/dev/null
    67 [ "$USER" = "knoppix" -a -f /usr/share/knoppix/profile/.fonts.cache-1 ] && rsync -H --ignore-existing /usr/share/knoppix/profile/.fonts.cache-1 $HOME/ 2>/dev/null
    68 
    69 # We DO need the .gnome* directory for some programs that set permissions incorrectly
    ...
    and Where do I add code 'rsync -Ha --ignore-existing /etc/skel/ $HOME/' after that 67 line?

Page 1 of 2 12 LastLast

Similar Threads

  1. Remastering Knoppix 5.11 cannot modify or change KDE menu
    By hal8000 in forum Customising & Remastering
    Replies: 3
    Last Post: 12-29-2007, 12:16 AM
  2. Icons position after remastering [SOLVED]
    By Dredman in forum Customising & Remastering
    Replies: 3
    Last Post: 10-07-2006, 10:23 PM
  3. How can I change Kde menu button?
    By maxmartin in forum Customising & Remastering
    Replies: 0
    Last Post: 03-12-2006, 03:25 AM
  4. Start menu icons are gone after upgrade
    By andig in forum General Support
    Replies: 0
    Last Post: 05-06-2004, 05:39 PM
  5. installing program. icons appearing in kde menu
    By ykhov in forum General Support
    Replies: 1
    Last Post: 04-02-2004, 05:11 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
  •  


Fanxiang 1/2/5/10Pcs 2.5'' SATA SSD Lot 1TB 2TB 4TB 512GB 256GB TLC Internal SSD picture

Fanxiang 1/2/5/10Pcs 2.5'' SATA SSD Lot 1TB 2TB 4TB 512GB 256GB TLC Internal SSD

$755.99



Dell Latitude 14

Dell Latitude 14" Laptop Computer Intel i7 Up To 32GB RAM 1TB SSD Windows 11 Pro

$360.73



Dell Latitude 14

Dell Latitude 14" Laptop Computer Intel i5 Up To 32GB RAM 1TB SSD Windows 11 Pro

$427.63



Dell Latitude 15.6” FHD Core i5 Laptop PC Up To 32GB RAM 1TB SSD Windows 11 picture

Dell Latitude 15.6” FHD Core i5 Laptop PC Up To 32GB RAM 1TB SSD Windows 11

$422.85



Acer Aspire 14

Acer Aspire 14" AI Copilot+PC Laptop Core Ultra 5 226V Gen 4 ARC 16GB 1TB Refurb

$406.03



Acer Predator Helios Neo 16S AI 16

Acer Predator Helios Neo 16S AI 16" i9 275HX 2S RTX 5070 Ti 32GB 1TB SSD Refurb

$1794.04



1TB Kingston DataTraveler Max DTMAX/1TB USB Type-C Flash Drive picture

1TB Kingston DataTraveler Max DTMAX/1TB USB Type-C Flash Drive

$86.95



Acer Aspire 16 16

Acer Aspire 16 16" Laptop Core Ultra 5 226V S2 16GB RAM 1TB SSD Arc Refurbished

$493.99



Dell Windows 11 Pro Desktop Computer PC Up To i7 8th Gen. 32GB RAM 4TB SSD/HDD picture

Dell Windows 11 Pro Desktop Computer PC Up To i7 8th Gen. 32GB RAM 4TB SSD/HDD

$438.27



Seagate ST1000VM002 1TB 5900RPM 3.5

Seagate ST1000VM002 1TB 5900RPM 3.5" SATA 6Gb/s HDD | PC DVR CCTV | | 1Y

$55.95