Slashdot Mirror


True Stories of Knoppix Rescues

Omniscientist writes "We've all been there: Our system is on the edge of death and we need to either fix it or retrieve important data that still remains hidden away in its dying clutches. LinuxDevCenter has a funny article on a heroic tale of a sysadmin relying on Knoppix to save the day. I for one, always make a boot disk in case of problems, but Knoppix can turn a bad day into a good one for just about anyone. Perhaps every administrator should have a Knoppix CD on reserve."

335 comments

  1. Offtopic by Anonymous Coward · · Score: 4, Insightful

    but how is this story "Hardware Hacking"?

    1. Re:Offtopic by Anonymous Coward · · Score: 0

      NOTICE: SLASHVERTISEMENT

      This is simply an article by the author of "Knoppix Hackxorsz" or some such Bill O'Reily No spin factor book.

      F'en republicans!

    2. Re:Offtopic by Anonymous Coward · · Score: 0

      Uhhh... how is THAT hardware hacking?

    3. Re:Offtopic by Anonymous Coward · · Score: 0

      The headline and blurb remind me of this:

      http://realotakuheroes.com/songs/songs.html

    4. Re:Offtopic by Anonymous Coward · · Score: 0

      Why the hell would you need Knoppix for that...? Heck , why would you need it? Microsoft is kind enough to provide pre-cracked ('Corporate') versions themselves.

    5. Re:Offtopic by Anonymous Coward · · Score: 0

      Stupid article.

      David Hasselhoff is Austrian, not German.

    6. Re:Offtopic by Anonymous Coward · · Score: 0

      Agreed. I got my grubby hands on a corporate edition from a local company (I know someone employed there) which was promptly copied and returned. I can now install it wherever/whenever I want without any activation at all. No cracks. Nothing.

      Either way, I don't run XP (For windows, I use 2000).

      Anonymous Coward

    7. Re:Offtopic by Omniscientist · · Score: 1
      Well. Honestly I couldn't find a Knoppix or a Tux picture, so I just chose Hardware Hacking because it sounded cool.

      Lame, yes, I know.

  2. Well... by Blue-Footed+Boobie · · Score: 4, Funny
    I, for one, welcome our new bootdisk making...

    Aw, fuck it.

    --
    DAMN YOU OCTODOG! DAMN YOU TO HELL!
    1. Re:Well... by AceCaseOR · · Score: 5, Funny

      Don't you mean "fsck it"?

      --
      Zagreus sits inside your head, Zagreus lives among the dead, Zagreus sees you in your bed and eats you in your sleep.
    2. Re:Well... by Blue-Footed+Boobie · · Score: 3, Insightful

      ...maybe FDISK it?

      --
      DAMN YOU OCTODOG! DAMN YOU TO HELL!
    3. Re:Well... by SpaceLifeForm · · Score: 1
      Dag burn it.

      Rookies.

      --
      You are being MICROattacked, from various angles, in a SOFT manner.
    4. Re:Well... by Anonymous Coward · · Score: 0

      I rescued my CF-47 Toughbook FROM WIndows by installing Knoppix to hard disk. PII/300/192MB.
      Debified teh Knoppix by editng sources, and life is good.

  3. Virtual to Virtual migration by Anonymous Coward · · Score: 2, Funny

    I have used knoppix and dd to migrate virtual machines from Virtual Server/Virtual PC to VMware. Now if that ain't a rescue, I don't know what is.

    1. Re:Virtual to Virtual migration by Anonymous Coward · · Score: 1, Informative

      Works great to 'clone' a drive to a new bigger one. Just mount both hd's under the /mnt directory, go to /mnt/hda, type:

      tar cf - . | (cd /mnt/hdb ; tar xf - )

      Take a lunch break. When you get back, everything's been moved to your squeeky clean new drive. Then just dd the first sector or 2 off the old disk (the bootloader), and dd it onto the new one, & yer done.

    2. Re:Virtual to Virtual migration by urbieta · · Score: 1

      Do you mind detailing the procedure? Id like to try it out myself :)

      thanks!

    3. Re:Virtual to Virtual migration by tchuladdiass · · Score: 2, Informative

      One safety issue with this: if you typo the destination directory, then you will be untaring in the original (source) directory, which will wipe out any file larger than tar's internal buffer size. A slightly safer version of this is:

      tar -cf - . | if cd /mnt/hdb; then tar -xf -; fi

      Now, if /mnt/hdb doesn't exist the second tar command won't run.

    4. Re:Virtual to Virtual migration by Anonymous Coward · · Score: 0
      Do you mind detailing the procedure? Id like to try it out myself :)


      This was done for a windows virtual machine, as a linux one could be done just by tar'ing up the partitions and extracting on the new partitions, then use a kernel tuned for the new virtual hardware. For linux you will also need to reinstall your bootloader since the virtual bios will be different.



      For a windows virtual machine, the details are from memory -

      1) Boot knoppix
      2) setup networking
      3) Make a mountpoint

      mkdir /mnt/backup
      4) mount a windows share with enough space for the whole image
      mount -t smbfs -o username=user,workgroup=domainname //192.168.1.100/sharename /mnt/backup
      5) copy and compress a dump of the disk "/dev/hda"
      dd if=/dev/hda | bzip2 -9 | split -b 2047M - /mnt/backup/diskimg.tar.bz2.
      6) After a very long time, you will have a compressed image of your entire virtual disk split over 2GB files (since windows shares can have difficulty over 2GB size files. Not always depending on your situation no need to detail this)
      7) To extract follow steps 1-4 on the target virtual machine with same size disk.
      8) Extract back
      cat /mnt/backup/diskimg.tar.bz2.* | bzip2 -dc | dd of=/dev/hda
      9) After waiting a long time and the command completes, your new virtual machine is ready. You will have to install VMTools and work through whatever other issues arise from the different hardware, but usually just takes a couple reboots of windows after it detects the new hardware.


      Some may think this is useless, but I have used this on real hardware as well as virtual with the same results. It has worked on real hardware where ghost has failed. Hopefully I did not have typos that will prevent you from trying it out.

    5. Re:Virtual to Virtual migration by TCM · · Score: 1

      Everyone knows the line

      tar cf - . | ( cd /mnt/hdb && tar pxf - )

      Much more readable than the if..then..fi construct. Don't forget the -p flag.

      --
      Of course it runs NetBSD. BTC: 1NT7QvbetmANwaMzhpVL6
    6. Re:Virtual to Virtual migration by bynary · · Score: 1

      Everyone knows the line...

      Yes, because everyone uses Linux, right?

      --
      http://www.bynarystudio.com
  4. The obviousness by ZeeExSixAre · · Score: 5, Funny
    The article is well-summed-up in this gem here:

    I suppose the moral of this story is to be careful when you play around with the dd command and your MBR.

    DOY!

    1. Re:The obviousness by Anonymous Coward · · Score: 0

      People still use "doy!"?

      1995 called and... you get the idea.

    2. Re:The obviousness by ovit · · Score: 0

      Hmm... whats this "dd" command...
      I think i'll try it now...

      dd of=/dev/hda1 if=/dev/null count=1000000

      no problem!

      td

    3. Re:The obviousness by Anonymous Coward · · Score: 0
      People still use "doy!"?

      1995 called and...

      People still use "1995 called..."? wow.... you ARE out-of-date!

    4. Re:The obviousness by Anonymous Coward · · Score: 0

      What is it now then? "1995 MMS:ed...?"

    5. Re:The obviousness by pklinken · · Score: 0

      Someone once advised me to do 'dd if=/dev/zero of=/dev/hda bs=512 count=1' and then run lilo to solve some problems i had with booting..
      He actually wasnt messing with me, but just not thinking very well and i just blindly did it.
      Now, i managed to salvage a scrap of paper on which i had written the partition sizes at installation..
      From this i reconstructed my partition-table with fdisk, ran lilo, and the system booted fine (and ran with that install for a year or so).

      Ah.. the memories of when these things actually worked out okay..

    6. Re:The obviousness by drooling-dog · · Score: 2, Interesting
      I suppose the moral of this story is to be careful when you play around with the dd command and your MBR.

      I messed up my MBR once, back when I was dual-booting Linux and WinNT. Had to type the hex in manually (I found it in a book) before converting it to binary and dd'ing it back onto the disk. I was surprised myself when that worked. Since then I've always kept a copy of it on hand, Just In Case...

    7. Re:The obviousness by Anonymous Coward · · Score: 0
      Now, i managed to salvage a scrap of paper on which i had written the partition sizes at installation..

      Back on topic, how did Knoppix help you doing that. :-P
    8. Re:The obviousness by NuclearDog · · Score: 1

      Bah.

      dd if=/dev/urandom of=/dev/hda

      Is much more fun. Writes out random data to the whole hard-drive sequentially (rather than just writing null to the first partition).

      ND

      --
      This statement is forty-five characters long.
    9. Re:The obviousness by archen · · Score: 1

      I called a vendor about a problem with a MSSQL database. The girl on the phone reading out of a SQL book was worrysome enough. When she said "Doy" I got pretty worried.

      In the end I just fixed it myself after she sent me the "SQL fix statment" in a Word document (yeah like I have office installed on all my servers). Guess the red flag going up after her saying "doy" was a pretty good indicator =)

      but maybe in this instance he mistyped 'doh'

    10. Re:The obviousness by BrokenHalo · · Score: 1
      I find a more obvious tool is simply the Slackware install disks (and presumably those of most of the other distributions too).

      A seasoned sysadmin should be able to fight his way out of most sticky situations by booting from any of these and using the tools contained therein. After all, chroot is your friend.

      I'm not saying there's anything wrong with knoppix, I just never got around to downloading the ISO...

  5. I use it on crapped on WIndows boxes too.. by Anonymous Coward · · Score: 5, Informative

    works like a charm to save data on corrupted windows boxes..

    1. Re:I use it on crapped on WIndows boxes too.. by xanadu-xtroot.com · · Score: 5, Informative
      works like a charm to save data on corrupted windows boxes..

      1. INDEED! I've saved several millions of dollars worth of info by booting NT* servers with a Knoppix CD (or Gentoo before they dropped samba support from the live CDs). I was praised as a herald. Nope. It's not me. I just used the right tool for the right job. Recovering a Windows system with Windows is near impossible.


      2. Aside, I use Linux bootables (Gentoo mostly) for checking the life of my HDs. I run a Gentoo machine (installed near 3 year ago). hda has seen a LOT (even before I put Gentoo on it - it was an MDK drive after it was a Win* drive). I've noticed SMARTd telling me latley that his life may be running short these days, but, after a e2fsck, it's fine. /me shrugs. I still need to replace him regardless.

        It's only a 10G drive (I have 4 others, much larger, in this box), but he needs to be replaced soon.

        Aside, I've saved a LOT of Win* Servers / laptops / desktops with "Live CD's".
      --
      I'm not a prophet or a stone-age man,
      I'm just a mortal with potential of a super man.
    2. Re:I use it on crapped on WIndows boxes too.. by Nik13 · · Score: 2, Informative

      I have to go against what most people say here... I had a not-so-old yet 80gb drive (like, a few days over warranty) fail on me lately. (was a Western Digital). It was my 2003 server, luckily, it was just used as the OS drive (and to store a couple other things) - one NTFS partition. I've tried knoppix, and it was of no help. Mind you most tools (ntfsdos pro, Win PE, ERDC, - the list is long). The only thing somehow that managed to read some stuff back was another Win 2003 box. By that, I mean that I managed to see what was on it (a couple HD transportstreams I had to put somewhere to make space), but not recover anything...

      --
      ///<sig />
    3. Re:I use it on crapped on WIndows boxes too.. by dmaxwell · · Score: 2, Interesting

      If the hardware is sufficiently fubared then probably nothing is going to save you. If the data on a failed disk is valuable enough, you can pay $1000 or so to MAYBE get it back.

      I don't know what procedures you may have tried but if you suspect hard drive failure then the best thing do is use something like dd_recover to copy off as much of the partition as possible and then use filesystem repair tools on a copy of that. Of course, this presumes you have twice as much free storage space as the afflicted partition laying around.....

    4. Re:I use it on crapped on WIndows boxes too.. by Anonymous Coward · · Score: 0

      INDEED! I've saved several millions of dollars worth of info by booting NT* servers with a Knoppix CD (or Gentoo before they dropped samba support from the live CDs). I was praised as a herald. Nope. It's not me. I just used the right tool for the right job. Recovering a Windows system with Windows is near impossible.

      I guess a good question then is what the hell was millions of dollars worth of data doing on a windows box without any backup?! sheesh!

    5. Re:I use it on crapped on WIndows boxes too.. by dasunt · · Score: 3, Informative

      I've noticed SMARTd telling me latley that his life may be running short these days, but, after a e2fsck, it's fine. /me shrugs. I still need to replace him regardless.

      Er, yes.

      SMART handles stuff such as "this drive takes several tries before reading the right data" or "this drive has remapped a lot of bad clusters lately". Its much more than filesystem integrety checking, and even if fsck is fixing your problems now, you might want to see why smart is pestering you.

      More Info

    6. Re:I use it on crapped on WIndows boxes too.. by Anonymous Coward · · Score: 0

      I'll second that about getting to Windows data.. A friend of mine brought me a NT box that would barely boot past the menu.. I through Knoppix in and mounted the drive.. Drive was banging like a type writter trying to read it.. I was able to SCP all his data from the system to my server but what is most interesting is that it took 8 DAYS to do it.. Thats right, 200MB of data at a rate slower than my old 300baud modem.. Slowly but surely.

    7. Re:I use it on crapped on WIndows boxes too.. by xanadu-xtroot.com · · Score: 1
      what the hell was millions of dollars worth of data doing on a windows box without any backup?! sheesh!

      Good points! My responses:
      1. A. At the time, that's what I told to use...
        B. There were backups, but, they fired the night before, and (one time in particular), it was mid-afternoon...

      --
      I'm not a prophet or a stone-age man,
      I'm just a mortal with potential of a super man.
    8. Re:I use it on crapped on WIndows boxes too.. by xanadu-xtroot.com · · Score: 1
      Er, yes.
      1. lol. Yea, I know. That was more of a long-winded sarcastic posting... :-)
      Its much more than filesystem integrety checking, and even if fsck is fixing your problems now, you might want to see why smart is pestering you.
      1. Indeed. I understand what SMART is, thus why I have it running and get alerted of mojor-ish errors it detects. It tells me that seek times increase and decrease over time. once in a while isn't a big deal (perhaps I was reading a lot of fragmented data or something along those lines - but that's only once in a great while). When I'm seeing 10 or so of them a week, it's time to invest in a new drive and dd mine...

      --
      I'm not a prophet or a stone-age man,
      I'm just a mortal with potential of a super man.
    9. Re:I use it on crapped on WIndows boxes too.. by brassman · · Score: 1

      Me Too. Win2K box customized by a maker of a scientific instrument. A few years(!) of data stored on it, and the HD ate itself -- the bootable parts, anyway. (New on the job -- had not had a chance to go around and ask everyone "Hey, do you have six years of irreplaceable data on a system that hasn't been backed up, like, ever?" Attending to that now.)

      Vendor says "Here you go, when you replace the drive just pop in our blessed Win2K CD and it will be good as new." Not exactly what we had in mind, thankyouverymuch but I'll keep it in mind once we get the data off. You know, data? The whole reason they bought this equipment from you in the first place?

      Booted Knoppix, and it not only found the data directories, it found the box's built-in CD-RW and allowed me to burn backup CDs, right then and there. Woohoo, my reputation as the new Miracle Worker in town remains intact!

      Have to say Klaus has impressed the heck out of me making it work so simply, considering the hoop-jumping that configuring xcdroast on a dedicated Linux box used to require. In fact, I figured "He's done such a nice job, why ditz around with another distro?" So last time I built a box, I just used the knx2hd installer on the CD to copy Knoppix to the hard drive. Polish it off with apt-get update, apt-get upgrade, and in less than an hour I had a box with all the juicy goodness of Debian Sarge plus those little extras that make Knoppix so sweet.

      --
      "Ain't no right way to do a wrong thing."
    10. Re:I use it on crapped on WIndows boxes too.. by Anonymous Coward · · Score: 0

      Open source is really a reptilian plot so that they can get all the
      governments to switch from proprietary to open source solutions so
      that they can replace key heads of state with reptilian impostors

      I MEAN THIS IS JUST COMMON SENSE PEOPLE

  6. what a coincedence by drunken+dash · · Score: 5, Funny

    i just burnt myself a cd of knoppix-3.8 the other day, for just this reason! although i've had no reason to use it (yet), im hoping my system starts acting up soon so i finally have an excuse to use it :P

    --
    Enjoy an e-piphany
    1. Re:what a coincedence by superpulpsicle · · Score: 2, Insightful

      I have never needed to rely on knoppix. For every major failure, I just use the setup installation OS CDs to boot.

    2. Re:what a coincedence by Anonymous Coward · · Score: 0

      There is no 3.8 its only up to 3.7

    3. Re:what a coincedence by gardyloo · · Score: 1

      That's what makes it such a huge coincidence.

    4. Re:what a coincedence by POLAX · · Score: 1

      Where'd you get knoppix 3.8? None of the mirrors have it available...

    5. Re:what a coincedence by Anonymous Coward · · Score: 0

      Maybe your being funny but I'll bite in case others fell the same!
      Your method does work but is not always the best or fastest method. We have hundreds of machines. If a users goes down, we supply them a standard image on a new machine to work on while we retrieve what we can from the existing HD. With Knoppix, we can boot and pull stuff they require from the HD without using the native OS at all. We could spend time hoping to recover with the OS install CD but quite honestly, it will not save any time at all. What files were corrupt and replaced? Do we need to patch the machine again because of what might have been replaced? Are there bad sectors? Is the HD itself bad? The save off process with Knoppix (or similar) takes less then 5 minutes and over the network, we can copy back to their new machine what they need. The main advantage of a bootable CD is you do not rely on the potentially corrupt (either hardware or software), Knoppix fails much more gracefully when it gets to corrupt areas of a bad disk much better then W2K and XP do. You can still copy off what is readable without the OS choking and failing to allow further access to the disk.
      To each is own but don't limit yourself to the OS disk simply out of spite. Knoppix is a very useful tool regardless if you specifically have never needed it.

    6. Re:what a coincedence by underYOU · · Score: 1

      I always keep knoppix handy... you can find it in both my laptop bags too... plus my set of cds I take with me when repairing pcs. It has saved the day many times.

      --
      ***This sig has been detected as spyware by Microsoft Anti-Spyware*** Threat risk: HIGH
    7. Re:what a coincedence by Mantorp · · Score: 1

      Last time I bought a PC I didn't get any installation discs. I used Knoppix to move some data off the PC before doing a system restore. Turned out it didn't lose any data, but better safe than sorry.

    8. Re:what a coincedence by jayed_99 · · Score: 1

      im hoping my system starts acting up soon so i finally have an excuse to use itp>
      Give me an account on your machine, and I'll take care of that for you.

  7. Damn Small Linux by tuxliner · · Score: 5, Informative

    In case you need a smaller, Knoppix based, distro : Damn Small Linux is much smaller and is very good as a system rescue tool too.

    1. Re:Damn Small Linux by Anonymous Coward · · Score: 0

      wonderful distro, lossy at pulling up a variety of disks, partitions and geometry in predicatable ways.

      i've had to take dsl and throw it out the window on several occassions because it can't detect ordinary partitions on hda.

      whip out my "recovery is possible" and i'm back in business. it see's my partitions just like slackware or redhat sees them.

      dsl..."hello"...they're right there!!! wtf ....#fdisk -l...(stares)..(mouths some choice phrases)...cat /proc/ide/stuff cat /proc/partitions...ahhh fuck it. starts to rummage for RIP cd.

    2. Re:Damn Small Linux by BaldGhoti · · Score: 2, Interesting

      Unfortunately, the name is frequently frowned upon by PHB's. "Does the name of that program use... PROFANITY?"

      I've used Knoppix to recover data from a WinXP box with locked-down security--my fiancee's OS bit it when she installed XP SP2 and the files were restricted to her account, so I put a spare HD in her machine and copied over all of her data using Knoppix (which conveniently ignores Windows security settings). Then we did a full reinstall from scratch--no data loss at all.

      --
      [insert witty sig here]
    3. Re:Damn Small Linux by Anonymous Coward · · Score: 0

      " wonderful distro, lossy at pulling up a variety of disks, partitions and geometry in predicatable ways.

      i've had to take dsl and throw it out the window on several occassions because it can't detect ordinary partitions on hda.

      whip out my "recovery is possible" and i'm back in business. it see's my partitions just like slackware or redhat sees them.

      dsl..."hello"...they're right there!!! wtf ....#fdisk -l...(stares)..(mouths some choice phrases)...cat /proc/ide/stuff cat /proc/partitions...ahhh fuck it. starts to rummage for RIP cd.
      "

      I wish this made some sense

    4. Re:Damn Small Linux by Anonymous Coward · · Score: 0

      For those not aware of the chief benefit of DSL, it is this:

      You can burn it to a 50mb credit card sized CD and carry it around in your wallet.

      I keep one in mine, next to the condoms. I know, I know, you shouldn't keep condoms in a wallet, but it's not like they're in any danger of being used before they expire.

    5. Re:Damn Small Linux by kaustik · · Score: 2, Interesting

      I actually posted this a couple of days ago, but don't think I got it in in time to have actually been read:

      ----------------
      There is a very handy little tool called the Metropipe Virtual Privacy Machine that fits nicely on a 128MB USB drive. You pop it into a computer that is booted into Windows and can bring up a virtual machine running a tiny version of Linux, complete with GUI, web, email, etc. There is even a tool included that opens up an encrypted tunnel to Metropipe, bypassing any proxy servers or web filtering that may be in place on your network. The entire OS remains on the USB drive, leaving no temporary Internet files or other traces behind. It is nice to have if you commonly walk into restricted or monitored networks and want some privacy. The tools might also include a file browser so that you can bypass local NTFS security, but I haven't looked. I know that Knoppix (sp?) can do similar things, but this does not require a reboot or access to BIOS to allow booting of a CD ROM. It only requires that the USB is active.
      The site includes download links.

    6. Re:Damn Small Linux by Anonymous Coward · · Score: 0

      ... waiting for a girl with computer problems that can be fixed with DSL and that thinks that a reward afterwards would be acceptable? Devious plan, but it just might work.

    7. Re:Damn Small Linux by Eraser_ · · Score: 1

      Just so you know, next time when you reinstall Windows XP, turn off simple file sharing in folder options, open the new normal security tab as administrator, take ownership (and replace on sub files/folders), add yourself as a full control user (and replace...), and for cleanup sake remove the user listed as S-1-5..., thats the SID from the previous install of windows which presumably will never be recovered.

      If the files are encrypted all bets are off.

    8. Re:Damn Small Linux by SlinkyToad · · Score: 1

      Anyone use a Knoppix or DSL distro to troubleshoot Mac OS disks? I had an OS 9 disk crap out on me and tried to troubleshoot with Knoppix STD to no avail. I don't think it had the necessary stuff to read Mac filesystems.

    9. Re:Damn Small Linux by elli2358 · · Score: 1

      Let's not forget another small, Knoppix based, distro: Feather Linux. It's small enough to work of a flash drive (comes in 60 meg and 105 meg versions) :http://featherlinux.berlios.de/

    10. Re:Damn Small Linux by Master+of+Transhuman · · Score: 1

      He's saying - after some analysis of mine - that Damn Small Linux can't read his partitions even though everything else can, so he uses the "RIP" (Recovery Is Possible) live CD to recover his system.

      --
      Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
    11. Re:Damn Small Linux by Anonymous Coward · · Score: 0

      DSL isn't Knoppix-based (though it used to be).

    12. Re:Damn Small Linux by JaxGator75 · · Score: 1
      Thanks for the link! If it works as advertised, it sounds like a VERY handy tool... I got a Secure USB keychain drive for Xmas (1gb baby! woohoo!) and was wondering how I would put it to use...

      --
      Come and see the violence inherent in the system!
  8. I once saved the day with Knoppix by Rude+Turnip · · Score: 5, Interesting

    A co-worker was trying to salvage some files from a dying Windows 98 machine. Win98 was having the damndest time accepting a USB memory drive (even with the right drivers installed). Five minutes with Knoppix and all his important files (mainly family tree stuff) was backed up to the USB memory drive.

    1. Re:I once saved the day with Knoppix by advocate_one · · Score: 4, Interesting
      Christmas at my Daughter's house... her machine was playing up and I'd bought her a 256Mb USB Keydrive to use to keep her important data on...

      cut a long story short... how the heck do you install a USB key drive onto a win98 system that has no internet connection and the driver files are only to be found on the USB drive that win98 recognises as new hardware, but won't actually scan it for the drivers as it hasn't allocated it a drive letter yet... well, Knoppix saved the day and allowed me to get the drivers copied off to a fresh directory on her hard drive so that win98 could then find them...

      She now wants me to set it up dual boot for her as she was mightily impressed with how far Linux has come in the few years since she last played with it (Mandrake 7.2)

      --
      Donald 'Duck' Dunn: We had a band powerful enough to turn goat piss into gasoline.
    2. Re:I once saved the day with Knoppix by Saeger · · Score: 0, Offtopic

      I still don't understand all the fuss about family trees. Is navel gazing that fascinating?

      --
      Power to the Peaceful
  9. Wisdom from the yesteryears. by Anonymous Coward · · Score: 0

    > Perhaps every administrator should have a Knoppix CD on reserve.

    Duh? Let's hear some NEWS for nerds.

  10. enough ? maybe ? please, Y.A.K.A. by l3v1 · · Score: 0

    /* I'm going to be foftopic again, nevermind.*/
    I don't know, tell me, am I alone in feeling there were just one too many Knoppix-rescue articles on /. over the last months ? For God's sake, we really don't have anything else to talk about ?

    I'm sure many hundreds of ./ users could come up with dozens of ways to rescue data with or without Knoppix, and most of us have some kind of rescue CD's. Do we really need Y.A.K.A. (Yet Another Knoppix Article) ?

    --
    I am putting myself to the fullest possible use, which is all I can think that any conscious entity can ever hope to do.
    1. Re:enough ? maybe ? please, Y.A.K.A. by phats+garage · · Score: 1
      Not me, theres always something new, for example, "gpart" (guesses partitions) is a new one for me and I'm happier for reading about it.

      Better than apple articles for me :-D (dons flame suit)

    2. Re:enough ? maybe ? please, Y.A.K.A. by Anonymous Coward · · Score: 0

      I fully agree, please post more iPod articles where we can completely ignore all technical aspects of the product and discuss subjective things like great sytle, it feels right, and just looks good, and the features you don't want on your iPod that other portable players have. Yes, I love hearing the same things about the iPod over and over again from the same people.

    3. Re:enough ? maybe ? please, Y.A.K.A. by Anonymous Coward · · Score: 0

      Me too! (Ya ya, no karma, hence the AC post). But I *really* could have used this knowledge about 2 months ago when PartitionMagic screwed up the partition table on my laptop. It clobbered the primary partition - but I didn't even try to move that one! (And it used to be such a reliable program.) In any case, I ended up having to re-partition, re-format, and re-install, but I'm sure gpart would have made that unnecessary. Oh well.

    4. Re:enough ? maybe ? please, Y.A.K.A. by Master+of+Transhuman · · Score: 1


      Second that - Partition Magic from 5.0 to 8.0 has never given me anything but grief. "Market leading partition manager", my ass...

      Damn thing couldn't even READ my partition table even when everything else on the system could and ran perfectly fine... So totally Windows-centric that having a LILO in the MBR drives it insane, apparently...

      Had much better luck with Ranish Partition Manager, and lately no problems with BootItNG.

      Only thing these won't do, though, is MERGE two partitions...

      --
      Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
  11. I agree, but... by schmobag · · Score: 2, Insightful

    ...what's with the "Perhaps..."? IMHO, some kind of linux rescue cd is a sysadmin must-have.

    1. Re:I agree, but... by m50d · · Score: 1

      Well, there are many better alternatives to knoppix imo.

      --
      I am trolling
  12. Knoppix to the rescue by pirodude · · Score: 1

    I've used knoppix to recover both windows and linux systems for years. Whenever a windows install is too hosed to boot I'll use knoppix to get all the data moved over to another system (if it's a laptop). I've used knoppix to fix hosed lilo configs, recover data from hacked installs, etc. It's a great tool for any admin.

    1. Re:Knoppix to the rescue by Anonymous Coward · · Score: 0

      Try as I might, I can't get the newer Mac Knoppixes to run on my (April 2004) PowerBook. Any tips?

      Anyone?

    2. Re:Knoppix to the rescue by Homology · · Score: 1
      Whenever a windows install is too hosed to boot I'll use knoppix to get all the data moved over to another system (if it's a laptop).

      For Windows system it's best to use a good cleaner ;-)

    3. Re:Knoppix to the rescue by Anonymous Coward · · Score: 1, Informative

      For windows data recovery Bart's PE is a good cd to pull files of the "c:" drive

      http://www.nu2.nu/pebuilder/

    4. Re:Knoppix to the rescue by Anonymous Coward · · Score: 0

      You have Knoppix STD?
      And all I got is crappy Herpes...

    5. Re:Knoppix to the rescue by Master+of+Transhuman · · Score: 1


      Second that. A tech I gave a Bart's PE to used it the first week to access a guy's NTFS drive and pull files off it onto his USB key drive.

      The primary advantage of Bart's is the ability to access NTFS *natively* using Windows XP's own drivers.

      But of course for SOME bozos on /., that's an "illegal" use of the Windows DLLs, not to mention the kernel itself. Some Windows trolls think that using anything but Windows or anything FROM Windows is a hanging offense (hint: they all voted for Bush, I think).

      --
      Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
    6. Re:Knoppix to the rescue by JaxGator75 · · Score: 1
      I've used Bart PE several times, as well as Knoppix. Bart PE is better for me as I don't know much about Linux (yet). There's a great tool bundled with BartPE that functions like "Ghost", but without all the bloat. Saved my bacon a few times in a short time period a couple of months ago...

      --
      Come and see the violence inherent in the system!
  13. Wow... by JossiRossi · · Score: 0, Redundant

    This story is over a month old. The story was origianlly posted Dec. 4, 2004.

    --
    Just a boy doing unproffesional IT work that's way above his head.
    1. Re:Wow... by JossiRossi · · Score: 1

      *Ahem* I mean Dec. 2, 2004

      --
      Just a boy doing unproffesional IT work that's way above his head.
  14. Knoppix to the rescue by Storm · · Score: 1, Insightful
    I always keep multiple Knoppix CDs in my laptop bag, plus a couple of variants. I have two of the latest, one for emergencies, and one for Linux evangelism...Plus, when I was toting a Powerbook, I had to have a Mac Knoppix.

    In addition, being a security engineer, I always have a copy of Auditor and a Knoppix STD "in case of emergency." Hey, you never know when you will be called on to...er, penetrate.

    --
    --Storm
  15. This linux sounds too dangerous for mortals by Anonymous Coward · · Score: 0

    Letting you do stuff and all. For the record, there are similar boot disks for NT environments that let you do the same thing, only with a mouse as god intended.

  16. Other distros work, too by gardyloo · · Score: 4, Informative

    Not only Knoppix, but many of the new "live CDs" work very well for such rescues on hosed (Windows, and others) systems. I, myself, have used Knoppix, Mandrake, PClinuxOS and Mepis as rescue CDs (preferring Mepis, but that's just me), and I've seen Ubuntu, SUSE, and some others used in the same ways.

  17. Wait, wait, wait by Anonymous Coward · · Score: 0

    You're talking about rescuing a Linux system? I thought they were infallible?!

    1. Re:Wait, wait, wait by Anonymous Coward · · Score: 0

      NO! We're talking about rescueing Windows systems using Linux to do it!

  18. No Backups? by goldspider · · Score: 2, Funny

    OK let me see if I have this straight.

    Some "battle-hardened" sysadmin (who apparently doesn't to do regular backups... hmm...) salvages a few systems with Knoppix, and it's front-page news?

    Must be a real slow news day.

    --
    "Ask not what your country can do for you." --John F. Kennedy
    1. Re:No Backups? by Anonymous Coward · · Score: 0

      Oh Shut Up. It's a couple of stories about him fooling with his personal machines. Moreover, it never mentions backups once. Get a life.

    2. Re:No Backups? by FLOOBYDUST · · Score: 1

      Yes....he is living his Baywatch fantasy.... and he thinks his CD is Pamela Anderson......

    3. Re:No Backups? by rigmort · · Score: 1

      THANK YOU. I was having a hard time, as a sys admin myself, believing that a "battle-hardened" sys admin would be going without backups. I do full weeklies and incrementals twice a day, not to mention a snap server mirroring my data. Yes, this includes 15 servers and hundreds of desktops.

  19. Knoppix to the rescue by Anonymous Coward · · Score: 0

    I work in an all windows repair shop, with the only linux desktop. Knoppix, and Knoppix-STD have saved the day on many occasions, specially with NTFS, to save from having to pull the hdd out and put it in another machine. Can't beat network support for moving files around either.

  20. Re:Why is this a story? by BaldGhoti · · Score: 4, Insightful

    Oh, come on, like you've never fouled anything up the first time you tried to play with it.

    --
    [insert witty sig here]
  21. They just televised one of these on CNN! by Anonymous Coward · · Score: 0

    They just televised on of these rescues. The guy's knoppix had turned quite blue, as he had lost his trousers and the water was really cold.

  22. laptop -FDD by GtKincaid · · Score: 1

    For those of us without a floppy drive on our laptops (and no usb floppy drive) knoppix type live cd's are a god send , after many failed and funny kernel patches , i swear i would of gone totaly insane without the ability to boot knoppix,chroot and apt-get a replacment kernel

    1. Re:laptop -FDD by TCM · · Score: 1

      after many failed and funny kernel patches , i swear i would of gone totaly insane without the ability to boot knoppix,chroot and apt-get a replacment kernel

      Uh, what the hell? You install new kernels in-place? Rename the old one, install the new one and use a boot loader that understands the filesystem and is free from arcane kludges like storing the sector number where the kernel starts. I'm talking about GRUB instead of LILO.

      The BSD's boot loaders can all boot kernels by name btw.

      --
      Of course it runs NetBSD. BTC: 1NT7QvbetmANwaMzhpVL6
  23. Re:Why is this a story? by compro01 · · Score: 3, Insightful

    yes, but everyone does something profoundly stupid every once in awhile.

    Knoppix is good for fixing the problem, regardless of whether the problem was caused by an ID10T error or an OS crash.

    --
    upon the advice of my lawyer, i have no sig at this time
  24. Knoppix - a lifesaver by krbvroc1 · · Score: 2, Informative

    I've used bootable linux CD-ROM for many system saving tasks. Usually it is to fix windows machines that have been infected with a virus. A friend, neighbor, or coworker will be unable to boot due to some registry corruption or 'missing lsass.exe' virus corruption. Using knoppix I've been able to mount the NTFS file system and repair from a special hidden copy of the system hives.

    I've also used Toms root boot disk - which is linux based but much smaller (designed to fit on a floppy).

    Recently, I've been using Kanotix distro which was derived/inspired by Knoppix. Its debian sid based and includes many more drivers built in - my laptop wireless works out of the box with Kanotix and the ndiswrapper. It includes 'captive-ntfs' which lets me mount NTFS as writeable (important when modifying those registry hives). Kanotix website is in both German and English. I wont link to it since I haven't asked permission.

    1. Re:Knoppix - a lifesaver by Mage+Powers · · Score: 1

      The newest version of Knoppix does have captive ntfs, but it gets the winxp stuff off of the hd, which is okay unless you are testing it on someone elses computer (ntoskrnl.exe was changed)

      captive-installer-knoppix is a quick and dirty mount partition ; check for windows/system32/ntoskrnl.exe etc ; umount ; next kind of loop
      captive-install-aquire is a gui for finding suitable files, scanned everything including the cd when I ran it.

      I am curious of what the differences between current knoppix and current kanotix are.

    2. Re:Knoppix - a lifesaver by PitaBred · · Score: 1

      Dude, it's the freaking WWW. You should have implicit permission to link to the front page of ANY site, and there's a good argument that if you put anything in the publicly accessible space, then it should be able to be linked to.
      Seriously, grow some cojones and a brain, and realize that they might WANT you to link to them.

    3. Re:Knoppix - a lifesaver by krbvroc1 · · Score: 2, Insightful

      Dude, it's the freaking WWW. You should have implicit permission to link to the front page of ANY site, and there's a good argument that if you put anything in the publicly accessible space, then it should be able to be linked to.

      Dude, it's called being nice. It can be rude to link to a site and let them be slashdotted without asking them if their servers can handle it. We aren't talking about an site designed for high bandwidth; they offload their ISO downloads to a few mirrors and bittorrent. In addition these guys are overseas in Germany. I didn't want to be responsible for their bandwidth costs to skyrocket.

      Seriously, grow some cojones and a brain, and realize that they might WANT you to link to them.
      Well since I didn't ask them if their server could handle the load, I err'd on the side of kindness. Apparently you prefer to assume 'they might WANT' to be slashdotted.

    4. Re:Knoppix - a lifesaver by Anonymous Coward · · Score: 0
    5. Re:Knoppix - a lifesaver by peter_gzowski · · Score: 2, Interesting

      Usually it is to fix windows machines that have been infected with a virus.

      What would be killer is if there were a Linux-based program that would scan a Windows file system for viruses and remove them, for those times that you don't have a hidden copy of the system.

      --
      "Now gluttony and exploitation serves eight!" - TV's Frank
    6. Re:Knoppix - a lifesaver by Anonymous Coward · · Score: 0

      Slow down. It also shows a big pile of arrogance on your side to assume your post could cause a slashdotting. Sheesh.

    7. Re:Knoppix - a lifesaver by Milkyman · · Score: 1

      often i find myself fixing windows for people and it would be helpful to me if you could tell us where this special hiddeny copy of the uh.. system hives... I'm not joking, i assumed you meant files but looking at my keyboard there doesn't seem to be any easy way to mistype hives when you intend to type files.

    8. Re:Knoppix - a lifesaver by krbvroc1 · · Score: 1

      See http://support.microsoft.com/?kbid=307545 for a description. I used Kanotix for most of the steps rather than booting a Recovery Console.

      Basically, under XP, if system restore is turned on, multiple snapshots of the hives are saved during system restore intervals. By using one of the snapshots from a date earlier than the virus infection you can recover. I've used the procedure on several machines and have recovered them.

    9. Re:Knoppix - a lifesaver by 1u3hr · · Score: 1
      It can be rude to link to a site and let them be slashdotted without asking them if their servers can handle it. We aren't talking about an site designed for high bandwidth

      I think it unlikely a link deep in the comments will generate a slashdotting. I've clicked on lots of links in earlier comments and the sites all seemed snappy. Anyway, you can safely link to Distrowatch's Kanotix page.

    10. Re:Knoppix - a lifesaver by Filmwatcher888 · · Score: 1

      There is a sort-of "Winnopix" that's available. It's called BartPE. It's a CD bootable version of WinXP that lets you add almost any software package, including foreign registry editors, spyware and virus scanners, and data recovery/forensics tools. You can find it here.

  25. Knoppix website by Patik · · Score: 2, Informative
    It may not be the official homepage, but it's the best one I've found. Knoppix.net

    I recommend downloading it via bit torrent here.

  26. Re:Why is this a story? by unts · · Score: 2

    Ditto!

    I presume parent is some godlike person who never makes a mistake.

  27. Mepis may be a better choice by EdipisReks · · Score: 2, Interesting

    Where i work, at the University of Cincinnati, our "official" (official because it's what my boss favors, not because of university policy or anything) live distro is knoppix and it has certainly helped in situations where machines have been royally screwed up, for whatever reason. i've had better luck with mepis, hower. i find that it is faster and more compatible (especially with properly recognizing and using sound cards), and that it is also more fully featured. it makes a good install, too.

    1. Re:Mepis may be a better choice by Anonymous Coward · · Score: 1, Funny

      Okay, so I'm scratching my head trying to imagine a scenario where you need to rescue a system and getting the sound card working is critical. Or relevant.

      No luck so far.

    2. Re:Mepis may be a better choice by darc · · Score: 2, Funny

      Well, suppose you're in Starfleet, and the holodeck is acting up. Now, there's a series of commands that just can't be activated using the LCARS interface, and instead has to be inputted using voice authentication through the ship's AI engine. Basically, you put in the knoppix cd, reboot your starship, and then...

      "Computer, vee eye slash etc slash lye low"
      "escape down down down colon a ...."

      --
      Tired of legitimate data sources? Try UNCYCLOPEDIA
  28. Re:Why is this a story? by gardyloo · · Score: 4, Funny

    Yeah, but lotion seems to take care of that, after a little while.

  29. I agree. by Anonymous Coward · · Score: 0

    Some guy rescues some data from a fubar'd system, writes about it in an article, and submits it to Slashdot. Repeat.

    Don't get me wrong; Knoppix is useful for this kind of thing, but do we need to be reminded of it so often? Similarly, I am getting tired of finding the latest Microsoft bug posted to the frong page. We get it. Microsoft software is buggy. Can't you just make a "Microsoft BUGS" section so that I can ignore all those stories? They probably won't because that would cut their front page stories in half.

  30. Hero of the day? by flibuste · · Score: 1

    I for once, do not welcome "Heroic" as an adjective for such a small feat as to recover a partition table from Knoppix. Really, the "Heroic" adjective is a bit too much. How about the one who saved the Windows Server day by using a boot floppy then? Restoring a failing Windows install, THAT is heroism!

  31. Knoppix used to save WIn98 by rscrawford · · Score: 2, Interesting

    My young sister brought me her laptop which was probably the most compromised machine I'd ever seen: tons of adware, spyware, and viruses had made it almost unusable. I'd promised I'd fix it, but I couldn't even get it to boot to the point where I could rescue her files. I made some fixes so that I could boot it, but whenever I tried to copy her files to a special share on my Linux box, some virus would pop up and kill the connection before it was done. I was just about to give up, when I thought of booting up the computer with a Knoppix CD I had. So I did, and mounted her hard drive and tar'ed up all of her files and copied them to the Linux share. I scanned all of her files for viruses and whatnot on that computer while wiping her computer and reinstalling Windows. I wasn't able to convince her to switch to Debian, but I did install AdAware, Spybot S&D, Thunderbird, and Firefox, and hid all links to IE (I did install the "View in IE" extension for her, just in case).

    She's gotten a new laptop since then, one which runs WinXP. But she's now a Firefox fanatic; she even asked for a Firefox T-shirt for Christmas. I'm so proud. Now if only she'd let me dual-boot her machine.

    --
    -- The reason it's called the right wing? Irony.
    1. Re:Knoppix used to save WIn98 by Jacco+de+Leeuw · · Score: 1
      So I did, and mounted her hard drive and tar'ed up all of her files and copied them to the Linux share. She's gotten a new laptop since then, one which runs WinXP.

      I used Knoppix for backing up the Windows 98 disk of my parents, but I'm not sure if the same routine will work with XP (think Alternate Data Streams etc.). Does anyone know? I'm not particularly fond of imaging programs...

      --
      -------
      Warning: Slashdot may contain traces of nuts.
    2. Re:Knoppix used to save WIn98 by Nintendork · · Score: 1, Interesting
      I usually try to prevent a reinstall by mounting the drive on another computer and scanning it with AV software, Ad-Aware, and Spybot. Toss the drive back in the bastard system and boot up. From there, run Hijack This to manually rip out things that Spybot and Ad-Aware miss. After that, they're "Fixed." If they're using 95/98/ME and are willing to buy the upgrade, I get them on the latest NT OS (WinXP currently). The 9x family is a complete pile of shit and a stark contrast to the stable NT family. After that, I recommend that they add more memory (512MB for XP is perfect for most users, including myself) and more importantly, a faster hard drive (A new model 7200RPM drive will make older systems seem like new). I can migrate them to the new hard drive very easily using NTBackup (Included with Windows). As far as where I order from, I basically do a pricewatch search for 7200RPM and pick the least expensive drive with internal transfer rates on par with the newest models. Storage capacity usually isn't an issue unless the system is for someone who pirates all day every day. For the memory, I go to www.18004memory.com to ensure compatability and get great prices. If they are really liking the improvements thus far, a $75-$100 video card is last. You can find roundup reviews to figure out which card has the best bang for the buck, then do a pricewatch search on the model. To help prevent future housecalls, I explain to them that it's best to read all messages when browsing the Internet so they know what they are downloading and aren't suckered into installing by clicking a No button. I show them how to update and use the spyware removal tools. I rarely ever have to go back after one of my housecalls. The most I'lll see is a call or two from the user, paranoid about installing something they're not sure if they need such as Macromedia Flash.

      -Lucas

    3. Re:Knoppix used to save WIn98 by Stephen+Samuel · · Score: 2, Insightful
      I had a bit more luck. My roommate moved in with an NT-2000 box, that she couldn't remember the password to (It'd been in storage for a while). I resized the partition, and installed Knoppix... It was months later that I found a tool to replace the NT passwords, but by that time she had gotten used to knoppix.

      This weekend she asked me to toast the NT partition alltogether (once we replace her fried power supply). I'm sooo proud of her!

      For your sister, ask her for permission to set aside about 5GB for a knoppix partition, Tell her it's a backup for the next time windows gets virus-infected, so she has SOMETHING to work with no matter what... then encourage her to play with it so that she's accustomed to the system in the case of an emergency.

      --
      Free Software: Like love, it grows best when given away.
    4. Re:Knoppix used to save WIn98 by Anonymous Coward · · Score: 0

      I did exactly what you suggest. I had an Athlon 800 running Win98SE with a 20GB harddrive. I bought a new 7200rpm 120GB harddrive with an 8MB cache (my local computer shop had a special on HDs :) and installed Windows XP - and it really did feel like a new machine. Much more stable, and there is a noticeable speed improvement.

    5. Re:Knoppix used to save WIn98 by gottabeme · · Score: 1

      What I've done is use partimage to image the entire partition across a network (wireless, in this case) to another computer. partimage has built-in compression to help reduce space requirements on the receiving disk. It takes a few hours, at least, but it is worth it. If anything goes wrong, boot Knoppix again and use partimage to restore the entire partition from the copy on the networked computer.

      --
      "Those who consume the bulk of goods are those who make them. We must never forget this secret of our prosperity."
  32. Re:Why is this a story? by Homology · · Score: 1
    Oh, come on, like you've never fouled anything up the first time you tried to play with it.

    Sure, I make mistakes, as everyone else. But I try to make the mistakes on a test machine instead of a production server.

  33. So can a Gentoo install CD by bkw.org · · Score: 1

    Those nice 50 meg gentoo install cd's can do the same thing! Hell just about any LIVE CD for that matter could.

    bkw

  34. The lesson I learned from this... by TrollBridge · · Score: 0, Flamebait

    ...is that I can do stupid things without taking backups, and maintain my self-ascribed "battle-hardened admin" status, with only a single Knippix CD.

    I'm sorry folks, but this story should serve as an example of what NOT to do.

    --
    There's a Mercedes gap too. I want one and can't afford one, but it's not government's job to do anything about it.
  35. READ. ITS FUNNY. by Anonymous Coward · · Score: 0
    I'm using Knoppix as a FreeSBEE replacement.
    :r!laugh --respectfully
  36. yea but by WormholeFiend · · Score: 1

    can you run a cluster with it?

    1. Re:yea but by goldorak_dan · · Score: 1
    2. Re:yea but by Anonymous Coward · · Score: 0

      Why yes, yes you can. Google Cluster Knoppix :-)

  37. Re:Why is this a story? by Andrewkov · · Score: 0, Troll

    Using Knoppix to rescue a non-booting system .. common, people, they teach this stuff on Blues Clues! Is this news for nerds?

  38. Re:Why is this a story? by darkmeridian · · Score: 1

    I am not that smart, but I have never messed up a production system because I run test systems. Even if I did make a mistake, it would not be because I used an out of spec IDE cable. I keep backups of my data, too, especially if I am going to be messing with the partition information in anyway--even when using Partition Magic. The obvious stuff, you know, that everyone should do, like look both ways before crossing the street.

    --
    A NYC lawyer blogs. http://www.chuangblog.com/
  39. Tech-support by Phrekie · · Score: 1

    I've used knoppix a couple of times during my stay at a small tech-support (about 1000 computers supported) Often users came in with computers that didn't boot for one or another reason. It was really handy to just boot knoppix, save their important files to a usb-harddrive and just re-install their whole system.

  40. RIP by Anonymous Coward · · Score: 0

    I prefer the RIP ( Recovery Is Possible) CD for fixing/salvaging systems. It boots faster, supports BSD, and Linux filesystems and has only the tools needed for the job.

  41. Re:Knoppix to the rescue - Use those AOL mailers! by wrenhunt · · Score: 1

    Now you know what to do with all those metal cans and lucite plastic mailers that the AOL CDs come in!
    Load 'em up with Knoppix and stick in your travel bag, suitcase etc., so you always have one with 'ya!

  42. Re:Why is this a story? by crazyeddie740 · · Score: 1

    Eh, we all do stupid things. Sure, ideally, he shouldn't have screwed up. But it's nice to know you can fix things when you do screw up.

  43. RTFM by BaldGhoti · · Score: 4, Informative

    He didn't make these mistakes on a production server either. The first was on his main workstation (not a server) and the second was on his laptop (also not a server).

    Really, if you wanna flame him, you'd be safer pointing out that this is just some guy dicking around on his home machine and managing to not scrag his mp3 collection thanks to the wonder of Knoppix.

    --
    [insert witty sig here]
    1. Re:RTFM by Homology · · Score: 1
      Erh, you have a type in the subect line. You probably(?) meant RTFA and not RTFM .

      In any case, I was replying to your reply to grandparent post

    2. Re:RTFM by pklinken · · Score: 0

      you're on ignore, buddy.

  44. Re:Why is this a story? by Software · · Score: 2, Informative
    Well, he wasn't working on a server:

    "The first and only time I experimented with out-of-spec IDE cables was on my main workstation."
    And he had a reason for out of spec cables: he couldn't reach the connector on the motherboard.

    For not reading GRUB parameters, well, there's just no excuse for that.

  45. Timing Is Everything by robwmc · · Score: 1

    I just had a drive crash in a laptop. I couldn't get the windows disk to reformat or repartition my drive. Knoppix to the rescue. I repartitioned the drive and then that other OS was finally able to reformat and re-install. I now keep a Knoppix disk with me where ever I go.

  46. Re:Why is this a story? by geekman · · Score: 3, Informative

    I disagree. Every sysadmin I have ever known has made mistakes. Knowing how to bail yourself out is what makes you a great sysadmin. The person behind the previous post denies his/her own human qualities.

    One other thing.... avoid doing dangerous admin commands when highly stressed or tired. I once deleted an entire directory I didn't intend to because I forgot the directory was hardlinked to another location.

    As a result, 10 Virtual Servers, including a domain controller, suddenly blinked off. I had blown every one of them away in one misguided command.

    --
    Reality is Relative.
  47. Re:Why is this a story? by Anonymous Coward · · Score: 0
    The first and only time I experimented with out-of-spec IDE cables was on my main workstation.


    For what it's worth, it looks like the guy was experimenting with his workstation at home.
  48. Re:Why is this a story? by gl4ss · · Score: 1

    so.. in which fantasy land you don't have to make compromises?

    --
    world was created 5 seconds before this post as it is.
  49. Re:Why is this a story? by BaldGhoti · · Score: 1

    See my comment above: this was done on his personal workstation and his laptop respectively--not a production server.

    --
    [insert witty sig here]
  50. Re:Why is this a story? by Anonymous Coward · · Score: 0

    Well, yea, fire is 'obviously' hot, but that doesn't stop people from playing with it. Until they get burned, at least.

    Nothing is obvious until you have to go through it once.

    To make a really extreme example: It seems obvious that a small chunk of ice flying at rediculous speeds could damage the leading edge of the Space Shuttle wing. Yet it still happened, and did we all call it 'obvious' before Columbia was lost?

  51. A healthy baby boy! by Anonymous Coward · · Score: 0

    A woman once gave birth in the back of my Knoppix CD--without a hitch!

    Good stuff!

  52. Slackware is also useful by m3rr · · Score: 1

    I have a Knoppix disk that I don't use. I run Slackware on everything, so, when I have a problem, i boot up bare.i with the Slack install disk and fix it that way.

    1. Re:Slackware is also useful by frovingslosh · · Score: 1

      I have an OS2 dik that I've nevr installed. So what's your point? Does Slackware boot live from the CD and auto-recognize the hardware nearly as well as Knoppix does? Is there anything that your slackware does that Knoppix doesn't do as well or better? What are you trying to suggest here?

      --
      I'm an American. I love this country and the freedoms that we used to have.
    2. Re:Slackware is also useful by duncanbojangles · · Score: 0

      Well, now that you mention it, Slax is a pretty nifty bootable Slackware CD. Of course it's not full to the brim with apps like Knoppix is, but that's also not the Slackware philosophy.

      The latest is 180 MB so it can fit on one of those small CDs, the "Professional" edition is 234 MB, and the "Frodo" edition is only 34 MB (console only, just the way we Slackers like it). It's pretty useful for futzing about with a system. It's got very good hardware detection (in my experience), KDE, fluxbox, and the programs you'll probably want for a nice minimal live CD. And I really like the KDE theme. :)
      --
      "Donkey, if it were me, you'd be dead."

  53. Downloads? by Anonymous Coward · · Score: 0

    Is there anywhere that I can download this that is not BitTorrent? I can't install Birtorrent at work. I hope someone can help me out here.

    1. Re:Downloads? by Wapiti-eater · · Score: 1

      Quite a few actualy.

      Helps if you visit the Knoppix web page of the subject in question and take even a brief look around. (VTFWP - I lay claim to a new acronym!)

      http://www.knopper.net/knoppix-mirrors/index-en. ht ml

      --
      Senior NCO in the fight against entropy. I've seen things, man. Things no one should have to see.....
    2. Re:Downloads? by frovingslosh · · Score: 1
      There are plenty of links for FTP and HTTP mirrors here.

      Some cautions:

      Not all mirrors have the current version (3.7), some only seem to have 3.6.

      Get the version with EN in the name for the English version, the version with DE in the name for the German version.

      Some mirrors are much slower than others, some may not be available at all.

      Download and check the md5 sum. I have seem a lot of problems with corruption of Knoppix downloads from FTP and HTTP sites, if you can't be bothered to check the md5 sum then maybe you shouldn't be running Linux. And know how to burn an ISO properly and burn it at 4x.

      --
      I'm an American. I love this country and the freedoms that we used to have.
    3. Re:Downloads? by smoker2 · · Score: 1

      Also:

      Make sure the label is facing up in the cd writer

      Make sure you turn the power on before you try to burn the disk

      Beware the internet may be watching you


      Who the fuck are you talking to ?

    4. Re:Downloads? by frovingslosh · · Score: 1

      I was talking to someone who didn't even know how to find the Knoppix iso file without asking here. After seeing how many of these people post the same problems over and over again on the knoppix.net forums, I thought it was only wise, if I was going to point such a person at the source of the iso file, to give them a few tips for the problems I see over and over again. Sorry to have bothered you.

      --
      I'm an American. I love this country and the freedoms that we used to have.
  54. Wha? by Anonymous Coward · · Score: 0

    First of all, Virtual PC and WMware emulate different hardware. You might even have to recompile the kernel after "migrating", though you could probably get away with just removing and adding the correct modules. Secondly, I'm not sure how you would use dd to copy the disk. Both Virtual PC and WMware have their own different virtual disk image formats. I highly doubt you could just diretly copy the disk image and have it work. My best guess is that you booted up Virtual PC with the Knoppix live cd, use dd on the virtual disk to copy it to a physical disk or partition, then booted up VMware and copied the physical disk or partition to a VMware virtual disk image. If so, that sounds retarded. If not, tell me how you did it.

  55. Re:Why is this a story? by Anonymous Coward · · Score: 0

    What spec should i look for?

  56. KNoppix- lifesaver for 615s by mekkab · · Score: 1

    Our 615s in the lab take forever to reboot.

    So I have a Knoppix live cd that has XGalaga on it; MAN is that fun! Now I look forward to the reboots!

    --
    In the future, I would want to not be isolated from my friends in the Space Station.
  57. Re:Why is this a story? by FrankNputer · · Score: 1

    OH MY GOD! CALL OUT THE MILITIA!!

    Read it again. He didn't use the cable on a "production server", he used it on his workstation. And I suppose no sysadmin ever f'ed their partition table?

    Damn. Lighten up.

  58. UBCD ... by paranoidgeek · · Score: 1

    I am quite fond of UBCD because it has a heap of floppy disk images that i can boot from on a CD ...

    Like memtest86 and Ranish Partition Manager

    Although it isnt a linux boot disk ( some of the earlier versions had RIP on it but im not too sure if it is still there ) it has saved my computer more than once.

    --
    Lima India November Uniform X-ray
  59. My dead drive by superid · · Score: 4, Interesting
    I had a slave drive with about 4GB of family photos. This included years of photos of my kids, and many irreplacable photos of my wifes mother who has since passed away. [ this is known as foreshadowing ]

    I built a brand new system and took that drive out and put it into another XP system as a slave....no problems at all. Then we had a power failure. I have 9 computers in my house, many with several drives, every system was fine, with the exception of that one drive. XP decided that this drive was no longer formatted.

    I took my lumps from the wife and began to look into data recovery. I tried SalvageNTFS, ScroungeNTFS and a demo from OnTrack. I forget the actual status that each tool reported but suffice it to say that none of them were successful and I just moved on. I did keep the drive though. A few weeks ago I stuffed it into what is to be a new webserver and put in a knoppix live cd. *poof* got everything back...every photo was recovered.

    Can't explain it, but I'm keeping a Knoppix CD in my box of tricks from now on.

    1. Re:My dead drive by Anonymous Coward · · Score: 0

      Can't explain it

      The old system liked the drive.
      The brand new system didn't like the drive
      The new webserver liked the drive.

      Doesn't look like a Knoppix rescue to me.

    2. Re:My dead drive by Anonymous Coward · · Score: 1, Insightful

      I had a slave drive with about 4GB of family photos ... Irreplacable

      Come on dude, burn a couple of Cds already. It won't take long or cost much. Two copies of the data in different places is always safer than one.

    3. Re:My dead drive by Anonymous Coward · · Score: 0

      So what you are saying is that you are smart enough to use Linux, but you aren't smart enough to burn some CDs or DVDs and BACK UP YOUR DATA.

    4. Re:My dead drive by gosand · · Score: 1

      Sometimes, even Knoppix can't save the day.
      I had a 160GB slave drive that I had only had for 5 months. After a reboot (which I don't do often at all, running Mandrake 10.0) the drive was mounted read only. WTF? Unmount it, try to remount it. Uh-oh. Can't remount it. Reboot, sector errors. Crap. Fiddle, fiddle. Boot Knoppix. Nothing worked. Bad sectors on the drive. Fdisk couldn't read it, it kept getting worse and worse. FUBAR. I finally got the RMA from newegg and hopefully will have a new drive soon. Unfortunately, this was my backup drive so it had a lot of data on it. It had 2 ~80GB partitions, so I couldn't even use dd to try and get a disk image because I didn't have that much space available anywhere. There was nothing critical on there, but a real PITA. My whole music collection, which I can get back (about 90%) by re-ripping my CDs. Ugh.

      --

      My beliefs do not require that you agree with them.

    5. Re:My dead drive by okigan · · Score: 1

      I had exactly the same story: winxp system, several hard drives. Reboot and out of the blue one of the drives no longer formated -- 120 GB gone....

      Tried this and that ... finally found R-STUDIO and (still with some pain) it found everything. Extracted the data, formated the drive: no bad sectors found. Seems like OS (winxp? :) forgot to flush the main file table.

    6. Re:My dead drive by tricops · · Score: 1

      Oh ye AC who likes to skim...

      Repeating what he said...
      "I built a brand new system and took that drive out and put it into another XP system as a slave....no problems at all."

      That's not quite the same thing a "brand new system doesn't like drive". It quit recognizing it after a power failure. I've had drives mysteriously decide to quit working after a reboot/outage like that before myself.

      --
      (\(\
      (^v^)
      (")")
      This is the cute vorpal bunny virus, copy to your sig or runaway, runaway in fear!
    7. Re:My dead drive by Anonymous Coward · · Score: 1, Insightful

      Dude.. BACKUPS.. repeat after me.. BACK... UPS... BACKUPS...

      Get the picture (no pun intended)?

      I have no data anywhere on any system that isn't backed up at least once every 24 hours.

      If you use Mac or Unix, it's easy to use rsync to make backups. On some client machines I run it every hour for easy cheap backups. If you're clever with hard links you can also do incremental backups or multiple backups with shared copies of common files.

      But anyway.

      BACKUPS. If you have good backups, the Knoppix CD is irrelevant.

    8. Re:My dead drive by Anonymous Coward · · Score: 0

      If you use Mac or Unix, it's easy to use rsync to make backups.

      If you use Windows without Cygwin - Robocopy.

    9. Re:My dead drive by HermanAB · · Score: 1

      Put the drive in the freezer overnight, then try again the next day. You'll likely be able to read all the data before it warms up.

      --
      Oh well, what the hell...
    10. Re:My dead drive by Anonymous Coward · · Score: 0

      I had a slave drive with about 4GB of family photos. This included years of photos of my kids, and many irreplacable photos of my wifes mother who has since passed away

      Oh my,
      This is slashdot, no need to hide the brutal truth which is that it was your 4 Gig porn collection...

    11. Re:My dead drive by baitisj2 · · Score: 1

      If you're lazy, just use software raid5, it's easier :P

  60. Re:Why is this a story? by RodRandom · · Score: 1

    Since when does idiot-proofing do any harm?

  61. PLD RescueCD by persaud · · Score: 2, Informative

    Contains 130Mb of tools on a 50 MB ISO. Can run from RAM, so CD can be removed after boot.

  62. Re:Why is this a story? by russint · · Score: 1

    "This guy should not be a sys-admin. First, he uses an IDE cable that is out of spec in a production server."

    The guy clearly says that he only used out of spec IDE cables on his workstation.

    --
    ^^
  63. knoppix is great. by shoota · · Score: 1

    I often use knoppix to transfer data when i upgrade to a knew hard drive, since i have all my ide channels full i unplug my operating system hard drive, hook up the new data drive and copy the files from the old data drive to the new, works like a charm

  64. PowerPC ? by wrenhunt · · Score: 1

    We've all done the Linux and Win NTFS stuff by now, but what about PowerPC (Mac OS X)? Any 'live' distros that don't have to be installed to disk first?

  65. subject by mrmeval · · Score: 1

    My 120 gig Maxwhore drive died but I was still able to recover my unbacked up information using some tools it had. I was quite amazed at being able to recover them.

    I have a stack of CDs, USB drives and pseudo mirror over the net.

    --
    I'd go on a Vegan diet but the delivery time from Vega is too long. --brownkitty
  66. One Alternative: BertPE by kisrael · · Score: 1

    Funny, just yesterday I blogged about some similar experiences...I had an XP box that would log me out as soon as I went to log in, and because all my passwords were blank some of the linux rescue CD based fixes wouldn't work...

    I decided to just grab my personal files off (one rule I have is to put all my personal stuff in c:\data\ ) To make a long story short, Bart's Preinstalled Environment (BartPE) bootable live windows CD/DVD, at the recommendation of Enkidu on alt.os.linux, turned out to be a better bet for my needs, letting me shove the files onto my laptop over the network. (I'm proficient at both Windows and Unix commandlines but not too great as an admin on either, so maybe that has something to do with my problems with, says, system-down rescue cd linux)

    --
    SO YOU'RE GOING TO DIE: The Comic for Dealing with Death
    1. Re:One Alternative: BertPE by Vengeance_au · · Score: 1
      and because all my passwords were blank
      Oh....My....Freaking....God....

      For the love of all that's holy, please put some passwords on the box! Tick that box that auto logs you in if you must, but no passwords is a recipe for pain and suffering.
    2. Re:One Alternative: BertPE by Anonymous Coward · · Score: 0
      ...and because all my passwords were blank..

      I thought that was you hammering on my firewall!

      ..I'm proficient at both Windows and Unix commandlines but not too great as an admin on either..

      We noticed.

      3C

    3. Re:One Alternative: BertPE by kisrael · · Score: 1

      Guess I've put too much faith in my Linksys router's firewall potential, then.

      --
      SO YOU'RE GOING TO DIE: The Comic for Dealing with Death
  67. ...and an excellent O'Reilly book on Knoppix by gatesh8r · · Score: 1

    Knoppix Hacks -- which has some nice tips & tools in it (even stuff you probably could have thought of but never bothered).

    NOTE: I am not the author nor do I work for O'Reilly Publishing. Anyone who says otherwise is going to find out what I learned from the O'Really series.

    --
    Karma whorin' since 1999
    1. Re:...and an excellent O'Reilly book on Knoppix by Anonymous Coward · · Score: 0

      You are the author and you work for O'Reilly Publishing.

  68. What "Knoppix Hacks" Didn't Include by Esion+Modnar · · Score: 2, Interesting
    Like how to "build in" a cheat code into your Knoppix remaster.

    The trick is, after you rsync the /cdrom directory to the master directory (see the book), cd to master/boot/isolinux and edit the isolinux.cfg file. Put your favorite cheat in the first APPEND line.

    This worked for Knoppix 3.4 and up. Don't know about earlier versions.

    --

    They say the first thing to go is your penis. Well, it's either that or your brain. I forget which...
  69. Re:I agree, but... (system design) by ardiri · · Score: 2, Informative

    as a sysadmin for many years; you learn very quickly NOT to put anything valuable on the same drive that boots/manages the operating system.

    i use /hda for booting/system and /hdb for *data*. if something screws up on any of the /hda partitions - you *reinstall* (or, try to recover it). bottom line is that none of your data gets messed up, because its on a *seperate drive* (note: not just seperate partition).

    i even take it one level further now by putting anything i need (especially development tools/kits) as vmware disc images. this way, i can easily move stuff between machines - and, i just need to install vmware to get started (beats installing everything again).

    operating systems should be something you can swap in/out without putting any of your valuable data at risk. hell, if you wanted to use a bootable linux from CD, and rom everything from a ram drive - why shouldn't you?

    i wasn't sure how to interpret this article. first, a guy who screws up his own systems; then tries to get acclaim on the "recovery stories". did anyone miss the guy wrote a book on this as well? seems like a publicity stunt.

    what happened to the old linux slackware days where all you needed was a boot and root floppy disc and you were all hunky dorey. nothing like vi'ing /etc/ files *sigh, those were the days*

  70. INSERT by EnigmaticSource · · Score: 5, Informative

    If you're going to suggest a Knoppix-STD alternative, why not name one that's intended for data recovery and system restoration...

    The only recovery disks that I've found worth using are a custom gentoo based live-cd and INSERT

    Knoppix-STD or some other live disk is good for imaging and file recovery, but lacks real utility... like editing a windows 2000 registry, or doing vfat/ntfs hacking

    Go Ahead, try INSERT (and yes, i know it's Knoppix Based)

    --
    The Geek in Black
    I know my BCD's (when I'm Sober)
    1. Re:INSERT by tpgp · · Score: 1

      Knoppix-STD or some other live disk is good for imaging and file recovery, but lacks real utility... like editing a windows 2000 registry, or doing vfat/ntfs hacking

      Knoppix come with chntpwd - which includes a fully fledged registry editor.

      It also comes with ntfs write capability via captive - something that gentoo live no longer does.

      --
      My pics.
    2. Re:INSERT by Master+Bait · · Score: 1

      I use the gentoo CD also. I wonder if Knoppix requires a mouse and everything else for X-windows? I don't want to put a mouse on the server... dragging a monitor over to it is bad enough.

      --
      "Only in their dreams can men truly be free 'twas always thus, and always thus will be."
      --Tom Schulman
    3. Re:INSERT by EnigmaticSource · · Score: 1

      I Don't use X on INSERT, so I'm really not sure... It should load fine without it (or even use the CTRL+SHIFT+NUMLOCK for mousekeys)

      And on another topic, you could modify your gentoo disk quite easily to start sshd, set a root password, and broadcast it's existance to the world with a few init.d anf conf.d changes.
      --
      The Geek in Black
      I know my BCD's (when I'm Sober)
  71. 3.8? by frovingslosh · · Score: 2, Informative

    If you want your system to start acting up, just boot that 3.8. Considering that 3.7 is the newest released, there is likely to be a big suprise waiting in whatever you downloaded marked Knoppix 3.8.

    --
    I'm an American. I love this country and the freedoms that we used to have.
  72. http://linuxiso.org/ by Anonymous Coward · · Score: 0

    http://linuxiso.org/

  73. DD and boot records? by phorm · · Score: 1

    Just out of curiousity, is there a way to use DD (or another utility) to make a copy of just a bootrecord. When I'm making images of windows drives I have to DD the entire partition, which doesn't work right if the destination partition isn't the same size as the original. A tar.bz2 of the OS drive works nicely, except that it's missing the bootsector...

    1. Re:DD and boot records? by Macrobat · · Score: 3, Informative
      Just out of curiousity, is there a way to use DD (or another utility) to make a copy of just a bootrecord.

      Oddly enought, I found out the answer to that last night (and I wasn't even asking about that particular problem):

      dd if=/dev/hda of=hda.mbr bs=512 count=1

      Got that from this site. So take their word for it, not mine.

      --
      "Hardly used" will not fetch you a better price for your brain.
    2. Re:DD and boot records? by phats+garage · · Score: 2, Informative

      As mentioned in TFA, you'll be copying the partition table too, so if the destination partitions aren't the same you'll end up just like the author did, having a good boot record but erroneous partition table. Read the article for his fix (using "gpart" from his knoppix).

    3. Re:DD and boot records? by pclminion · · Score: 1

      That only copies the first sector of the disk. While it is true that the partition table is contained in that sector, the boot loader is only a stub to load the Real Deal. If you dd that sector back onto a disk, the partition table will indeed be correct, but I'd highly doubt it would boot properly.

    4. Re:DD and boot records? by Anonymous Coward · · Score: 0

      dd if=/dev/hda of=hda.mbr bs=446 count=1

    5. Re:DD and boot records? by Anonymous Coward · · Score: 0

      Just a MASTER boot record - dd if=/dev/hda of=mbrfile bs=446 count=1. When you restore it, you should make sure the last two bytes of the sector are 55 and AA.
      For a regular boot sector - dd if=/dev/hda(n) of=bootsect bs=512 count=1.

      It's amusing to me that the guy who wrote the article said the partition table is the last 66 bytes of /dev/hda - as if /dev/hda only contains the first 512 bytes of the disk!

    6. Re:DD and boot records? by Anonymous Coward · · Score: 0

      Yes it will.

      I copy my MBR to a floppy so i can put it in instead of changing the boot order to look at my secondary HD first.

      The floppy doesn't work for anything else after tough

    7. Re:DD and boot records? by sgarg · · Score: 1

      I used sysrescuecd & partimage to ship disk images to our customers. It was real neat. It was pretting instructive as to how to go about this.

      First, we installed Linux and our custom software on a hardisk which was part of a small system.

      Then, we booted this small system using the SysRescueCD. We were running a partimage server on another machine on the network. We imaged the partitions of the hardisk on the partimage server, saved the MBR and partition table using dd and sfdisk (as documented in the SysRescueCD manual), put these on the server.

      Then, I wrote a couple of scripts to restore the MBR, partition tables and partition data onto other hardisk. Created a CD image with these scripts, MBR, partition table and partition data using the excellent directions given in the SysRescueCD manual (customising SysRescueCD). But, it is important to note that I cut a couple of coasters by failing to understand that all these extra files should be outside the cloop.

      Marvellous thing, sysRescueCD is.

  74. Early one morning . . . by ManDude · · Score: 5, Funny

    I had always read about this happening to other guys, but never thought it would happen to me.

    I was coiming into work early Monday morning knowing I had to reinstall everything on the secondary email server that went down on Sunday. I thought I would be the only one in, but Suzie from accounting had come in early too.

    I always loved her emails when she needed some help. They were cheerful and she had clearly always researched the problem she was haveing rather than the normal "it just doesn't work".

    She came up and told me when she booted up the system it wouldn't get past the initial Windows boot screen. She was wearing a tight baby blue collared shirt with a short black skirt. No stockings and black high heals. She leaned low and as I was looking at her black bra said in a slow sexy voice - "Can you fix it?"

    That's when I pulled out my Knoppix . . .

    1. Re:Early one morning . . . by Zate · · Score: 2, Funny

      aaannnd theeeennn ??


      no and then !!

      --
      IT is Dead. The industry is Shot Join Others Who Feel Your Pain http://www.internalstrife.com/
    2. Re:Early one morning . . . by Anonymous Coward · · Score: 0

      The dork had already creamed in his pants. That's THE END.

    3. Re:Early one morning . . . by Anonymous Coward · · Score: 0

      Yes, forget about Susie, it was that Knoppix bootup screen that did it ...

    4. Re:Early one morning . . . by Anonymous Coward · · Score: 0

      Hmm. Sysadmin porn - lingering descriptions of a user who has researched their problem....

  75. My rescue story... by WWWWolf · · Score: 1

    Problem: my 40 gig disk, over two years old, had been making a lot of noise. Then, one day, when I returned home, much to my horror, processor use was way up and I saw a lot of kernel read errors in xlogmaster's kernel monitor. Aieeeeee! Since the machine worked just fine otherwise, or at least earlier, I decided the damage wasn't big yet. Powered the whole thing down.

    Then came the biiiiiig boring part.

    I went to the store and picked up a nice 80 gig ATA133 disk.

    Went to home. Old disks away. New drive in.

    And BIOS didn't know anything about the drive. Some troubleshooting later it was clear that the BIOS was to blame. (A P3-600 from summer 2000...) And since this thing was getting pretty ancient anyway, rather than trying to upgrade the BIOS, I got a new motherboard. And processor. And fan. And memory. And eventually new power source. And then, on top of that, a chassis.

    Then was the day when I finally had the critical parts. I booted up Gnoppix. (Luckily, there are CD burners on the university. Otherwise, there would have been even more chicken/egg-stuff here.)

    Gnoppix was an excellent distribution to work with. On the old hard drive, I had been using reiser3 and ext2 (root partition); For the new hard drive, I had chosen to use xfs and ext3. And the surprising thing? Gnoppix supported both. Okay, it's been a while since I had used livecd distros, but still. There even was GNU parted, didn't need it yet though.

    With Gnoppix I could easily copy the old disk contents to the new disk. Very, very little hassle. Luckily, no noticeable file loss occurred. I could even mess around to get grub reinstalled on the new drive. Booted it, and wham, it worked like charm, just like before it went down. Recompiled the kernel to match my new hardware and I was back in business - well, not really until I got the new chassis, but still.

  76. BartPE, BootCD for Mac, other solutions by Anonymous Coward · · Score: 0

    BartPE makes bootable XP CDs. You can throw SOME your favorite antivirus and other utilities on there too. Is say SOME because some things just don't work well on such a system.

    Mac users can use Charlessoft's BootCD.

    Of course, BSD-live systems exist, and you can make a DOS live-CD too.

    DOS or Linux + NTFS + CD support + USB filesystems + firewire filesystems + your favorite tools is a good, if minimal, combo. For more, add a ramdisk, a network stack, a web browser, and whatever network-filesystems clients your site requires.

  77. DSL was Re:I once saved the day with Knoppix by mrmeval · · Score: 1

    Used Damn Small Linux make sure it has the dos tools. Set up the device to be bootable or to use a boot disk.
    Boot it.
    At this point you can just wipe the drive and install linux :-P
    Or you can mount the dos drive and copy the files over.

    I have a PC with the ability to boot USB and DSL is awesome. http://www.damnsmalllinux.org/

    You can also put it on a micro CD or business card CD.
    URL:http://www.damnsmalllinux.org/cd.html:

    --
    I'd go on a Vegan diet but the delivery time from Vega is too long. --brownkitty
  78. Documentation by rsmith-mac · · Score: 1

    While we're on the subject of Knoppix, I love this tool(kudos to the dev team), but at the end of the day I don't have the damned clue how to use half the functionality of it, and I'm going to take a guess that it's that way for a lot of other techies, too. Someone really needs to get on the ball, and write up some documentation for it, talking about what the different tools are, what the best ones are for specific problems, etc. Though this thing really begs for a whole O'Reilly book on it just due to depth, the current lack of documentation really seems to be the biggest problem with it at the moment.

    1. Re:Documentation by dmaxwell · · Score: 1

      As a matter of fact, there is a whole O'Reilly book:

      http://www.oreilly.com/catalog/knoppixhks/

  79. Re:A true Knoppix story, but I sure wasn't rescued by shadowsurfr1 · · Score: 1

    The slow speeds are because of your computer's speed. I can load it in about 5 mins tops.

    Knowing it is a live cd (i.e. doesn't load from the hard drive), any files you create, unless saved onto a floppy or thumbdrive will be deleted upon restart. You should've done your research and experimented with it before you wrote an entire paper on it just to find out it would disapppear.

  80. I've done it! But what about NTFS by SnprBoB86 · · Score: 1

    Knoppix saved files from my friends ::shudder:: WinME machine.

    But if I remember correctly, this was a little over a year ago and I wasn't able to use this approach on an NTFS based system a few weeks later.

    Has NTFS support improved? It would be critical for saving newer Windows boxes, even though I personally haven't had any serious issue with XP yet.

    I burnt a copy of Knoppix for that simple home NTFS user who just wanted to surf the web and check webmail. They used that and just ignored their important files until I was able to fix their windows installation. After I showed them where the browser was, they no problem doing what they needed to do. Knoppix is damn cool.

    --
    http://brandonbloom.name
    1. Re:I've done it! But what about NTFS by WMD_88 · · Score: 1

      Knoppix has, since at least v3.4, included Captive NTFS for write support. Slow, but works fine.

  81. Re:Knoppix to the rescue - Use those AOL mailers! by mrgrey · · Score: 1

    Except you'll look like a total idiot for carrying around AOL.

    As soon as someone tells me they use AOL I stop listening.

    --
    -Tolerate my intolerance
  82. Wrong lesson learned. by Anonymous Coward · · Score: 0

    No, the moral of the story is "don't be an idiot and use out-of-spec cables."

    This was just an accident waiting to happen.

    Last week I had another sysadmin hand me a stick of RAM and say "If it boots, it works". Knowing better, I ran memtest86 over the weekend on it. Lo and behold, I got several memory errors.

    Sheesh, people. It helps to build systems properly. But that approach, alas, won't give you an article on the glories of Knoppix (even though they are well deserved).

  83. System Rescue by bigjnsa500 · · Score: 2, Interesting

    Knoppix just takes way too long to boot and doesn't have some of the features that System Rescue does. Plus he's got a PPC version. I've use the PPC version to repair a OS X box (yes, they do crash too) and the Intel version to constantly recover user and Administrator passwords in XP. It's so easy with this disk!

    --
    This is a test. This is a test of the emergency sig system. This has been only a test.
  84. Keep it convienent by Anonymous Coward · · Score: 0
    Perhaps every administrator should have a Knoppix CD on reserve.

    I always keep a copy in a convienent location: www.knopper.net :-)

  85. Saved a friend a lot of trouble with Knoppix by SuperKendall · · Score: 1

    A friend of mine was having issues with a Toshiba laptop - it had been acting "oddly" for a while and after applying SP2 would no longer boot - but attempts to reformat and reinstall XP were failing as well. He was going to haev to send it off for weeks of repair.

    I said that we might as well take a shot at booting Knoppix and see what worked, or if data could be recovered from the HD (not sure if he ever really reformatted or not).

    Well, even Knoppix wouldn't boot! At first... after some fiddling we maanged to get to the most basic set of features, something to where we could run some utlities. At that point we were able to run a memory checker included with Knoppix, and lo and behold an uncountable flood of memory errors arose!

    We simply unplugged the extra memory chip (which had been provided by Toshiba) and what do you know - it booted XP just fine like nothing had ever been wrong.

    A month or so later Toshiba issued a recall notice on that laptop for having faulty memory chips... but Knoppix saved him a month of downtime for his laptop.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
  86. I am outraged! by Anonymous Coward · · Score: 0

    This kind of crap gets on the front page and my Ask /. question regarding free open source slide based 2d simple effect programmable animation software on UNIX-like OSes ends up dismissed?! Who is moderating this? A monkey who makes decisions based on how many bananas it has left? I bet nobody will even bother to read this. Come on, mod this Offtopic or a Troll or whatever, it doesn't really matter, does it?

  87. My Knoppix horror story.. by cowmix · · Score: 1

    I LOVE Knoppix (and other Live CDs) but...

    I used Qparted on Knoppix to resize some partions on two different dual systems.. nothing would boot after that.. Non of the 'tricks' to recover the MRB and anything else would work..

    I was able to, at the very least, backup my data via Knoppix.. but then I had to completely WIPE the HDs clean and restall everything.

    This is a known problem with Qparted.. I guess.. but it is not very well documented that this a huge problem.

    1. Re:My Knoppix horror story.. by dmaxwell · · Score: 1

      Thou shalt always have a full backup before hacking thy filesystems or partition tables. Blessed is he who keeps around an external usb or firewire drive.

    2. Re:My Knoppix horror story.. by Anonymous Coward · · Score: 0

      use cfdisk it is a much better tool...

  88. [B]TFM[p3s] by Anonymous Coward · · Score: 0

    "Really, if you wanna flame him, you'd be safer pointing out that this is just some guy dicking around on his home machine and managing to not scrag his mp3 collection thanks to the wonder of Knoppix."

    That's the downside of MP3's. Easy to break. Hard to fix.

  89. Knoppix saved my vacation by Anonymous Coward · · Score: 0

    A couple of years ago I brought my new digital camera on a ski vacation, and I brought along my WinXP laptop so I could transfer my photos off the camera at the end of the day, freeing up the memory card. For the life of me, I couldn't get windows to recognize the camera as a USB mass storage device, which it had done previously. So I booted off my trusty Knoppix cd, and my computer recognized the camera without a problem. I never expected it, but in this case, I actually had better peripheral compatibility with linux than with windows. Thank you Knoppix!

  90. Just this morning by blueforce · · Score: 2, Insightful

    Just this morning, mozingod had to come rescue my win2k workstation with knoppix to reset the local admin password.

    *Somehow* my machine got deleted off of an AD domain so I coulnd't log on. Everything's been running so smooth with this machine - no, seriously - that no one, me included, knew the local admin password.

    Knoppix to the rescue, 13 reboots later, I'm back in and the new admin password is 'asdf'.... I mean... it's really long and... un-crackable....

    --
    If you do what you always did, you get what you always got.
  91. knoppix is my most-used tool!! by zcat_NZ · · Score: 1

    I'm in the process of migrating my sister-in-law's computer from 2K to XP as I type this (clean install, upgrades never go well for me). First step back up the existing drive. Windows always seems to have a problem with this (files in use, hidden and system folders that it just can't see, etc) so the first step is to boot knoppix and cp -a the windows drive (mounted ro so no need for captive) onto a network share.

    I know in theory I should only need to back up the Documents and Settings directory.. but this is Windows, documents and settings seem to end up getting saved all over the filesystem!

    Last week a friend came to me with a hacked mailserver. It wouldn't boot at all but using knoppix I could easily rescue /var/spool/cyrus and scp it to my own box, and from there I used IMAP to push the mail onto the new mail server.

    Last month I moved Debian from a 20G drive to my bigger and slightly faster 40G drive. Copied all the files over but forgot to change /etc/fstab and lilo so rather than swapping the drives back I just booted knoppix and fixed it that way (lilo -r /mnt/hda1, etc)

    --
    455fe10422ca29c4933f95052b792ab2
  92. My Knoppix recovery story. by Salvo · · Score: 1

    Having Given up Linux years ago for BeOS and then MacOSX, I was a bit rusty on my concept of Linux Modules, but...
    The Boss's XP Laptop recently carked it, and the data had to be retrieved.
    He'd thrown away the Rescue Disk which came with his HP nx9000, and for some reason the Floppy Drive didn't work.
    My first thought was to make the Laptop a Target Firewire disk and suck the data onto my iBook, a technique I used when an earlier iBook's Logic Board Failed, but the nx9000 doesn't support Target Disk Mode.

    I eventually used Knoppix to boot the nx9000, mounted my iBook as a Target Disk (since Knoppix also read and writes HFS+) and copied the data to my Lappy.

    I burned the whole lot onto a series of DVD-Rs, formatted the HDD of the nx9000 and presented the whole lot back to my Boss. I let him find a solution to the fact that *he* threw the System Restore Disks away.

    If I was more familiar with Knoppix, I would have burned DVD-Rs of the data directly from the nx9000, but I prefer to use what I know.

  93. talking about heroic sysadmin tales... by Anonymous Coward · · Score: 0

    Casually I was just reading this one from Alexander Viro, Linux hacker, VFS maintainer: http://groups-beta.google.com/group/alt.sysadmin.r ecovery/msg/777b3992c628410a

  94. enough ? maybe ? please, Y.A.K.A-On Mainframes. by Anonymous Coward · · Score: 0

    Well we don't have any stories of sysadmins rescuing mainframes with knoppix.

    Anyway osnews has a story on VMs and the OS

  95. HOWTO: Recovering the root Password by soloport · · Score: 4, Interesting

    The mortgage broker, two floors up from us, was sold a "firewall/e-mail server that runs some kind of Linux". He was experiencing e-mail issues and tried to get the "vendor" to come out and service his "product". Unfortunately the vendor couldn't remember the root password to his own box. In addition, he wanted to charge the MB for more hours to re-install and configure it a second time.

    After NOT agreeing to the vendor's plan and showing him the door, the MB asked me if I could "crack into it" (yes, he actually used the right term). So... Knoppix to the rescue!

    The following procedure worked well:
    * 'mount' the HDD's main partition, rw
    * From a shell prompt, enter 'su -' (in Knoppix this just drops you in, with no p/w required)
    * Change the root passwd
    * Make a backup copy of HDD's /etc/shadow password file
    * Copy the line for the root user in the Knoppix /etc/shadow file
    * Paste it into the HDD's /etc/shadow file, replacing the old line
    * Profit.

    Also noted that there were no users created (the vendor had been logging into Gnome as root to do everything). So added an user account with sudo 'ALL=(ALL) ALL' rights, etc., etc.

    It was a strange way to find a new customer :-D

    1. Re:HOWTO: Recovering the root Password by mstefanus · · Score: 1

      Why all the hassle... you can just boot to runlevel 1 and it will go straight to prompt. Then use passwd to change the root password.

    2. Re:HOWTO: Recovering the root Password by SpaceLifeForm · · Score: 4, Insightful

      Caution on your fix to /etc/shadow. First, it's much easier to just edit the file and clear the password field. Secondly, your procedure could fail to make the shadow file usable (for root) if in fact the shadow file is not using DES encryption, but using a modern encryption such as AES. SuSE-9.2 supports that by default. So cut-and-pasting a DES password field into a file expected to contain an AES password is not going to solve the problem of an unknown password.

      --
      You are being MICROattacked, from various angles, in a SOFT manner.
    3. Re:HOWTO: Recovering the root Password by Anonymous Coward · · Score: 1, Informative

      > Why all the hassle... you can just boot to runlevel 1 and it will go straight to prompt. Then use passwd to change the root password.

      Depends on the distribution; Debian-based systems want a root password before they'll give you a shell prompt in single-user mode.

    4. Re:HOWTO: Recovering the root Password by Frank+T.+Lofaro+Jr. · · Score: 1

      You could likely chroot into the directory on which you mounted the hard drive, and then run passwd.

      --
      Just because it CAN be done, doesn't mean it should!
    5. Re:HOWTO: Recovering the root Password by nzkbuk · · Score: 1

      And there most *nix people I know would have just booted init=1 from lilo / grub

    6. Re:HOWTO: Recovering the root Password by ant_slayer · · Score: 1

      Hmm... I always found appending 'init=/bin/bash' to be an excellent technique for password recovery. That is, of course, unless someone has hardened LILO or Grub accordingly. Though, based on your narrative, it sounds like this "guy" wasn't very "knowledgeable" in general, so I'm guessing it would work just fine...

      -Ant Slayer-

    7. Re:HOWTO: Recovering the root Password by fmileto · · Score: 0

      Here is a different way to change a root password

      1)boot knoppix(knoppix 2) from lilo prompt
      2)su into root
      3)mount drive
      4)chroot /mnt/hda1 /bin/bash
      5)passwd
      6)halt -n || reboot

    8. Re:HOWTO: Recovering the root Password by Anonymous Coward · · Score: 0

      next time, just chroot into your "old" root-partition after mounting it, and change the password directly, instead of fooling with the shadow file

    9. Re:HOWTO: Recovering the root Password by Anonymous Coward · · Score: 0

      The proper way to do this would have been to boot into init 1 and do what you need to do. What a waste of time.

    10. Re:HOWTO: Recovering the root Password by baitisj2 · · Score: 1

      Yeah, or if it still prompts you to enter root passwd in order to drop into single-user mode (like Debian does), just use the kernel param init=/bin/bash and do whatever you want.

      Using KNX to solve this problem is way overkill

    11. Re:HOWTO: Recovering the root Password by baitisj2 · · Score: 1

      use the init=/bin/bash kernel parameter to bypass init and therefore disable the root password prompt. This should be possible unless, of course, the bootloader is password-protected.

    12. Re:HOWTO: Recovering the root Password by ilithiiri · · Score: 1

      No way!

      Instead, you do this:

      * boot with a boot cd (whatever, really)
      * become root
      * mount your /dev/hda1/ onto /mnt
      * chroot /mnt /bin/bash
      * passwd
      * logout (exit the chroot)
      * umount /mnt
      * reboot

      Enjoy your system with the new password, no /etc/shadow or /etc/passwd touched by hand, minimum hassle. ;)

      --
      If anyone can hear me, slap some sense into me But you turn your head, and I end up talking to myself
  96. Better alternatives by m50d · · Score: 1
    Austrumi is a much better alternative to DSL imo. You get more apps, and they're "full" programs like abiword, gnumeric and the GIMP.

    Based off DSL but nicer in terms of included programs is Feather Linux. It's 14mb more, but unless you're putting it on an actual business card cd it's well worth it for the extra apps.

    And for an in between option where the business card distros don't quite have enough, try SLAX. Can do more or less anything that knoppix can, but only includes one program for any one job.

    --
    I am trolling
  97. Heroic? by SpecBear · · Score: 0, Flamebait

    This guy screwed up, period.

    If you're incompetent enough that overcoming the consequences of that incompetence is considered an act of heroism, then you really need to find another line of work.

  98. Re:A true Knoppix story, but I sure wasn't rescued by Dekks · · Score: 1

    So will it not be able to access your HD at all? I was under the impression that it could still read your NTFS drives or whatever windows formats it as? I last played around with Linux five years ago with Mandrake as dual boot but had no real need for it, but would like to play around with it again, was thinking about one of these live CD's but if it can't save to your HD (i know it boots off the cd) then I'll probably not bother. I vaguely remember mandrake was able to still mount your dos partitions, but then they were FAT and it wasn't booting from cd. Any info appreciated.

  99. My tale of KNOPPIX Rescue by iago · · Score: 1

    I was doing contract work for the Phoenix Foundation in Central America trying to rescue some Noble Prize Laureates from the evil clutches of HITT and I entered quite a jam. Murdock was on my tail and Jack was weighing down the hot air balloon with the money stole in yet another classic Jack Dalton "get rich scheme".

    Lets just say that I made Jack leave the money, but alas, I couldn't get the hot air balloon (made out of my ego and Penny Parkers panties.) To take off. I needed a malleable object suitable to direct more hot air into the balloon to lift me off the ground and get back into the air space of a friendly country.

    I remembered back to my childhood and something that Harry said. He said that when you are in a pinch, always carry your swiss army knife, and your network administrator's swiss army knife, Knoppix.

    I snapped out of my halluiogenic state (from living on a houseboat) and melted down the KNOPPIX disc. It sealed the leaks in the tank, Thank God.

    The balloon sailed away and the cancer researchers were safe, Jack was upset that he didn't get his pirate loot, and somehow I made some sort of Social commentary along the way.

    All of this was possible thanks to Knoppix. Speaking for the Nobel Laureates, the Phoenix Foundation, I would like to personally thank Klaus and the members of the open source community for their help.

    Sincerely,
    Mac, er, iago.

    --
    Worst Sig Ever
    1. Re:My tale of KNOPPIX Rescue by BigDieselDaddy · · Score: 1

      I looked at PennyParkerPanties.com and no dice. Got any leads on where to find? IMNA similar jam

      --
      I bounty hunt for Jabba the Hut to finance my Vette.
  100. One More Important Thing by soloport · · Score: 3, Interesting

    Forgot to mention: BECAUSE of Knoppix, and its ilk, the servers we build and sell support loop-AES, exclusively!

    (i.e. When you go to mount the HDD from Knoppix, it looks like a bunch of garbage and Knoppix refuses to mount it).

  101. My toolbox by m50d · · Score: 2
    I probably have the original knoppix as well (every linux magazine gives you a copy quite frequently) but my main live cds are as follows:

    STUX, a live cd with pretty much everything, but very "heavy", only for 256mb+ machines

    Knoppix STD, primarily because it's still the best for working wireless cards. Also some mp3s on the cd to listen to, and some fiddling with mkisofs means that from non-nix OSes it looks like that's all that's on the cd

    SLAX, plus a few modules. I like modularness and I really really like ovlfs - basically you can treat the cd like a normal filesystem, and install new programs on it or anything.

    Austrumi - simply AMAZING 50mb business card CD. Full versions of abiword, gnumeric, mplayer, the GIMP, Opera, nmap, skype, and more on the linux boot, plus they've included aida, chntpw etc. all on the 50mb cd

    Finally, MoviX for some relaxation when I've finished fixing systems.

    --
    I am trolling
  102. My story by Cyn · · Score: 1

    I had just finished burning the latest Knoppix CD on a hot summer afternoon when my cat jumped into my wifes unsuspecting arms, and they both tumbled backwards out the window.

    I launched myself out, CD still in hand, trying to catch her from a 7 story drop - and lo and behold if both my wifes and my cats lives weren't saved because of the strength length and durability of a Knoppix CD.

    After everything was said and done, we tried the (amazingly unscratched!) CD out in my wifes computer (she wanted to thank it for saving her) and it worked flawlessly.

    Thanks Knoppix!

    --
    cyn, free software and *nix operating systems enthusiast.
  103. Any distro by PhraudulentOne · · Score: 1

    I usually just stick in CD#1 of any linux distro that is sitting around - I just did this with Fedora Core 3 last week. Once the insall begins, I just switch to another terminal, mount my FS and make the changes I need to reboot the box.

    --
    You create your own reality - Leave mine to me.
  104. Re:Why is this a story? by Graemee · · Score: 1

    Since when does idiot-proofing do any harm?

    Isn't that another term for DRM.

  105. Re:A true Knoppix story, but I sure wasn't rescued by shadowsurfr1 · · Score: 1

    You can access your hd and view all its files under the NTFS format. A program called captive NTFS, I forget where it's listed, will allow you to write to them also. Thus giving you a hd to save things to. If you're interested in learning about doing a lot of things with knoppix, I definately recommend picking up "Knoppix Hacks" by Kyle Rankin. Has 100 tips for both the casual user (like me and you) to people who needs it for emergency purposes inlcuding how to setup knoppix as an emergency webserver, router, etc. Also, tips for backing up and reformatting are included. As a matter of fact, I recently used it to 'shred' my hard drive to prepare it for a reinstallation of windows. It can come in very handy if you know how to use it properly.

  106. Re:Knoppix as an anti-viral tool by Stephen+Samuel · · Score: 1
    Every once in a while I get someone begging me to clean up their infested Windows box. I really hate having to do a clean and install, so I now use knoppix and ClamAV to do the initial scan, and deleted the infected files (except for the mail folder). I then booted into Windows and used Their built-in anti-virus, AdAware and SpyBotS&D to do the rest of the cleaning. So far it seems to have worked (although one person subsequently got re-infected with an email virus).

    I'm starting to ask people for permission to set up their boxes to dual-boot to Linux. Linux is so usable now that, unless there's a specific application that they can't get an equivalent on Linux. I really don't see much need for most home users to stay with MS Windows.

    --
    Free Software: Like love, it grows best when given away.
  107. Big Knoppix fan but for rescue... by gordie · · Score: 1

    While I am a big fan of Knoppix, my prefered tool for system rescue is System Rescue CD: http://www.sysresccd.org/ A great collection of tools and the ISO burns to a mini-cd!

  108. Not always the best tool for the job by woah · · Score: 1
    Knoppix isn't always the best tool for the job, due to the fact that you can't use the cd drive when running it.

    I once accidently deleted the /boot directory and obiously couldn't boot the machine. I did have everything backed up on CD-Rs. So I'm thinking, great I'll just boot with Knoppix and restore everything back. Little did I know.

    Anyway, I had to kill all the processes and rmmod all the modules, in order to unmount the Knoppix CD. Which wasn't easy at all, because as soon as you try to run some program the Knoppix distro tries to access the CD. And so you get some of the modules flagged as busy and you have to wait to remove them. Arrhh!!!!

    1. Re:Not always the best tool for the job by fok · · Score: 1

      Slackware Live will do the job. The Disc 2 has 83Mb image loaded into RAM with some rescue tools

      --
      \m/
    2. Re:Not always the best tool for the job by RazzleDazzle · · Score: 2, Informative

      Actually you can remove the CD.
      As an exmaple: http://www.oreilly.com/catalog/knoppixhks/chapter/ hack05.pdf

      --
      ZERO ZERO ONE ZERO ONE ZERO ONE ONE! Just brushing up for my next big invention: Ethernet over Voice (EoV)
    3. Re:Not always the best tool for the job by woah · · Score: 1
      Yeah, but this requires over a gig of ram or a free partition.

      I did manage to remove the CD after an hour of fiddling. I remember a bit more clearly now what I did:
      I killed almost all the processes. I then had copy the essential commands to the ramdisk, remove the symlinks to the mounted CD filesystem and only then try and remove the modules.

    4. Re:Not always the best tool for the job by woah · · Score: 1

      * I then had to copy the essential ...

    5. Re:Not always the best tool for the job by /dev/trash · · Score: 1

      It does? None of my machines have more than 300MB of RAM and I've used the docache flag a lot of times.

  109. Re:A true Knoppix story, but I sure wasn't rescued by Dekks · · Score: 1

    Thanks for the info!

  110. Basic tool by Fantasio · · Score: 1

    The Knoppix CD has completely replaced the traditional DOS bootable diskette as the first emergency PC tool. I'm pretty sure that many at Microsoft routinely use it, but they'll never admit it ( ever tried to use the M$ recovery console ? ).

  111. Here's my story by Asprin · · Score: 1


    About four or five months back, I used Knoppix to rebuild the boot record for my main HD when it got totally horked, allowing me to copy about five years worth of personal files and data to a backup drive temporarily while I reinstalled WinXP.

    ...of course, it was the Ubuntu installer (another Deb-based distro), coupled with my own stupidity trying to set up dual-boot with WinXP that hosed it up in the first place.

    (*sigh*)

    --
    "Lawyers are for sucks."
    - Doug McKenzie
  112. The best rescue CD by Craig+Ringer · · Score: 1

    ... is a CD labeled "backup 2005-01-11".

    Granted, that's not always practical. As someone who has to admin and backup a system with a 1.25TB RAID array, I know that all too well. SDLT? Daily SATA hard disk snapshots? Even /reading/ that much data takes forever.

    My solution - periodic off-site hard disk backups plus DDS-4 dailies. If I can go to LTO dailies soon, I'll be happy.

    When I /do/ need a rescue CD, usually (but, alas, not always) to make systems bootable rather than to recover data, I tend to use SystemRescueCD.

  113. Re:I agree, but... (system design) by Anonymous Coward · · Score: 0
    Not to be a heretic with this, I've done that sort of thing for years on unix systems, but can you do that on XP?

    i.e. - Install XP to one partition, and then seamlessly have your "Documents and Settings" be on another partition? That way you get independence of OS from data for XP. I'd hope there was a way to do that as simply as "mount" on unix so that you don't have to fuss with Environment variables, and half the programs don't actually work correctly with D&S off the main drive.

  114. Live-cds need lossless re-patitioning tools. by Anonymous Coward · · Score: 1, Interesting

    Linux badly needs lossless re-partitioning and tools
    to seemlessly dual-boot along with win98/2k/etc.
    Its really curious how they still rely on old MS-DOS
    utilities and assume Win-usage to get alot of maintenance tasks accomplished.

  115. Morphix - Saved the day by davidpb145 · · Score: 1

    Just last month my Dad's PC with Windows XP Home Compaq PC that he runs a small business had a hard drive go bad. The drive was slowy going bad and giving errors.. but he didnt know what to do. Then one day it just stopped... the machine was fried.... Boot sector was bad.. none of the Windows XP recovery tools could save his install
    Then I came along and saved the day.. was able to boot to Morphix Linux, mount his drive, ftp all his files for his business checking account to another pc and then save the day.
    I bought a new hard drive and reinstalled everything in a few days... Thanks to Morphix He didnt loose anything..

  116. ntfs read by foo23 · · Score: 1

    I have a probably very classic story: A colleague of mine ignored the bios message of the kind "Disk error - press any key to continue", which nevertheless made the machine boot into Win2K for some while ... until it stopped. I could convince our sysadmin not to try to rescue the installation by installing XP over it. He was really convinced this would give him the chance of accessing the NTFS-partition. Running knoppix and clicking on "Start samba server" made it incredibly easy to save the data. And naturally the disk was never useable again after a trial to install XP over it. Nothing could ever access it again.

  117. Ho hum. by MicklePickle · · Score: 1

    Another really good thing with Linux is that it makes recovery of anything, (even Windows), so much easier. It's good to see articles like this just to show how very easy it is.

    --
    -- main(s){printf(s="main(s){printf(s=%c%s%c,34,s,34) ;}",34,s,34);} $p='$p=%c%s%
  118. my fixes by Anonymous Coward · · Score: 0

    i normally use Slackware for my main distro, but i do keep an extra disk partition specificly for testing and playing with other distros, mostly just for curiousity, and many times i and/or the distro i happen to be using will bork my mbr and i end up using Knoppix to chroot my slckware and running /sbin/lilo in a root su terminal to my lilo back...

  119. PEbuilder is what ive been using. by Deathlizard · · Score: 2, Informative

    I've been using Pebuilder for my recovery needs with great success.

    It's easy to customize with plugins that you can create, download, and add. The UBCD for Windows is a must have for pebuilder and makes it a real powerful tool. from browsing to e-mail, web browsing, disk recovery and lots more. I basicially used one of these CD's as my PC's OS while I was waiting for Dell to send me a new hard drive when the one in my machine at work crashed.

  120. Ultimate Boot Disc by LuxFX · · Score: 1

    I highly recommend downloading a copy of the Ultimate Boot Disc as well. This one's saved a couple of systems for me. It has a great collection of low level disk tools, including hard-drive manufacturor specific tools. I keep a copy of both the UBD and Knoppix by my computer at all times.

    --
    Punctanym: alternate spelling of words using punctuation or numerals in place of some or all of its letters; see 'leet'
  121. Re:Why is this a story? by Anonymous Coward · · Score: 0

    Blues clues? thats rather amazing, my niece watches that show all the time, maybe i should ask her about it...

  122. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  123. Two stories and some preaching by Rob_Warwick · · Score: 1
    First, let me state that any competent sys admin should have a live CD around somewhere. We all know this. Of course, on a properly managed system, somewhere in that ideal world where all of us (even the endusers) understand why separate partitions and drives are a beautiful thing, a reinstall is the solution. But then there's reality. You know you've worked on systems configured by some absolute moron, or at the very least systems that aren't set up as you'd like them.

    Live CD's are lifesavers in that situation.

    I can think of two places where a Knoppix CD has saved me time and effort. Sure, I could have done these things other ways, but, well, why not?

    The first was back in high school, a couple years ago. Of course, our network was authenticating through a central server, and it that server went down, or the network went down, you couldn't log in. And, as always, someone always saves their important files (If they're important, why don't they have a backup? I don't know) to the hard disk. Just in time for our server to go down. And naturally the 'system admin' didn't know a damn thing about it. The actual admin couldn't come in for a while, so it looked like the file wasn't going to get looked at that day.

    Funny how things like that are life-or-death when you're in school.

    Short story long, I pulled out a Knoppix disk I had sitting around, and just pulled up the file. Emailed it to the guy so he could work on it from home, and promptly returned the computer to a useless state.

    Story two is a better one. I've just moved about 700 miles, and I'm crashing on a friends couch until I can find a place with a ceiling of my own. Naturally, a Windows Update hosed her XP install, and though she had a properly partitioned drive, she wasn't storing anything on the storage partition. I downloaded Knoppix, burned it on my iBook, and booted her machine off it to format the storage section nicely, then bring all her documents over.

    She's got a dual boot system now. Fedora and XP. The best part? She asked me to install it so that she could play with it.

  124. More Shameless Plugging by CedgeS · · Score: 2, Informative
    I know I've done this before, but here's my guide to recovering and rescuing data using Knoppix. I just updated it about a week ago for version 3.7, and the new instructions and images haven't made their way into knoppix.net's wiki yet.

    People are using knoppix for this all the time; I can tell by the amount of email I deal with on the subject.

  125. True story! by Anonymous Coward · · Score: 0

    Here's a true Knoppix rescue story.

    My main PC power supply dies, leaving only the backup computer. I thought, Hmmm, I'll stick the HDs in the backup and boot from this Knoppix cd and check the HDs are OK.

    Knoppix Boots, locks up, does f*ck all. Yep, terrific stuff there!

    (The HDs were fine btw)

  126. Corrupted Registry Hive by ByrneArena · · Score: 1

    My laptop's registry hive file got corrupted about 3 months ago. With the MS boot disk my only option was to re-format and start from scratch. I DL'd Knoppix on the advice of a friend and was able to ftp all of my necessary files to a network location here at work and then I re-formated and off I went. God Bless Knoppix... don't leave home without it.

  127. OT: Your sig by k4_pacific · · Score: 1

    It's Pamela Jones, not Paula.

    --
    Unknown host pong.
    1. Re:OT: Your sig by soloport · · Score: 1

      I don't know what you're referring to...



      ;-)

    2. Re:OT: Your sig by Master+of+Transhuman · · Score: 1

      Something to do with Groklaw versus Bull^H^H^Hill Clinton...

      --
      Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
  128. Saving people from themselves by Shadwhawk · · Score: 1

    My grandfather's always had trouble with his computers. He brought one over when he came for Thanksgiving. I cleaned it up, got it working again...only to have him somehow hose it a week after he got home. He brought it (and a new computer) when he came for Christmas. The older box was completely hosed. XP wouldn't start up at all. Either it'd freeze on a grey screen or freeze on an XP logo (when in safe mode). He needed his files transfered to the new machine.

    So, I decided to try out the Bart Pre-installed Environment, which I had learned about at work. It was just what I needed to pull files off of a screwed NTFS XP install. I built an image, booted the machine with it...but it wouldn't find the NIC. So, I built another image with the drivers specifically for the NIC, and Nero, just in case. Still didn't work. Tried a variety of network combinations. Nothing. Oh, and Nero crashed when I tried to do anything worthwhile with it (to be fair, the Nero loader was designed for an earlier version of the software). Tried to build it with drivers for a USB stick. No go.

    Out of desperation, I torrented the newest Knoppix ISO, burned it, and booted the dead machine with it.

    Now, Knoppix has always scared me a bit. I'm not a Linux guy; I'm mostly lost in it, even with a GUI, and Knoppix has so much crap in its menus that I hardly knew what to use or how to use it.

    But, anyway. It worked. Flawlessly. Networked right off the bat. CD burner worked great. USB keys detected fine. The three hours and half-dozen CDs I wasted with BartPE could've been eliminated if I had just gone with Knoppix from the start. BartPE might be a great, free (of a sort) preinstalled environment, but it just seemed completely hacked together and half-assed to me. Knoppix blew it out of the water.

  129. How about a knoppix cd specialized for rescue? by walterbyrd · · Score: 1

    Take off openoffice, the games, and the fancy default GUI. Put on more rescue tools. Make a version that is more tech oriented.

  130. Re:I agree, but... (system design) by Anonymous Coward · · Score: 0

    I don't think you can move the entire D&S tree, but you can move an entire user profile via the user control panel, or you can relocate the user's "My Documents", and even give it a decent folder name, though XP will still refer to it as "My Documents" all over the place :(

  131. Hackertool by Anonymous Coward · · Score: 0

    Where I work the "security manager" has decided to block these utils (memtest, knoppix) as 'hacker tools'. We can't download them and aren't allowed to use them.

    They're also about to ban ssh since he thinks we can get viruses that way. On the other hand Outlook and IE reigns supreme on the windows desktops.

    Don't you just love "corporate policy"?

  132. Oddly enough by Anonymous Coward · · Score: 0

    I was just using knoppix to fix one of the company directors PC's

    Weird timing

  133. My shining moment. by klaasb01 · · Score: 1

    One day a bus full of nuns crashed into a burning orphanage.
    I rushed to the scene with Knoppix and managed to save several servers.
    That was a great Knoppix rescue

    All persons perished in the flames though.

  134. Re:I agree, but... (system design) by ardiri · · Score: 1
    • Install XP to one partition, and then seamlessly have your "Documents and Settings" be on another partition? That way you get independence of OS from data for XP. I'd hope there was a way to do that as simply as "mount" on unix so that you don't have to fuss with Environment variables, and half the programs don't actually work correctly with D&S off the main drive.


    while the system requires temp files to be in this area; there is no reason why you dont have shortcuts to other drives within these directories. i never store anything in this area of the drive; if i need to re-install anything, i double check that i can export the setting to a file and have the ability to re-import them.

    if you are stuck with files in D&S, maybe its time to have a task running regular backups to another drive just to make sure *g*
  135. Re: GRUB Hack To Boot Windows 2000 by jcole · · Score: 2, Interesting

    I was asked once to recover a windows 2000 laptop for a colleague.

    His wife had booted a partition magic cd and accidently moved the windows partition over, causing a new partition to be created at the beginning of the disk. For some reason, partition magic wouldn't move the damn thing back.

    Apparently, a DOS/Windows MBR always tries to boot the 1st partition. So when booting the machine, all we were getting were "no bootable disk" errors...

    But, I had an idea.

    I booted a knoppix cd and created a c:\grub directory. I copied grub files to it and configured a menu.lst to boot the 2nd partition, (where Windows 2000 was stuck at). Lastly, I installed grub to the MBR. After I rebooted, the grub boot menu came up with the "Windows 2000" option I had created. I hit enter and it loaded Windows 2000!

    My colleague had no idea what I had just done, but was happy otherwise and no longer mad at his wife.

    -Joe

  136. Re:A true Knoppix story, but I sure wasn't rescued by shadowsurfr1 · · Score: 1

    No problem.

  137. Saved files from a laptop by Anonymous Coward · · Score: 0

    I used Knoppix on a half-dead laptop to rescue personal files for someone. Knoppix and a large thumbdrive. A handy combination.

  138. Re:I agree, but... (system design) by schmobag · · Score: 1

    I did that once. I had My Documents actually pointing to a samba share. It worked fine until one day the samba share wasn't available, and the My Documents shortcut disappeared forever.

  139. Knoppix as an intro to Linux by Pazu42 · · Score: 1

    My girlfriend's laptop had its Windows system die in ways I'd not thought possible (though being windows it shouldn't have surprised me). It not only wouldn't boot but also would crash before allowing access to the recovery console. I couldn't even do a clean install and there were important files (all of her work since eighth grade) that couldn't be lost. As it was a laptop I couldn't take the hard drive out to run as a slave in another computer without voiding the warranty. I tried a Knoppix cd my brother had and without having used Linux beyond the basic interactions of surfing the web and doing work I was able to get the system going and burnt all of her important files to cd's. After doing that i was safe to wipe the drive. I was so impressed that I jumped into Linux headfirst and installed Debian on an old box I had. So not only did Knoppix save my girlfriend's files, it also got me onto Linux.

  140. Windows version by nuckfuts · · Score: 1

    Its doesn't pack as many tools as Knoppix, but BartPE can be extremely useful for getting at busted 2000/XP/2003 boxes.

  141. Re:I agree, but... (system design) by evilviper · · Score: 1
    I'd hope there was a way to do that as simply as "mount" on unix so that you don't have to fuss with Environment variables

    Personally, I would strongly recomend "fussing" with those environmental variables, rather than doing these things in a way Windows doesn't handle properly.

    However, there certainly is a way to do it, if you're hell-bent on doing things the wrong way, for no good reason.

    I can't say if this functionality exists in XP home, or just the pro/server versions... As of Windows 2000, in the disk manager, you can chose to mount a drive as a directory of another drive, just like Unix mounts (the innovation from Microsoft boggles the mind, doesn't it?).

    It's very easy to do. Right-click on the partion on the drive, and choose "Select Drive Letter" or whatever it's called lately. That should pop-up a box that lets you choose between mounting as a drive, and mounting as a directory. Trivially easy from there.
    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  142. dd is one loaded gun by mnmn · · Score: 1

    I had a similar problem as that guy, also caused by immoral use of the dd command. Testing another OS and its partition, I was playing with dd, and had images of other small partitions as gzipped files so I could dd them into the standard 10mb partition I had.

    But I misfired and did dd if=/dev/zero of=/dev/hda1, and things deteriorated. This XFS drive had all my collected files, years worth of data, so for the next week I embarked on educating myself about XFS's structures.

    The XFS partition had two superblocks and the first one was deleted. I had to find the second one, and grep its signature. Use that superblock, overwrite the first (repaired) one, then run xfs_repair to bring the system back to life.

    My backups were in a .tar.bz2 file in the root folder, and existed in pieces in other folders. I never could recover data from the / folder, but pieced data from others. Also, all folders somehow appeared in the root folder so an 'ls /' showed a large number of random-string directories, but they had good filenames inside them. So a whole lotta grepping and searching, and reconstructing the filelist.

    The very first task I did after the 'mistake' was to get a larger disk, dd the crashed partition into a file, and then start fixing the partition. Any mistake I made, I could undo simply by dding back the partition from the file. But I learned new respect for dd. Its a loaded gun with a loose trigged, so NEVER point it anywhere you dont intend to shoot.

    --
    "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
  143. Re:I agree, but... (system design) by evilviper · · Score: 2, Interesting
    as a sysadmin for many years; you learn very quickly NOT to put anything valuable on the same drive that boots/manages the operating system.

    Better yet, don't put anything valuable on the same computer that boots/manages the operating system...

    i can easily move stuff between machines - and, i just need to install vmware to get started (beats installing everything again).

    Sounds to me like you're using vmware for no good reason. You could, quite easily, install all your programs (and libraries, and headers, etc) into a directory, in some arbitrary location on your hard drive, and just copy that directory from system to system.

    I also can't see how your method could possibly be any good, because under vmware, you're going to be running yet another OS anyhow, so now you have two OSes running on top of each other, and twice as much that could go wrong. Where's the advantage, I don't see it?
    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  144. Re: .sig by Morosoph · · Score: 1
    Minor fix: her name is Pamela Jones.

    Great quote, though!

  145. Re:Why is this a story? by Anonymous Coward · · Score: 0

    > yes, but everyone does something profoundly stupid every once in awhile.

    indeed (and i'm going to post anonymously to save myself the embarassment)... because this is a true story.

    only the other day, on a *remote* server, i installed a kernel that didn't have support for xfs (which happened to be my primary filesystem type on all drives). you can imagine my distress when i rebooted..

    needless to say, knoppix did me me no favours that day.

  146. Service shops... by kosmosik · · Score: 1

    I always wonder why those blokes in service shops (you know - places where you service used computers and stuff) usually never have even heard of Linux (not to mention Knoppix or Live CD). Every time I visit them (hey I live in Poland - we have a lot of old computers here :) - somehow, I like it) and boot Linux (f.e. from CD because my drive bay went off or smth.) they are shocked...

    LiveCDs are great for diagnosing - but I would not recommend Knoppix - it is bloated, Knoppix is rather for presentation of Linux to newbies. Systemrescuecd (use Google) is quite good. It contains loads of usefull utilities like AIDA (hardware detection/report) for DOS, dban (for shredding all data on disk - I like it), full blown Linux 2.6 based distro - only console/fb apps - but most of essential stuff. Look if you are going to rescue anything you should have a clue what you are doing. :) When you need Knoppix (KDE and stuff - I am just to lazy to pass parameters on command line or to master the disc sysrescd does that for me) and GUI to rescue anything don't bother... Rescue is always last resort of keeping the data safe.

  147. Invaluable, can even burn by PhotoGuy · · Score: 1
    Knoppix is truly invaluable for Windows and Linux rescue. Last time I did a rescue, I had two CD roms on the system, and Knoppix even let me burn the files I needed to save onto a CD; it can't get much more convnient than that.

    I do wish there were USB-key based distros that were easy to set up (there is at least one based upon Damn Small Linux, a derivative of Knoppix, but I've never been able to get it work); I have seen bundled DSL or other based rescue setups preconfigured on USB memory keys but not an easy-to-install downloadlable version.

    --
    Love many, trust a few, do harm to none.
  148. Re:Why is this a story? by Anonymous Coward · · Score: 0

    Well, I've never fscked up my partition table, just my bootloader... numerous times.

    With the amount of times I install/reinstall OSs on my desktop (which pentuple-boots (that's 5, right?)) with only 2 of the OSs staying constant the rest changing as I find OSs I want to play with, I've basically given up on keeping the boot loader in tact.

    Instead, I threw grub on a floppy and just leave the floppy in the drive and let the OSs fsck with the boot sector all they'd like.

  149. This just occured to me by i_c_andrade · · Score: 1

    but a live CD is something that could be abused quite a bit by really bad people. (ex) FBI raids your residence, they confiscate your machine, it has no hard drive since you are using a live cd that then connects to some arbitraty server to store files that need to be written. Sure traffic flowed from your computer and you did stuff, but its not on your computer.... I am still working things out how one could customise the live cd to do the things you would want but this is thankfully under the radar (well till I opened my mouth)

  150. Re: GRUB Hack To Boot Windows 2000 by Ziviyr · · Score: 1

    LILO sounds better for that...

    IMHO

    --

    Someone set us up the bomb, so shine we are!
  151. Why all these Dead Drives -- let me guess by waterbear · · Score: 1

    So what is it with all these dead drives? Why are they all giving up?

    I've tried W2K and WNT (but not XP).

    One of the things about W2K/WNT that horrified me on the first time (and every other time) I booted it up was the long loud disk-grinding noises -- not just from the hd that carried the OS but also from every other physical disk on the system. WTF? How many times do you need to try the hds and fds when you boot an OS? None of the win websites I looked at seemed to have any explanation for this excessive disk activity, nor any tips for how to stop it. So I just don't regularly use them, keep one aside for occasional test/diagnostic use and that's it.

    My personal vote stays with a dual-boot linux and W9x system. DOS used to go very gently on the hardware, W9x and linux seem to hit it harder than DOS did, but nothing like the intensity that W2K seems to throw at it. After over 15 years' using hard-disks, so far none of my own disk hardware failed, all supersedure has been for reasons of disk-size (hm, better check those backups :-/).

    Btw I really like and use Knoppix for s/w hangups.

    -wb-

    1. Re:Why all these Dead Drives -- let me guess by Ratbert42 · · Score: 1

      So what is it with all these dead drives? Why are they all giving up? Stop smoking.

  152. Every administrator should have one by silverdr · · Score: 1

    "Perhaps every administrator should have a Knoppix CD on reserve."

    Yeah... just in case she runs out of cup pads...




    Did I mention that none of the Knoppix CDs i tried in the last two years ever booted on my Debian box?

    --
    Now, mod me down freely. My karma can't get any worse...
  153. Knoppix "saved me", I suppose by chickenmonger · · Score: 1

    The first time Knoppix saved me was during finals week my sophomore year of college. For some unknown reason, the MBR of my hard drive screwed up randomly. I didn't have time to reinstall Windows, so it allowed me to continue checking my email and working on final projects until I was able to do a full recovery during break.

    Another time it "saved me" was when the hard drive and case shipped later than everything else for my new computer. I ran Knoppix on that computer, which sat in a cardboard box, for a week and a half as I waited for the rest of the parts to arrive.

  154. Re:Why is this a story? by 808140 · · Score: 1

    Can you hard link directories?

  155. my story by zenray · · Score: 1

    One of our management brought his wife's home busniss systems in and after I verifyed a bad sector on the dard drive - which forced Dell to honour its warranty with a replacement drive - I used Knoppix to boot the system and burn a few CDs of all the data that was on the failing disk. This was just weeks before Spinrite 6 was released that works on NTFS drives. It was nice that it had the boot CD the older CDROM type and the second CD the CDRW type. I rebuilt an old system at home like this just so I can pop bad hard drives in and charge customers for data recovery!

    --
    zenray
  156. My Big Fat Obnoxious Windows XP Laptop by Ratbert42 · · Score: 1

    So one day I double-click on an MP3 file. Windows Media Player launches and asks if I'd like to install the update that's available. Sure, why not? Partway through the install it locks up. The machine freezes. Nothing. I reboot. Blue screen. Over and over. I boot in safe mode. Blue screen. I boot Knoppix. No problem. I copied my important files off to another box. I take the laptop to IS. They try rescuing it with an XP cd. Blue screen. They try an outdated version of Sysinternals ERD. Blue screen. They run memtest or something like it. No problems. They give it back to me. I boot Knoppix and copy the rest of everything I might possibly want off of it. An hour with Google and trying to copy Windows Media Player files from a working box gives me nothing but the same blue screen. I get a *ahem* trial version of Sysinternals latest ERD. Bluescreen. I gave it to IS to re-Ghost.

    If it wasn't for Knoppix, I'd have sworn that I had a hardware problem. It definately impressed the Windows-heads in IS.

  157. Slight correction... by fuzza · · Score: 1

    Perhaps every administrator should have a Knoppix CD on reserve.

    s/every administrator/everyone/

    We sysadmins [should] have been using them long ago :)

    --
    Can't find examples of evolution? No matter, neither could Dawkins
  158. FYI: This article just saved my 4$$ by hoggoth · · Score: 1

    I just wasted 4 days struggling with WinXP boot disks, network installs, NTFS for MSDOS, and voodoo dolls to try to rescue 40 Gigs of data from a nearly dead drive. The drive didn't show up at all when plugged in. Some rescue tools could see the data but not retrieve it or copy it. Four days of tearing apart machines and trying anything I could download.

    Then I read this Slashdot article. Downloaded Knoppix. Burned a CD. Booted from the CD. Everything auto-configured: nearly-dead disk, network, everything. I could see ALL my files! Mounted a huge drive from a good machine over the network. Dragged all my files from the nearly-dead disk to the good disk on a different machine. Done. Saved.

    Struggle with Windows products: 4 days.
    Download Knoppix: 1 hr.
    Burn CD: 5 minutes.
    Save data: 5 minutes.

    Thank you.

    --
    - For the complete works of Shakespeare: cat /dev/random (may take some time)
  159. Converted someone in the process by Anonymous Coward · · Score: 0

    A friend's windows laptop was infected with viruses and spyware so badly she couldn't even get on the network (our univ. boots off machines that show a lot of outgoing malicious traffic). No amount of Virex/Adaware could get rid of everything, so I just said "Fuck it" and burned and inserted a Knoppix CD. I showed her how to use Mozilla, Konqueror, OpenOffice, and gAim and she has only gone back once. I didn't want to fool around with the NTFS-write hack, so she saves all her documents to a network disk. It was supposed to be a temporary measure that ended up being sufficiently good as to become essentially permanent. If you want to convert people to Linux, have them start using it as a stop-gap measure the next time something goes horribly wrong, and then never do anything about it.

  160. Boot CD Trinity by Arctech · · Score: 1

    There are three main bootable CDs (amonst a few others) that are in my software toolkit at all times: Knoppix, The Ultimate Boot CD, and The Ultimate Boot CD for Windows XP. All three are invaluable diag/repair tools.

  161. Thankyou! by Quizo69 · · Score: 1

    I've tried to use Knoppix to recover Windows files in the past and could never figure out why it wouldn't recognise the USB Key. Now I know to insert it BEFORE booting.

    So thankyou for a great guide!

  162. STD? by SphericalCrusher · · Score: 1

    I'm guessing that the Knoppix CD that he's talking about is Knoppix STD. I don't know of a better rescue disk...

    --
    "Instant gratification takes too long." - Carrie Fisher
  163. Fine, but unlicensed by KMSelf · · Score: 1

    PEBuilder (and 911 Rescue CD) are among the only legacy MS Windows-based rescue bootable CDs I'm aware.

    Both of them suffer from a number of disadvantages compared with Linux-based bootable CDs:

    • Unlicensed. Despite some unconvincing fast footwork by Bart on his website, the fact remains that BartPE is an unlicensed copy of Windows, using files extracted from MS Windows installation media.
    • Build tools, rather than images. While Knoppix, LNX-BBC, DSL, and other Linux bootable systems are available as complete, self-contained images which can be downloaded and burned to disk, the Windows based PE builders assemble a set of local tools onto the disk. Which means you need copies of the utilities to install. As 911 Rescue points out, that's well over US$700 worth of software.
    • Severely limited environment. BartPE allows no more than six simultaneous processes, and 24 hours continuous operation, 800x600 max resolution, and you can't legally duplicate and distribute the disks. Linux bootable disks allow unlimited processes, users, maximum supported video resolution, and of course, you can burn as many of 'em as you want to distribute to co-workers, friends, clients, or the public. I've literally left Knoppix systems running for a week or more while using systems for recovery, demo, repair, installation, etc.

    Sure, there are Windows-related repair and recovery tasks best accomplished from within a Windows environment. But the tools are far more limited than the equivalent Linux tools.

    More on this at WindowsRescueDisk.

    --

    What part of "gestalt" don't you understand?

  164. BartPE - The Windows LiveCD by Anonymous Coward · · Score: 0

    BartPE is also great, when it helps to have a Windows-based Live CD.

    You need a Windows XP SP1 CD to build the Live CD .iso

    Great for many reasons but especially because you get reliable read/write NTFS access.

  165. Knoppix helped my Windoze box, too by ufotofu · · Score: 1

    I have a 160 GB drive on my new Compaq, but that entire drive was a single partition. The restore DVD that comes with the computer won't allow me to create multiple partitions, either. I wanted to make multiple partitions without hurting the existing data.

    Rather than buying a copy of Partition Magic to use one time, I Googled and found that the Knoppix includes QtParted, which is easy to use and fairly reliable for resizing partitions. The key with the (Compaq) restore disk is that it puts all the data (OS and numerous apps) on the drive and then has to reboot. When it reboots, it stretches the partition out to the size of the entire drive - I guess so the same restore disk can be used on models with drives that are different sizes.

    I simply slipped the Knoppix CD in before rebooting from the restore disk. I used QtParted to stretch the initial partion out a little bit, and added two more partitions for the rest of the drive. It worked like a charm!

    Of course, I put another drive in the computer for Linux. I'm a longtime Debian user, but decided to give Ubuntu a try. It's great so far!

  166. pff... by Anonymous Coward · · Score: 0

    man i tried to give my school administrator a copy of STD and whoppix once, and he saw the fancy shmancy disk labels i put on them, (aka, kissass) and thought "ON NO! HACKER! VIRUS! PENGUIN! LINUX! EVIL!"...im sure he did, and declined my disks...and since i used some of my lunchtime to talk to him, i met the roaming hallway bullies and got beat up! >:( so i'd have to say knoppix ruined my day...damned disk labels..(just kidding. i love knoppix. it was one of my first.)

  167. Looked up Microsoft Knowledge Base. by myth_of_sisyphus · · Score: 1

    I've used Knoppix to search the Microsoft Knowledge Base and also look for their tech support number.

  168. Don't generilize, you sound silly. by jotaeleemeese · · Score: 1

    In many places, big datacentres specially, Systems Administrators have no physical access to the machines they administer.

    Under those circumstances to have a rescue CD is , er, stupid and unnecessary.

    There are many kinds of Systems Administrators, don't give recipes that you think apply to everybody because more often than not they don't

    --
    IANAL but write like a drunk one.
    1. Re:Don't generilize, you sound silly. by Rob_Warwick · · Score: 1
      Good point. I'll be sure to revise my preaching to mention which sys admins before my next rant.

      Thanks.

  169. What exactly .... by jotaeleemeese · · Score: 1

    ... are waiting for?

    --
    IANAL but write like a drunk one.
  170. about knoppix by Pouncy · · Score: 1

    I have a dell inspiron 8500. When I tried to install Knoppix to the harddrive, it stalled at 85% and failed on the verification. I would LOVE to have Knoppix on my harddrive as it has much of what I like about it. Any help? Even the latest one (the best one yet 3.7) is having the same problem. I don't know why. Email me at Taliesinsmandolin@tmail.com if any solutions.

  171. Linux GRUB by Pouncy · · Score: 1

    Story.. I have XP and Linux Redhat Enterprise 3.0 installed on separate partitions. If you ever end up having to reinstall windows XP (oh yes, nightmare! please), the bootmanager makes a pain in ass because it windows' doesnt recognize any other operating systems. A method to beat the window Bootmanager. Get windows totally set up how you want it. Then reboot, and boot the Redhat installation CD from the CD drive. Then when asked to partition, choose the manual partition. Edit the patition that you previously had linux on, and identify it as / , and when it asks you to format, chose DO NOT FORMAT. Then click on SWAP partition, and again, chose not to format it. Then go through the normal installation processes (yes this takes time but is harmless to your data), and then when done, viola!! Linux GRUB is back as your primary Installer. NExt, you need to go back into Redhat and mount the different partitions back. mount -t ext(2 or 3) /dev/hda(number) /mnt/hda(number) if another linux partition usually helps. then doublecheck with the command cd /mnt/hda*number) then ls to verify content is mounted email at Taliesinsmandolin@tmail.com

  172. Off-topic: 1.000 not 1,000 by Anonymous Coward · · Score: 0

    Just FYI--and maybe you know this and just hit the comma by accident--it's "1.000" not "1,000". Batting averages (for example, .182, .300, or 1.000) use periods, not commas, because they are the result of dividing hits by at-bats. 4 / 4 = 1.000. 2 / 4 = 0.500. Etc. :)