Page 1 of 3 123 LastLast
Results 1 to 10 of 21

Thread: Knoppix 7.0.2-EN DVD notes & comments

  1. #1
    Moderator Moderator
    Join Date
    Mar 2004
    Location
    Menlo Park, California
    Posts
    674

    Knoppix 7.0.2-EN DVD notes & comments

    Hello,
    Did someone managed yet to get the 64 bits compile & run time environment working on Knoppix 7.0.2 ?
    The steps provided by Klaus for Knoppix 6.7.1 are no longer working (cf link below)
    http://knoppix.net/forum/threads/294...l=1#post125222
    and my other attempts have failed so far.
    Best Regards,
    Gilles

  2. #2
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    Greetings, Gilles.
    Is your 7.0.2 running a 64-bit kernel?

  3. #3
    Moderator Moderator
    Join Date
    Mar 2004
    Location
    Menlo Park, California
    Posts
    674
    Hi Utu,
    Yes of course.
    The following line was working well enough on Knoppix 6.7.1 with the 64 bit Linux kernel:
    sudo apt-get -y -t sid --reinstall install libc6 libc6-dev libc6-dev-amd64 gcc-4.6-multilib lib64gcc1
    But this does not work any more with Knoppix 7 (7.0.0 nor 7.0.1 nor 7.0.2).
    There are conflicting packages that are in use and switching into single user mode (init 1) does not help.
    Cheers,
    Gilles
    Last edited by ruymbeke; 06-07-2012 at 02:40 AM.

  4. #4
    Senior Member registered user
    Join Date
    Feb 2010
    Posts
    512
    Hi Gilles,

    I have successfully tried the following with Knoppix V7.0.2.

    You have to replace the packages libc-bin, libc-dev-bin, libc6, libc6-dev with those of the unstable branch.

    Open a terminal an issue
    Code:
    sudo apt-get update
    sudo apt-get -d -t unstable install libc-bin libc-dev-bin libc6 libc6-dev
    sudo chvt 1
    init 2
    apt-get -t unstable install libc-bin libc-dev-bin libc6 libc6-dev
    chroot /UNIONFS/
    apt-get -t unstable -f install
    exit
    init 5
    chvt 5
    Now you can install the current packages gcc-4.6-multilib and g++-4.6-multilib from the unstable branch.
    Code:
     sudo apt-get -y -t unstable install gcc-4.6-multilib g++-4.6-multilib
    Download and extract pi_quick_start.tar.gz

    Change to your pi_quick_start directory and load start.sh into a text editor. Replace all occurances of "cc" with "gcc -m64". Save the file and exit the text editor.

    Set the environment variable CFLAGS:
    Code:
    export CFLAGS=-m64
    Run the script:
    Code:
    ./start.sh
    Best Regards

  5. #5
    Moderator Moderator
    Join Date
    Mar 2004
    Location
    Menlo Park, California
    Posts
    674
    Hi Klaus,
    This works great, thank you very much !
    Would you consider adding these 64 bits packages in a future Knoppix DVD
    such as this 64bits libraries and compile environment would be ready
    to be used by the user when booting with the 64 bit kernel ?
    Would you also consider adding the oprofile kernel module ?
    Best Regards,
    Gilles

    PS: I noticed that the "libc" and "ld-linux" 64 bits libraries are now located into "/lib/i386-linux-gnu".
    Shouldn't they be located into /lib64 instead (as it is on Knoppix 6.7.1) ?
    Last edited by ruymbeke; 06-07-2012 at 09:17 AM.

  6. #6
    Senior Member otropogo's Avatar
    Join Date
    Jul 2008
    Posts
    109
    I must confess I couldn't quite follow Klaus's explanation on booting 7.0.2 in 64-bit mode, especially since I have no experience in running 64-bit OSs. However, I tried booting with the "knoppix64" argument and when I do, System Monitor shows my PC as having 3.9GB of RAM available, whereas when booting normally, the utility is only showing 2.9GB of RAM. So I assume this means that the 64-bit kernel is working...

  7. #7
    Moderator Moderator
    Join Date
    Mar 2004
    Location
    Menlo Park, California
    Posts
    674
    Hi otropogo,
    Yes you are running a 64 bits kernel since you can see most of your RAM (3.9GB instead of 2.9GB with a 32 bits kernel).
    You can also see that you are running a 64bits kernel by running the command "uname -a" from a shell console:
    "Linux Microknoppix 3.3.7-64 #40 SMP PREEMPT Tue May 22 08:47:38 CEST 2012 x86_64 GNU/Linux"
    As Klaus explained previously, besides the fact that a 64bits kernel allows you to use almost all of your RAM
    as most 64 bits applications the 64 bits kernel is also more efficient (runs faster) but at a price of a larger footprint
    which is not desirable for a CD/DVD (especially when speed does not really matter for most users and applications),
    reason for Klaus to only have the 64 bits Kernel available on his great Knoppix distribution (and have all the libraries
    and other applications only as 32 bits code, knowing that 32bits code can be used with a 64bits kernel).
    Now if for some reason you really like or need 64 bits native code to run on that platform then you need to have
    some extra libraries (as glibc) and other tools to create these 64 bits applications (as gcc) and this is exactly
    these installation steps that Klaus explained previously. Hope this helps.
    Best Regards,
    Gilles

  8. #8
    Senior Member otropogo's Avatar
    Join Date
    Jul 2008
    Posts
    109
    Quote Originally Posted by ruymbeke View Post
    Hi otropogo,
    Yes you are running a 64 bits kernel since you can see most of your RAM (3.9GB instead of 2.9GB with a 32 bits kernel).
    You can also see that you are running a 64bits kernel by running the command "uname -a" from a shell console:
    "Linux Microknoppix 3.3.7-64 #40 SMP PREEMPT Tue May 22 08:47:38 CEST 2012 x86_64 GNU/Linux"
    As Klaus explained previously, besides the fact that a 64bits kernel allows you to use almost all of your RAM
    as most 64 bits applications the 64 bits kernel is also more efficient (runs faster) but at a price of a larger footprint
    which is not desirable for a CD/DVD (especially when speed does not really matter for most users and applications),
    reason for Klaus to only have the 64 bits Kernel available on his great Knoppix distribution (and have all the libraries
    and other applications only as 32 bits code, knowing that 32bits code can be used with a 64bits kernel).
    Now if for some reason you really like or need 64 bits native code to run on that platform then you need to have
    some extra libraries (as glibc) and other tools to create these 64 bits applications (as gcc) and this is exactly
    these installation steps that Klaus explained previously. Hope this helps.
    Best Regards,
    Gilles
    Thanks Giles. If I've understood correctly now, the optional kernel allows one to use more than 3.GB of RAM, but not to run 64-bit applications. I gather there may also be some performance loss, when running 32-bit applications on the 64-bit kernel?

  9. #9
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    @ Otropogo

    I think part of what Klaus K is saying is that for many/most Linux 'ordinary' Knoppix
    users, using 64-bit applications won't show MUCH, if any performance improvement over
    using the same 32-bit application. Think spread-sheet, browser, word-processor, etc.

    I don't think there should necessarily be ANY performance penalty in using 32-bit
    applications with a 64-bit kernel enabled.

  10. #10
    Moderator Moderator
    Join Date
    Mar 2004
    Location
    Menlo Park, California
    Posts
    674
    Hi Otropogo,
    I do not see any reason to not always use a 64bits kernel if your system processor does support it.
    Klaus still uses a 32bits kernel as the default because some older machine are not 64bits capable
    and it is desirable to have his live CD/DVD to run by default (without tweaks) on most systems.
    Best Regards,
    Gilles

