Results 1 to 6 of 6

Thread: Installed Knoppix to HD for first time.

  1. #1
    Junior Member registered user
    Join Date
    Feb 2006
    Posts
    12

    Installed Knoppix to HD for first time.

    Hello. I've had a copy of Knoppix 4.0.2 since 2005, so obviously I'm way behind the times.

    My laptop's HD crashed, so my father got me a brand-spanking new HD, no OS. Therefore, the laptop told me that the Boot Sector is invalid, due to nothing on it.

    I inserted the LiveDVD into the computer, booted into Knoppix, and attempted to install it to the HD. I followed the instructions to a T, and the OS successfully installed. In fact, it's the only OS on the HD.

    With the install out of the way, I shut down the system to reboot the computer. I removed the DVD, and proceeded to reboot. The boot was unsuccessful, the same message "Boot Sector is invalid" came up. Maybe I was supposed to do something that wasn't in the instructions I got at the Knoppix.net wiki article on HD Install How-to?

    I thought I installed to the master boot record but the laptop isn't liking what it finds there or something? But i'm not sure.

    I installed Knoppix instead of Windows because I already have WinXP on one computer, why bother installing another XP on a laptop that's 6 years old? And frankly, I could use a practice system for linux without the hassles of dual-booting.

    Did I do something wrong, and how can I fix this?

    On another note, my version of Knoppix (4.0.2) doesn't recognize my Wireless-G PCMCIA adapter from Linksys (model no. WPC54G). The length of time since 4.0.2 until 5.2 could have been enough to get the code for implementation of this model of wireless device, hypothetically speaking. What additions to Knoppix have been made to the wireless networking segment, since my version 4.0.2? I'm sure that's going to be a long list... Could you please narrow it down to Linksys Wireless-G, if at all applicable?

    Thanks for your quick responses and advice!

    Grant

  2. #2
    Senior Member registered user
    Join Date
    Mar 2004
    Posts
    1,516
    if i was you i would try to install Ubuntu or plain Debian. they are better suited as HDD installs, and specially ubuntu has fairly cutting edge software.

  3. #3
    Administrator Site Admin-
    Join Date
    Apr 2003
    Location
    USA
    Posts
    5,441

    Re: Installed Knoppix to HD for first time.

    Quote Originally Posted by Gthang
    What additions to Knoppix have been made to the wireless networking segment, since my version 4.0.2? ...
    I can tell you that I have 4 wireless cards, and only one of the worked in Knoppix 4.02. In 5.0.1, 5.1.0 and 5.1.1 I can report that none of them worked! I can't comment on 5.2.x versions, they have not officially been released to the Internet yet.

    I strongly suggest that you take the other advice and use a distro more suitable for hard disk install. Overall I'm not as impressed with Umbutu as I am with Debian, but you very well might find that it is a better fit to certain hardware. If I were you I would do a trial install of Unbutu and either the current "testing" or "unstable" version of Debian. If you find that Umbutu has support for hardware that you need that Debian doesn't, then consider going with it. If Debian meets your hardware support needs as well or better than Unbutu then I suggest going with Debian.
    ---
    Verifying of md5 checksum and burning a CD at slow speed are important.

  4. #4
    Junior Member
    Join Date
    Jul 2007
    Location
    Florida
    Posts
    1

    WPC54G settings for Knoppix 4

    This is not a step-by-step or even a complete set of instructions. It took me quite a while to get it working back when there was no Knoppix 5. The device names are different on 5 and there is something different needed on the commands. Anyway, FWIW...

    WPC54G has multiple hardware versions. Earlier versions use Linux but Linksys was forced to provide their code under GPL and some people claim you can make old Linksys hardware work like more expensive stuff by flashing in some updates. So, more recent versions of Linksys hardware uses a real-time OS instead of Linux. Maybe your version uses Linux, maybe it uses a real-time OS, or maybe it is something else. My version is V3 and this works for it. My router is version V5 and that makes a difference for encryption.

    Use lspci to check if your card is even working properly. You should see a BCM 4318 somewhere in the list. If not, then you have a different card version. It may still have a V3 label because Linksys does not change version labels for all configuration changes. I specifically bought this one with a package label that says it supports WPA2 but there are older V3 boxes that do not say that. Maybe the label means nothing because the WPA2 support is in Windows SP2 or maybe it is different hardware or different firmware. Once again FWIW ...

    To get WPC54G working unencrypted with Knoppix 4 is relatively easy. I found some good instructions for Ubuntu using google and they worked well. You need to use ndiswrapper and do a modprobe. I was not interested in unencrypted wireless so I only ran that way for short periods to make progress to the next step. It has been a while and I tried a number of different things but this a Live CD and I never saved anything other than some files on my Windows C drive. I always put them there using a USB pendrive because I did not want to risk trashing the NTFS partition and there were many warnings about flaky support for NTFS. YMMV

    To get encrypted support working might require an update from Linksys. One posting stated that, so I got the latest version of firmware and drivers that supports V3 of the card. Be careful getting updates from Linksys because you need to match your version of the card. It will be easiest to do this using Internet Explorer on a Windows machine because the web page has some active content that does not work well with my version of Firefox. Again YMMV.

    So, here is my script that I have in a folder on Windows. I mount the file system read only, go into the directory, become root and run it:
    #!/bin/sh
    #
    # Knoppix 4 wireless configuration script
    #
    # This needs to run as root.
    #
    # debug notes:
    # 1) can run lspci to check if card is working - should see bcm 4318 somewhere in list
    # 2) use dmesg to check error log
    # 3) ndiswrapper -l shows currently loaded ndis compatible drivers
    #
    ndiswrapper -i LSBCMNDS.inf
    modprobe ndiswrapper
    #wpa_supplicant -c wpa_supplicant.conf -dd -Dndiswrapper -iwlan0 -K
    wpa_supplicant -c wpa_supplicant.conf -Dndiswrapper -iwlan0 -B
    pump -i wlan0
    #ifup wlan0
    wavemon

    I am not sure why I had a -K and went to the -B on the WPA supplicant. Maybe it is debug notes or maybe it was a change from one version of the code to another. Remember that I said it took a while to get it working the first time. If you want to run unencrypted (not advisable but may be unavoidable in some apartment complexes) then you do not need to get the wpa_supplicant stuff working.

    My current version does not do the ifup but it was needed earlier. I have no idea why it was needed earlier but then was removed. If it did no harm to have it in then I probably would not have removed it. It could be that I needed it for KNOPPIX 3 or maybe an update from Linksys caused different behavior. Maybe I switched from ifup to pump. Sorry I did not keep better notes but I was trying to find something that worked and had read that there were updates in Debian that made wireless work out of the box. So, I expected KNOPPIX 5 or Ubuntu or some other distro to "just work" and did not plan to use this setup as long as I have.

    The LSCMNDS.inf file comes straight from Linksys - no customization by me. It is different than other LSCMNDS versions and does not match the version I use for Windows XP. Windows was working and I saw no reason to mess with it. I had enough trouble getting the WPC54G to work the first time with Windows and had to spend time on the phone with Linksys support. They told me that following the instructions in the box and using their CD was a mistake - so we had to undo that before we could let Windows XP SP2 take care of it with a couple small tweaks and few reboots. According to support, the stuff in the box applied to systems before SP2 but WPA2 only works with SP2 and the box label that says it supports WPA2 means that the hardware will work with SP2 but only if you ignore the instructions and just plug it in and let Windows reboot a few times as it discovers the device and configures itself (and downloads updates over ethernet plugged in because wireless is not working yet!)

    So ... enough rambling ... that should give you enough to get started if you do not want to take the suggestion to install something else. Remember that the script above is used with a Live CD boot and that is different from an HD install boot in ways that might make a difference.

  5. #5
    Junior Member registered user
    Join Date
    Feb 2006
    Posts
    12
    Well, I've downloaded and installed Ubuntu and like the ease of use. Unfortunately, seems even Ubuntu doesn't have drivers for my WPC54G. And Ubuntu doesn't have Enigma, which is bundled with Knoppix 4.

    I just loaded knoppix onto my now totally ubuntu-equipped laptop (apparently, my install of Knoppix never worked, so I installed WinXP SP2 which became the main OS; that is, until I installed Ubuntu, which promptly removed all traces of Windows from my hard disk, there's not even an NTFS partition anymore, so it seems). I will try the knoppix internet trick for both OSs, and see if they work.

    Trying to get Ubuntu to connect to a network, I went to Hardware Information to see if there was an Install Driver type thing like with Windows, but apparently not. But I did notice that my cardbus had a slightly different BCM code, BCM 4306.

    Seeing as this is a knoppix forum, i guess I should seek network-connection help elsewhere but since K and Ubuntu both Linux-based, there should be some overlap of related software.

  6. #6
    Administrator Site Admin-
    Join Date
    Apr 2003
    Location
    USA
    Posts
    5,441
    Quote Originally Posted by Gthang
    And Ubuntu doesn't have Enigma, which is bundled with Knoppix 4.
    I'm not a big Ubuntu fam myself, so my purpose in responding is not to appologize for it. But if you had said And Debian doesn't have Enigma, which is bundled with Knoppix 4, my response would simply be that a minimal Debian install doesn't have a lot of things that are bundeled in with Knoppix, some of which you want and much of which you don't. If you want Enigma, just install Enigma. I have never installed Ubuntu (tried the Live Cd and saw no reason, but I was under the impression that it has an apt-get system like Debian. Can't you just install what you want?
    ---
    Verifying of md5 checksum and burning a CD at slow speed are important.

Similar Threads

  1. Error trying to use Knoppix first time
    By Howard Kaikow in forum General Support
    Replies: 2
    Last Post: 07-19-2009, 04:47 PM
  2. Knoppix Succesfully installed but grub installed in root
    By param85047 in forum Hdd Install / Debian / Apt
    Replies: 3
    Last Post: 11-03-2006, 03:31 PM
  3. Replies: 1
    Last Post: 07-14-2006, 11:30 PM
  4. Knoppix 4.0 boot time
    By GaTk in forum The Lounge
    Replies: 0
    Last Post: 06-30-2005, 10:16 AM
  5. First time using Knoppix ...
    By Nightshade7676 in forum General Support
    Replies: 3
    Last Post: 12-07-2003, 11:37 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
  •  


Seagate Exos 7E10 ST2000NM000B 2TB 7200RPM SATA 6.0Gb/s 3.5

Seagate Exos 7E10 ST2000NM000B 2TB 7200RPM SATA 6.0Gb/s 3.5" Internal Hard Drive

$29.99



WF12F DELL 1TB 7.2K 6GBPS SATA 2.5'' HDD HARD DRIVE ST91000640NS 0WF12F picture

WF12F DELL 1TB 7.2K 6GBPS SATA 2.5'' HDD HARD DRIVE ST91000640NS 0WF12F

$25.00



WD 2TB Certified Refurbished Elements, External Hard Drive - RWDBU6Y0020BBK-WESN picture

WD 2TB Certified Refurbished Elements, External Hard Drive - RWDBU6Y0020BBK-WESN

$49.99



Western Digital 4TB WD Purple Surveillance HDD, Internal Hard Drive - WD43PURZ picture

Western Digital 4TB WD Purple Surveillance HDD, Internal Hard Drive - WD43PURZ

$96.99



HGST Ultrastar DC HC520 12TB SATA 6Gb 256MB 3.5

HGST Ultrastar DC HC520 12TB SATA 6Gb 256MB 3.5" Enterprise HDD- HUH721212ALE601

$89.99



HGST Ultrastar HE10 HUH721010ALE600 10TB SATA 6Gb/s 7200RPM 3.5

HGST Ultrastar HE10 HUH721010ALE600 10TB SATA 6Gb/s 7200RPM 3.5" Enterprise HDD

$69.99



2TB 3.5

2TB 3.5" HDD Sata Mixed Brands hard drive Tested Formatted

$18.99



2 PACK  Seagate ST1000LM035 Mobile HDD 1TB 2.5

2 PACK Seagate ST1000LM035 Mobile HDD 1TB 2.5" SATA III Laptop Hard Drive

$26.89



WD 16TB Elements Desktop, Certified Refurbished Hard Drive - RWDBWLG0160HBK-NESN picture

WD 16TB Elements Desktop, Certified Refurbished Hard Drive - RWDBWLG0160HBK-NESN

$209.99



Seagate Exos X22 ST22000NM001E 22TB 512E SATA 6Gb/s 3.5

Seagate Exos X22 ST22000NM001E 22TB 512E SATA 6Gb/s 3.5" Enterprise Hard Drive

$311.99