Home Blog Page 9921

Anna ‘virus’ rushes the Net

Author: JT Smith

CNET News.com reports on Anna, a naughty Visual Basic script posing as a photo of Russian tennis player Anna Kournikova. Once the photo is opened via Microsoft’s Outlook email products, the script then mails itself to everyone in the initial recipient’s address book.

Category:

  • Linux

Court stops Napster

Author: JT Smith

Anonymous Reader writes “The ruling has come down and for Napster it’s bad. In a 58-page opinion the US Court of Appeals for the Ninth Circuit ruled that the online service is guilty of infringement and must stop trading in copyrighted material.” Story at MP3 Newswire

Court orders Napster to stop as soon as it finishes downloading Pink Floyd

Author: JT Smith

SatireWire: “In a 2-to-1 decision, the 9th Circuit Court of Appeals ordered song-swapping service Napster to stop trading copyrighted material as soon as the judges finish downloading their favorite Pink Floyd songs, which the judges have been unable to access due to heavy demand on Napster’s servers.”

Category:

  • Management

Computer Associates strengthens Linux link

Author: JT Smith

ChannelWeb covers developments in Computer Associate’s Linux support, taking a look at the company’s cluster management and Unicenter performance testing software.

Category:

  • Linux

Freedom’s just another word for ‘do it my way’

Author: JT Smith

LinuxPlanet runs commentary from Dennis E. Powell regarding the different perceptions of what “free” means to denizens of the Open Source community and other technology areas, stating “Alas, the Free Software Foundation’s definition of “free” is as corrupt as is Microsoft’s.”

Linux kernel 2.4 ascends the big iron

Author: JT Smith

Linux.com reports on the use of Linux in larger mainframe computers, machines some considered to be near death just a few years ago. “The new Linux kernel 2.4 increasingly supports higher-end machines, such
as the IBM S/390 Mainframe, and clusters. 2.4 also better supports many of
the peripherals associated with this class of machine, like gigabit Ethernet,
fast-switching, multi-device support for RAID and LVM, improved SCSI
drivers, and more.”

Category:

  • Linux

Maxtor ships a smaller, simpler hard drive

Author: JT Smith

Maxtor takes an unusual step — some might say a backwards step — in the “bigger is always better” world of hard drive manufacturing by debuting is latest hot product: a 15GB disc. The key here isn’t capacity but increased reliability, as those fifteen gigs were designed to be unusually sturdy, utilizing a single platter, one read/write head, and a latching mechanism to hold everything in place. The new drive is available now for $90 MSRP. Full story at PC World.

Category:

  • Unix

Products, ideas ready for launch at Demo 2001

Author: JT Smith

Expect new wireless products and strategies from Palm and Microsoft at this week’s Demo 2001 trade show, taking place this year in Phoenix. Microsoft is expected to raise the curtain on a wireless email system, while Palm will talk about its Bluetooth strategy for Palm devices. Full story at InfoWorld.

KDE 2.1 release schedule

Author: JT Smith

As posted to the kde-core-devel list, the new release date for KDE 2.1 will be February 26 (that’s a Monday). Click through for other important deadlines shared by developers and testers. pages to alpha

2.4 kernel: How are decisions made on what goes into the kernel?

Author: JT Smith

By Dylan Griffiths

The Linux kernel is the center of every Linux distribution. It is the foundation upon which the userland (the programs and environment you use to interact with the system) is built. The source code which goes into it is very special — any bugs it has will affect every part of the system, perhaps even destroying the work of the user. How do changes happen inside of it? How are decisions made about the direction that the kernel will take?The Linux kernel is split into many parts. The largest division is that of the core kernel code and the device drivers. The core kernel code is divided further into subsystems. Some subsystems contain architecture-specific code, whereas most device drivers are not architecture specific. By the kernel being divided in this way, many people can share the work of maintaining the kernel by watching over specific parts. Each device driver has a person who is responsible for it; each subsystem of the kernel core has a maintainer which monitors its development.

The various programmers working to maintain the kernel are in a loose hierarchy. More experienced programmers, who have contributed more and have volunteered for this responsibility, are assigned more important jobs. The ultimate authority over all of these programmers is the official tree maintainer. As of this writing, they are: Linus Torvalds for 2.4.x, Alan Cox for 2.2.x, and David Weinehall for 2.0.x. The official tree maintainer is like the director of a play — they assign tasks to the other programmers, sometimes giving examples of the direction they wish the code to go. They work to make the kernel match their vision of what it should be.

You may be wondering how a tree maintainer decides on a direction for the kernel; where their vision comes from. It comes from the users. The users ask for features, report bugs that interfere with their work, and generally provide feedback about what the kernel is doing for them. Based on this, and personal motivation, the tree maintainer decides on a set of concrete goals for the kernel. This is their vision.

The direction of kernel development is not static throughout the life of a specific branch of the code. As the needs of the users change, the goals for the tree change. The discussion of these changes takes place on the Linux-kernel mailing list. The list receives almost all of the public discussion between the various developers, as well as general bug reports, feature requests, and patches. Averaging 200 messages a day, it’s not for the faint of heart.

The vision for the 2.4.x tree involved fixes and improvements to the VM subsystem, expanded scalability in enterprise environments, increased portability, and better efficiency. These changes were motivated by the humiliating mindcraft benchmarks of 1999, as well as a desire to give enterprise Linux users the ability to use all their big iron with Linux. Over the course of the tree’s development (the 2.3.x series of kernels), changes not directly related to Linus’ goals for the tree were accepted because they cleaned up code, addressed misbehaviour of code, or paved the way for future code cleanups.

Over the course of the development series, some conflicts arose as well. Andrea Arcangeli and Rik van Riel both had ideas about how the virtual memory subsystem should be designed. Alan wanted to see whose approach to improving the VM was more effective in his AC branch of the 2.4.0-test series. The solution was to have both men submit their patches, and release two versions of the next AC test kernel. The most stable patch was then selected and included in the next release. This process was repeated a few times to give a fair chance for competition between the programmers. The eventual winner was Rik’s algorithm. Linus merged in the patch from Alan’s AC tree, and it became the official VM patch going into 2.4.x’s stable release.

The Linux kernel is one of the larger Open Source projects around. The 2.4.1 kernel is a 24 megabyte tarball; expanded, the source is over 100 megabytes in size. This is quite a growth over the original source released onto usenet in 1991 by Linus — that kernel was half a megabyte in size uncompressed!

By harnessing the ideas of the developers and users, the development process of the Linux kernel has allowed it to eclipse many traditional operating systems in performance and reliability. This process, which emphasizes reliable code and correctness over the feelings and politics of individuals, is an essential part of the success of Linux.

Category:

  • Linux