Page 1 of 3 123 LastLast

Posting Permissions

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


SanDisk 1TB Ultra Dual Drive Go USB Type-C Flash Drive, Black - SDDDC3-1T00-G46 picture

SanDisk 1TB Ultra Dual Drive Go USB Type-C Flash Drive, Black - SDDDC3-1T00-G46

$109.99



SanDisk 128GB Ultra Dual Drive USB Type-C, USB 3.1 Flash Drive - SDDDC2-032G-G46 picture

SanDisk 128GB Ultra Dual Drive USB Type-C, USB 3.1 Flash Drive - SDDDC2-032G-G46

$10.99



SanDisk 128GB Ultra Flair USB 3.0 Flash Drive - SDCZ73-128G-G46 picture

SanDisk 128GB Ultra Flair USB 3.0 Flash Drive - SDCZ73-128G-G46

$12.99



512GB  USB Flash Drive External Storage Memory Stick For iPhone iPad Android picture

512GB USB Flash Drive External Storage Memory Stick For iPhone iPad Android

$17.59



Sandisk 16GB 32GB 64GB 128GB Cruzer Blade Flash Drive Memory Stick USB Lot Pack picture

Sandisk 16GB 32GB 64GB 128GB Cruzer Blade Flash Drive Memory Stick USB Lot Pack

$4.99



LENOVO 16GB 32GB 64GB 128GB 256GB 512GB 1TB 2T B usb 3.0 stick flash thumb drive picture

LENOVO 16GB 32GB 64GB 128GB 256GB 512GB 1TB 2T B usb 3.0 stick flash thumb drive

$9.84



USB 3.0 Flash Drive 32GB 64GB 128GB Memory Stick Thumb Stick Lot Pack picture

USB 3.0 Flash Drive 32GB 64GB 128GB Memory Stick Thumb Stick Lot Pack

$5.99



2TB USB 3.0 Flash Drive Memory Photo Stick for iPhone Android iPad Type C 3 IN1 picture

2TB USB 3.0 Flash Drive Memory Photo Stick for iPhone Android iPad Type C 3 IN1

$16.72



1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot picture

1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot

$388.39



USB Flash Drive Memory Stick Pendrive Thumb Drive 4GB, 8GB, 32GB, 64GB 128GB LOT picture

USB Flash Drive Memory Stick Pendrive Thumb Drive 4GB, 8GB, 32GB, 64GB 128GB LOT

$249.37