APLawrence - Information and Resources for Unix and Linux Systems, Bloggers and the self-employed
RSS Feeds Get APLawrence.com by RSS











(OLDER) <- More Stuff -> (NEWER) (NEWEST)
Home > Linux Articles > Getting near to the end?
Printer Friendly Version




Linux Section

Getting near to the end?




Well, the SCO lawsuit is getting closer to the end. According to the Groklaw article in the link, the judge threw out most of their claims. Too bad he didn't throw them all out, but..

Anyway, it's getting even less likely that SCO is going to do well here. For those who are still running SCO systems, time could be running out: the company may not be there when you need them to be. So what now?

Well, obviously if you can easily switch to Linux or BSD, it's time to start laying plans. That doesn't mean you have to jump ship now, and of course application licensing fees may mean you want to put the move off as long as possible. But you need to be planning now, and if possible putting up test systems to find out what sorts of problems you will encounter. Better to have everything ready to go long before you absolutely need to.



For those unfortunate people with ancient software that cannot be transferred and won't run under Linuxabi, well, you just have to bite the bullet or resign yourself to scrounging old hardware to keep around as spares.

And for all of you who are hanging on but know you need to move, I've instituted a new section here that attempts to gather together articles related to conversions. That should help you find related material more easily.


If this page was useful to you, please click to help others find it:  
Your +1's can help friends, contacts, and others on the web find the best stuff when they search.


8 comments




More Articles by Anthony Lawrence - Find me on Google+



Click here to add your comments





Fri Dec 1 17:25:31 2006:   TonyLawrence

gravatar
By the way, another possibility for those needing to keep old systems limping along is to do it under virtualization..






Sat Dec 2 04:35:24 2006:   drag


That sounds like a very usefull research project/article.

How hard would it and what problems would it cause to try to pull a image off of a SCO box and stick it into Linux under Qemu or Vmware?

If you start off with 'dd if=/dev/sda of=sco.image' and copied that into a modern Linux box, what would be the next step?



Sat Dec 2 13:05:56 2006:   TonyLawrence

gravatar
I would expect that to be difficult - I was thinking more in terms of a new install.

I don't know if qemu-img

http://www.penguin-soft.com/penguin/man/1/qemu-img.html

has any support for SCO



Sat Dec 2 22:32:52 2006:   drag


I don't know much about qemu-img. I think it probably just does what dd does, except in a convient command.

For my personal use I just dd to make blank disk images.
dd if=/dev/zero of=hda.img
Then I let it run for a while and hit ctrl-c when it looks like it's gotten big enough. Of course it's easy to set for paticular sizes and different things like that. Then with Qemu install from a iso image to a disk image is very simple. Or you can specify the harddrive or cdrom /dev/ file if you want and it will work the same.


Then of course everybody knows about using dd to make backups of drives and making iso images and such.

For instance I wanted to mess around with operating system running off of a flash drive. When I wanted to muck around with changing a lot of stuff or installing a lot of software then I used dd to copy the the flash drive into a 'hda.img' or whatnot and used that. Then when I was finished I dd'd it right back.

I didn't use it a whole lot and I didn't realy end up doing much with it (got sidetracked with moving), but I don't remember any problems with it.

Also I don't know how well SCO file system support is for Linux, but then if you want you can use the 'offset' option in mount to mount paticular partitions to directories. Something like:
mount -o loop,offset=43235 hda.image /mnt

That way you can then go in and adjust the settings for the hardware or whatnot.

The hardware qemu emulates is pretty vanilla stuff. 32bit x86 (although it has support for other things), Cirruss logic video card or standard vga adapter, sound blaster or Esonic ES1713. Then you have options for different serial terminal stuff.

For options there is the qemu-launcher GTK front end, and to speed things up there is a propriatory kernel model called Kqemu that bypasses some of the cpu emulation to the real cpu. This makes it decently fast, although it's still not as fast as Vmware. (the author is willing to make the kernel module open source if some company steps up and compinsates him financially, btw.)

The things I've ran it in are Windows XP, FreeDOS, and Linux, however Windows was a fresh install only.



Sat Dec 2 23:21:37 2006:   TonyLawrence

gravatar
There are supposedly drivers for SCO filesystems, but I've never actually seen one. There are articles here on that subject.

The basic issue is that SCO does NOT create filesystems on fdisk partitions as Linux (non Raid linux) does. Sco divides a partition into "divisions" and puts filesystems on those.





Sun Dec 3 05:03:15 2006:   BigDumbDinosaur


The basic issue is that SCO does NOT create filesystems on fdisk partitions as Linux (non Raid linux) does. Sco divides a partition into "divisions" and puts filesystems on those.

Minor clarification: SCO uses only one partition per disk, unlike Linux which can (and usually does) configure multiple partitions.

As a point of trivia, there's no reason that any partition has to be configured at all. The only thing the BIOS does when it reaches the point where it wants to load an OS is read CHS 0:0:0, load that code into RAM and then cheerfully assume (based upon some very simple tests) that there's an OS bootstrap loader waiting to be run. It is the OS boot loader that cares about partitions, which means, of course, that the boot loader could not care, if the programmer so wished.

Frankly, I wish the Linux coders would get away from this business of using multiple partitions to configure multiple filesystems. The division method used by SCO, in my humble opinion, is a superior scheme, and more resistant to damage.



Sun Dec 3 11:27:23 2006:   drag


Well just use Linux LVM if you don't want to use partitions. The only problem is if your using Grub bootloader then you have to have a seperate /boot partition.

Otherwise probably the main reason otherwise people use partitions still is just because that is what they are used to. Probably the same reason why people are still using the /dev/sda and /dev/hda stuff; you can name those anything you want nowadays if your running udev, but most people keep it devfs-style because it's what they are used to.

I don't know how you would go about mounting lvm stuff in a disk image though...

That's too bad about the filesystem driver issue though with SCO stuff. That would maybe make things harder for migrating away from it. I know that the BSD systems typically use the 'divide up a big partition to smaller volumes' and such and Linux can read those (not sure how to go about doing that though) but obviously that is not very helpfull with the SCO stuff.



Sun Dec 3 11:35:59 2006:   TonyLawrence

gravatar
(Minor clarification: SCO uses only one partition per disk, unlike Linux which can (and usually does) configure multiple partitions.

More clarification: although it is common for SCO systems to use one partition, they can use all four, with multiple file systems: up to 7 per partition; see http://aplawrence.com/Boot/filesystems.html

As Drag noted, the SCO scheme is similar to Linux LVM:
http://aplawrence.com/Linux/lvm.html

in the sense of carving up partitions.

Don't miss responses! Subscribe to Comments by RSS or by Email

Click here to add your comments


If you want a picture to show with your comment, go get a Gravatar



Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

Jump to Comments



Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.

Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.

We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.


My Troubleshooting E-Book will show you how to solve tough problems on Linux and Unix systems!


book graphic unix and linux troubleshooting guide




Buy Kerio from a dealer who knows tech: I sell and support

Kerio Connect Mail server, Control, Workspace and Operator licenses and subscription renewals
pavatar.jpg

This post tagged:

       - Conversion
       - SCO Lawsuit
       - Linux
       - Opinion
       - SCO_OSR5
       - Unix




Unix/Linux Consultants

Skills Tests

Guest Post Here