Slashdot Mirror


Depenguinator "Upgrades" Linux to BSD

cperciva writes "Many systems around the world have been possessed by penguins and dead rats. It would be nice to exorcize these evil spirits, but this can be difficult without physical access to the machines in question. Thanks to a new depenguinator, it is now possible to upgrade Linux systems to run FreeBSD 5.x without requiring anything more than an SSH connection." Clever idea.

9 of 616 comments (clear)

  1. You have been rooted, welcome to BSD by diersing · · Score: 5, Funny
    I'm now scared.

    The next root kit is announced and within days all machines have been *upgraded* to BSD. Argh

    1. Re:You have been rooted, welcome to BSD by skaffen42 · · Score: 5, Funny

      I think we finally have proof that BSD is dead. I mean, this is the clearest attempt at daemonic possession I have ever seen.

      --
      People couldn't type. We realized: Death would eventually take care of this.
  2. I'm gonna sit back at a safe distance by CompWerks · · Score: 5, Funny

    and watch this flame war. Marshmallows anyone?

    --
    If you can read this sig - the bitch fell off.
  3. Similar tool for Debian by tuxzone · · Score: 5, Interesting

    Looks like a great tool. Unfortunality for the daemons, I want to replace my dead rat (7.2) with a Debian branded penguin. I would love to do that upgrade online. Any tips or tools?
    Thanks!

    1. Re:Similar tool for Debian by vadim_t · · Score: 5, Informative

      Use debootstrap. It will create a minimal install in any folder. Then chroot, and there you go, a small Debian system. Using that, you can either install Debian on another partition while running another distribution, or I suppose you also could replace your current install with Debian by booting into single user mode, and replacing your old system with Debian.

      While you should be able to simply chroot into your new system and start adding stuff, I'd be a very good idea to boot it first. Debian will need to run some scripts on boot to finish configuring itself.

      I'd go with the first option. The second one is too easy to screw up if you don't know what you're doing.

  4. Instant system trash by Fizzl · · Score: 5, Insightful
    So, it writes a bootloader, ramdisk loader scripts and a bare bones BSD image to the beginning of your disk, trashing the partitioning (not sure about the last bit. That's the impression I got).

    Effective, yet mischievously evil.

    Well. Uhoh.. I don't know what to think about this. I mean, it's kinda neat. It's called depenguinator to make clear it's going to get rid of your linux, butbut...
    I still think the way of operation is very crude and evil.

    It says:
    This code is beta-quality at best. Do not use this unless you know what you're doing.


    I'd personally go as far as saying:
    Do not use this unless you are reallyreallyabsolutely sure you want to permanently destroy your current system.
  5. Windows - Freenix by aking137 · · Score: 5, Interesting

    I've often wondered if this could be done with Windows - if one could make a (perhaps large) Windows executable that, when you double click on it, assimilates your system and turns it into a Linux box. (Which could in turn provide the depenguinators with lots more machines to work on.)

    Win9x should be more straight forward - you can boot a linux kernel directly from a real DOS prompt using loadlin (although this may not be necessary), and it's possible to have the whole root filesystem stored in one file on a FAT32 filesystem, so the .exe could create the root filesystem (maybe something like a base debian or gentoo install), put everything in place, change how the machine boots, and restart.

  6. Re:Hmm... by molnarcs · · Score: 5, Insightful

    I'm a freebsd user (5.1 - cvsupping to 5.2rc2 at the moment) and I love it. Contrary to some myths, it is great on the desktop. There are some things that just work. Put one line in your kernel config file (devce pcm) and you can just plug any supported sound card in, and it will just work, without the need for any configuration. The same goes with digital cameras: plug it in, and mount_msdosfs /dev/da0s1 /mnt/camera and there you go. Configuration is no more difficult than slackware (in fact, its easier, with automatic dependency checking/resolution ala apt-get, or by simply using the ports system). On the other hand...

    I agree with parent post ... sadly, this announcment will be considered as flamebait. I don't understand this, really. I signed up to bsdforums when switched to BSD, and I must say its one of the friendliest forums I ever been to (including mandrakeusers.org or pclo which are also great). I don't find the hostility against linux in bsd users there the way I find hostility towards bsd users from linux users here on slashdot or recently, even osnews.In fact, there is a linux section (other os) on bsdforums, and I saw people helping out with fedora install or whatnot there without any 'use bsd instead' notes. I wish this continual flamewar would end, but frankly, I believe (mod me down if you wish) that most hostility comes from linux users. If you find some bsd folks here a little touchy, considering the amount of trolling every bsd announcment gets, it is a small miracle that people still come here for bsd news, that they are not as bitter as one would expect (but than, they - warning, flamebait! - seems to be more mature.

    This is not because BSD is better or something. I like linux as much as I do BSD, I just like to use the latter better, because it is more interesting/fun to _ME_. I believe the linux crowd can be (and maybe it is) as 'mature' as bsd folks, but it is a more diverse group as well as considerably larger, so I think there is more room for a small but vocal minority to ruin the relationship and raise ill will towards each other. I wish that more considerate linux users would help out modding down trolls, afterall, we both have profited from each other's work.

    Unfortunately, due to licencing, code exchange is mostly a one way road (BSD > Linux), but still BSD has to thank for GCC (well, not specifically linux) or the ULE scheduler (which is partly based on a linux developer's work - more linux specific) without which our beloved OS would be poorer.

    Anyhow, the point I was trying to make is that this article can sadly be considered a flamebait, although we see similar announcment without anyone fearing that it is on the 'other' side. It would be nice to live without fears that such announcments would attract a large amount of trolling, to think that the article (read it!) has its on technical merits that can be interesting to anyone who visits slashdot (nerds?) no matter what OS they use.

  7. Re:does FreeBSD have something like apt-get or yum by molnarcs · · Score: 5, Informative

    "having to do a make world on 300 boxen"

    Not any more, and 'make world' is being deprecated in favor of 'make buildworld'. The difference is, that 'make buildworld' is totally self contained. You do 'make buldworld' on one machine, export /usr/obj (and /usr/src as well?) as nfs, mount it on your 300 boxen, and you only need to install the shiny new bsd with 'make installworld'. That's it. So it is actually quite easy to deploy on a large server farm. You would go the same way with the ports btw: build on one machine and have it make pakcages, than install the packages with pkg_add -r whatever on the rest of the machines. Neat. :)