Domain: redhat.com
Stories and comments across the archive that link to redhat.com.
Comments · 4,506
-
Re:Radiation hardnessWhile I would agree with you that avoiding malloc and preallocating memory is the way to go, but it is not always possible. In my case, we are using various 3rd party libraries, and changing them to use static memory allocation would be prohibitave. In at least one case, the third party library source code was not available. Also, in many cases the dynamic nature of some algorithms requires dynamic memory management. You cannot statically allocate everything, especially in a limited memory environment.
I know we're not the only ones to have been burned by Wind River's malloc. I know several major companies that also had to replace Wind River's code.
As far as being able to dynamically replace code, VxWorks isn't alone in that. Numerous other RTOSes out there can do the same thing, including QNX. QNX even supports the concept of a hot standby process to take over if the main process dies.
To give you an idea about how Wind River's malloc works, they keep a sorted linked list of fragments from the smallest to the largest. When you try and allocate a block, it walks the linked list until it finds a block large enough. Likewise, when you free a block it checks if it can coalesc the block with a neighboring block. It then goes through the linked list looking for a slot to insert the free block.
Yes, VxWorks may have been around since the 80's, but that's part of the problem too and it is showing its age. In the 80s embedded processors typically did not have MMUs. Now MMUs are quite common in the more powerful embedded processors.
You say you can't have low latency and memory protection? QNX proves that you can. It is low latency and *very* robust. If your driver dies, no problem, restart it. Timesys Linux also has a very low latency, although not as low as QNX. Timesys also has an interesting feature where you can guarantee CPU and networking resources. I can schedule a task to be guaranteed 5.8ms of execution every 8.3ms and it will guarantee that that task will get the CPU time allotted to it with the desired resolution. This is without increasing the system tick rate (usually 10ms). Timesys can also schedule a task to be higher priority than an interrupt. I'm not as familiar with QNXs scheduler, but it's also quite flexible from what I've heard.
As far as FAT, it is not a robust filesystem. It never has been. If the FAT gets corrupted or a directory entry gets corrupted it's difficult to recover. Other than possibly having 2 copies of the FAT cluster table, any corruption can be difficult to repair. If the FAT table gets corrupted, which table is corrupt and which is not? If a directory entry gets corrupted, it can be impossible to fix. For flash memory, unless you are using a device with special wear-leveling, FAT is about the worst choice since any file write that changes the size of a file requires a write to the directory entry and possibly the FAT table. If the table gets corrupted and you don't run a repair operation (which often ends up leaving orphaned files as lost clusters), the file system can happily corrupt itself to death. Why do you think every time DOS/Windows9x/ME crashed it had to repair the disk with scandisk? FAT is a poorly designed file system that was originally designed for 160K floppies and scales poorly. FAT32 is an improvement, but it's still not very robust. For flash, something like Linux's journalling flash file system 2 (JFFS2). More information on VxWorks file system support can be found here.
Basic VxWorks information can be found http://www.slac.stanford.edu/exp/glast/flight/doc
s /VxWorks_2.2/vxworks/guide/. -
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the circus-worldMore useful information for optimizers, builders, testers, dummies,
...:http://gcc.gnu.org/projects/tree-ssa/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/
http://people.redhat.com/dnovillo/pub/tree-ssa/sna pshot/gcc-ssa-3.5ssa-0.20040129.snapshot.src.rpm (24.4M)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/gccsummit-2003-proceedings.pdf (1'383'108 bytes)
== http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-pr oceedings.pdf (1'383'108 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003-slides.pdf (102'895 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/nordu2003.pdf (153'101 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03-slides.pdf (90'925 bytes)
http://people.redhat.com/dnovillo/pub/tree-ssa/pap ers/tree-ssa-gccs03.pdf (87'507 bytes)ftp://ftp.kernel.org/pub/linux/devel/binutils/bin
u tils-2.14.90.0.8.tar.bz2 (11'015'696 bytes)open4free
-
Re: the best SSA of the world
-
Re:I chose Debian
I'd gladly pay for patches, but the Enterprise options are why too expensive both for my current workplace and me personally.
How much would you pay for patches? How many RedHat machines does your current workplace hold and how much is a fair price for having patches available for those machines? Have you considered Progeny's transition service? Seems cheap to me at $5 per machine per month unless you have over 8 machines in which case you might as well purchase RHEL (RedHat Enterprise Linux) -
Re:Need help how to migrate from Redhat to Debian
-
Re:75% servers without Distro name...
Actually, Red Hat folks release Fedora updates for current releases. Here's the one from Monday for slocate, for example. Notice the redhat.com return address, and if you look at the package, you'll see it was built by a Red Hat engineer on a Red Hat system.
Older releases will be handled by the Fedora Legacy project, and while it'll take a little bit for that to get settled in, I'm highly confidant that it'll be a success. Again, see Debian -- "hobbyists" can do a good job of keeping security updates current. -
Either way...
-
Re:75% servers without Distro name...
The poster never said "untested hobby distro (Fedora) requiring frequent reboots." So no, it isn't trolling. It is actually a fact that this is the purpose of Fedora - a testing ground for the commercial offerings of RedHat. You don't have to read far down the Fedora web page to find this fact - it is in the first paragraph.
-
Re:not actually true
Fedora Core 2 which is due out in April (test1 is due in the next week or so), will ship with the 2.6.x kernel standard. Or you can get FC1 now, and install the 2.6.X kernel from the development tree (used to be known as Rawhide).
-
Re:not actually true
Fedora Core 2 which is due out in April (test1 is due in the next week or so), will ship with the 2.6.x kernel standard. Or you can get FC1 now, and install the 2.6.X kernel from the development tree (used to be known as Rawhide).
-
Re:MPPE?
I have always felt that Linux is a nice operating system (for hobbyists and geeks), but there are some areas where it is seriously lacking, especially when compared to its main competitor, Microsoft Windows.
* File sharing. Windows has long been superior when it comes to making large
amounts of files available to third parties. Even early versions of Windows
automatically detected and made available all directories thanks to the built in
NetBIOS-powered file sharing support. But Microsoft has realized that this
technology is inherently limited and has added even better file sharing support
to its Windows XP operating system. Universal Plug and Play will
make it possible to literally access any file, from any device! I think
universal file sharing support needs to be built into the Linux kernel soon.
* Intelligent agents. With innovations like Clippy, the talking paperclip and Microsoft Bob, Microsoft has always tried to make life easier
for its customers. With Outlook and Outlook Express, Microsoft has built a framework for developers to create even smarter agents. Especially popular agents include "Sircam", which automatically asks the users' friends for advice
on files he is working on and the "Hybris" agent, which is a self-replicating
copy of a humorous take on "Snow-White and the Seven Dwarves" (the real story!).
Microsoft is working on expanding this P2P technology to its web servers. This
project is still in the beta stage, thus the name "Code Red". The next versions
will be called "Code Yellow" and "Code Green".
* Version numbers. Linux has real naming problems. What's the difference
between a 2.4.19 and a 2.2.17 kernel anyway? And what's with those odd and even
numbers? Microsoft has always had clear and sophisticated naming/versioning
policies. For example, Windows 95 was named Windows 95 because it was released
in 1995. Windows 98 was released three years later, and so on. Windows XP
brought a whole new "experience" to the user, therefore the name. I suggest that
the next Linux kernel releases be called Linux 03, Linux 04, Linux 04.5 (OSR1),
Linux 04.7B (OSR2 SP4 OEM), Linux 2005 and Linux VD (Valentine's Day edition).
Furthermore, remember how Microsoft named every upcoming version of Windows
after some Egyptian city? Cairo, Chicago and so on. I think that the development
kernels should be named after Spanish cities to celebrate Linux' Spanish
origins. Linux Milano or Linux Rome anyone?
* Multi-User Support. This has always been one of Microsoft's strong sides,
especially in the Windows 95/98 variants, where passwords were completely
unnecessary. Microsoft has made the right decision by not bothering the user
with a distinction between "normal" and "root" users too much -- practice has
shown that average users can be trusted to act responsibly and in full awareness
of the potential consequences of their actions. After all, if your operating
system doesn't trust you, why should you trust it? (To be fair, Linux is making
some progress here with the Lindows distribution, where users are always running as root.)
With Windows XP, Microsoft has again improved multi-user support. Not only
does Windows XP come with a larg -
One thing we can't outsource...
How can people say BSD is dying when it has a mascot like this?! Linux needs to get its act together if it's going to compete with the kind of hot chicks and gorgeous babes that BSD has to offer!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Re:Clueless semi-N00B question...
You can always try a distro like Knoppix or Mandrake Move. They are both based on KDE 3.1 and dont ruin KDE. In fact they enhance it. Since they are magic discs they dont need to be installed, just download, burn, restart and enjoy.
There is always Fedora as well, which is the new Community Version of Red hat linux. They have become more KDE freindly. -
Look up and down this!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Open-source patent license needed!
Virtually nobody is writing open-source software to place it in the public domain. Rather, much of it is licensed under the GNU GPL, which embraces the property rights of copyright and uses them to ensure that the code remains open. I propose a parallel license for patents: a perpetual, irrevocable license for open-source software[1] to implement, use, and improve the patented concepts and inventions free of charge.
If we patent our patentable work, instead of merely copyrighting our code, we can build a defensive patent portfolio. This would give us some leverage against patent infringement suits, as well as being good business sense in the current climate.
What is the harm in not adopting such a license? Besides the possibility of open-source ultimately being crushed by patents, there is the risk of our work becoming a de facto Microsoft R&D lab. We are already seeing that future with XUL (or libglade) and Microsoft's XAML.
In addition, this license would give Red Hat a graceful way to keep their promise that they will never charge licensing fees on their patents.
And now, IBM has patented something very much like the Open Source model itself. Can we afford to continue ignoring patents? IBM was once greatly despised, and there is nothing to say that if Microsoft falls, they won't become a new tyrant.
Of course, open-source developers would still need to apply and pay for the patent, but it is much cheaper to apply than retroactively fight one.
[1] Rather than "open-source software", the patent license would have to define which software licenses are considered open source. If the patent license relies on an external definition like "OSI-approved", then the OSI could change the license after the fact by changing their approvals. Since the proposed license is irrevocable, the patent couldn't be withdrawn from it if OSI added a license the patent-holder objected to.
(This post is based on the ideas of someone else. I'll drop them a line so they can take credit or elaborate as they see fit.)
-
Buy a 64-bit AMD notebook instead
Like this one. Best Buy sells them for $1299 after rebates. They're getting some mentions on the Fedora Test List. It's amazing how much hardware you can get for semi-cheap when you're not paying the Centrino marketing tax. Besides, 32-bit CPUs are so last century.
Though you'll still need a NDIS wrapper to get the Broadcom 802.11g chip to work, or beat Broadcom with cluebats until they cough up the Linux driver they've apparently already written. Darn.
I'm going to stick with my desktop for now, but if I come up with an excuse to buy a notebook that's what I'll get. -
Re:Well.....The user friendly Mandrake Linux is out with a AMD64 version of Mandrake Linux 9.2.Mandrake 9.2 for AMD64
Fedora has a testversion for 64bit AMD. The future versions will support AMD 64bit. My dad runs Fedora. Fedora Core 1 for AMD64 test1
Gentoo has been supporting 64bit AMD for a while. But Gentoo is not yet for ordinary endusers. Gentoo Linux AMD64 Development
-
Actually, there are a number of them already...
For example:
- SuSE 9.0 Pro for amd64.
- SuSE Enterprise Server 8 for amd64.
- Mandrake 9.2rc1 for amd64.
- Fedora Core1 test1 for amd64.
- Gentoo's amd64 info
- Red Hat Enterprise Linux AS & WS are available for amd64.
I've been using Gentoo's amd64 stuff for a little while on my new Shuttle Box. Things are generally good although there are still a lot of packages that are masked. KDE is also problematic which may be a turn-off for some people.
A colleague just got a new dual-opteron Workstation from Pogo and is running SuSE 9.0 pro for amd64 and is rather happy -- just about everything plays nicely.
Multimedia has significant problems on both systems. No flash player for 64-bit, mplayer and related multimedia requiring 32-bit codecs. Nvidia amd 64 drivers require some patching if they work at all, at least as of last wednesday.
Otherwise quite happy with all of these. Mandrake claims to have multimedia stuff working properly (see above link for info) but wants to eat my partition table so I haven't checked it out yet.
--
"Now you'll see why they call me the Velour Fog" --Zapp Brannigan, 25-star General & Cpt. -
Actually, there are a number of them already...
For example:
- SuSE 9.0 Pro for amd64.
- SuSE Enterprise Server 8 for amd64.
- Mandrake 9.2rc1 for amd64.
- Fedora Core1 test1 for amd64.
- Gentoo's amd64 info
- Red Hat Enterprise Linux AS & WS are available for amd64.
I've been using Gentoo's amd64 stuff for a little while on my new Shuttle Box. Things are generally good although there are still a lot of packages that are masked. KDE is also problematic which may be a turn-off for some people.
A colleague just got a new dual-opteron Workstation from Pogo and is running SuSE 9.0 pro for amd64 and is rather happy -- just about everything plays nicely.
Multimedia has significant problems on both systems. No flash player for 64-bit, mplayer and related multimedia requiring 32-bit codecs. Nvidia amd 64 drivers require some patching if they work at all, at least as of last wednesday.
Otherwise quite happy with all of these. Mandrake claims to have multimedia stuff working properly (see above link for info) but wants to eat my partition table so I haven't checked it out yet.
--
"Now you'll see why they call me the Velour Fog" --Zapp Brannigan, 25-star General & Cpt. -
GNAA Announces responsibility for kernel backdoorGNAA Announces responsibility for kernel backdoor
By Tim Copperfield
Raleigh, NC - GNAA (Gay Nigger Association of America) this afternoon announced one of their loyal members was responsible for planting the "backdoor" inside the popular opensores operating system, Lunix (Stocks, Websites).
In a shocking announcement this afternoon, GNAA representative goat-see revealed that the mistery hacker who penetrated high-security defenses of the Lunix "source code" repository and injected viral gay nigger seed deep inside the kernel was indeed a full-time GNAA member.
"This is serious," goat-see began. This is a first event of such magnitude since GNAA opened its doors to new members in 1996. Until now, we were gathering new members by announcing our group information on a popular troll website, slashdot.org, but this is a whole new era. By injecting our holy gay nigger seed right into the Lunix kernel, we will be able to immediately collect thousands of members. "Make the most of the next six weeks," he added. "We will grow in numbers more than you can possibly imagine".
Insertion of the GNAA backdoor came right between the consideration of Novell to buy out the entire Lunix Kernel programming team, and will most likely positively affect the decision. By adding all the gay niggers working for Novell with the gay niggers developing Lunix kernel source, GNAA will be all-powerful and will begin plotting our next plans to add "backdoors" into the next favorite operating system, BeOS.
About GNAA
GNAA (GAY NIGGER ASSOCIATION OF AMERICA) is the first organization which
gathers GAY NIGGERS from all over America and abroad for one common goal - being GAY NIGGERS.
Are you GAY ?
Are you a NIGGER ?
Are you a GAY NIGGER ?
If you answered "Yes" to all of the above questions, then GNAA (GAY NIGGER ASSOCIATION OF AMERICA) might be exactly what you've been looking for!
Join GNAA (GAY NIGGER ASSOCIATION OF AMERICA) today, and enjoy all the benefits of being a full-time GNAA member.
GNAA (GAY NIGGER ASSOCIATION OF AMERICA) is the fastest-growing GAY NIGGER community with THOUSANDS of members all over United States of America. You, too, can be a part of GNAA if you join today!
Why not? It's quick and easy - only 3 simple steps!First, you have to obtain a copy of GAY NIGGERS FROM OUTER SPACE THE MOVIE and watch it.
Second, you need to succeed in posting a GNAA "first post" on slashdot.org, a popular "news for trolls" website
Third, you need to join the official GNAA irc channel #GNAA on EFNet, and apply for membership.
Talk to one of the ops or any of the other members in the channel to sign up today!
If you are having trouble locating #GNAA, the official GAY NIGGER ASSOCIATION OF AMERICA irc channel, you might be on a wrong irc network. The correct network is EFNet, and you can connect to irc.secsup.org or irc.isprime.com as one of the EFNet servers.
If you do not have an IRC client handy, you are free to use the GNAA Java IRC client by clicking here.
About Lunix
Lunix is an operating system. An operating system is the basic set of programs and utilities that make your computer run. Some other common operating systems are Unix (and its variants BSD, AIX, Solaris, HPUX, and o -
Re:Question
Because when you have only one or two choices, you might find yourself with one of the two choices stabbing their loyal end-users in the back (I have a friend named Fedora who swears it'd never happen however
...).
When you have 150.000 choices, 149.995 of them may suck, and most of them may disappear eventually due to the process of survival of the fittest, but at least you can fall back on something. Less choice isn't good. -
It's both...
The Ark of the Covenant contained, among other items, an original of the Covenant text. Thus, Darl can separate and list the items seperately and say he owns both; if he so desires. May he then be struck by lightning or at least contract pestilent, rotting sores as a result?
Nah, just let him be sat upon by an 800-kilo gorilla and pecked to death by a covey of penguins instead. -
Re:new to linux again [a slightly offtopic questio
Fedora Core 1 is quite nice and straightforward.
-
BSD patents hot babes!
How can people say BSD is dying when it has a mascot like this?! Linux needs to get its act together if it's going to compete with the kind of hot chicks and gorgeous babes that BSD has to offer!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Re:The replacement is already here
I get more done becuase of my chutzpah and sometimes, I admit, arrogance. You gotta get attention for ideas to get them done.
This is the same mantra that RMS cries, correcting people to say "GNU/Linux" gets attention and possibley gets people who will help. It misses the point that everytime you do it that way you alienate people too.
We can get Oracle on board. It might take some time, but we can get their customers to bring them there.
Oracle is one of the more important ISVs, but there are more than a few ISVs certified for RHEL. And just saying "user demand" will solve all your problems is provabley not true
... where's the debian or gentoo certification. I know United Linux had hell to get certification from Oracle, and they had something that looks like a std. RHEL box that people are the corporate users are used to. -
Debian
Debian needs to merge with a project that can keep its distro up to date. Oh wait why bother. Just use Fedora. -
Re:the real contest
I went to this page. And correct me if I'm wrong, but you have to pay?
:)
See: http://www.cpan.org/ports/#win32
However! If you don't know Perl, perhaps I can point you in the direction of Python instead? It is far superior, being both easier for the beginner and more powerful for the advanced programmer. There are some excellent tutorials... -
Re:RedHat = = Sell OutRedHat is no longer an Open Source company in the sense that most people here mean?
How is that? Is it because they open source all of their configuration tools? Is it because they employ high profile gnome, gcc, and kernel developers? Is it because they refuse to ship software which is encumbered by patent issues and therfor not distributable under the GPL? You do realise that you can download the source for Red Hat Enterprise Linux and compile it all by yourself, right?
In time, RedHat will enter into a contract with SCO, and go on their merry way.
Right. They won't ship an audio file player with an MP3 codec, but they'll reach a a licensing agreement with SCO over baseless claims of copyright.
I've probably been trolled, but whatever.
-
What's better than exploding edibles?
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Taking a page from Groklaw...Here's a little actual research. A very little. The line
"Red Hat has agressively lobbied Congress to eliminate software patents and copyrights. (see http://www.redhat.com/legal/patent_policy.html)."
is demonstrably a lie. If you follow the link Darl provides, you find no mention of copyright (ok, except the copyright notice at the bottom of the page =p).
But! In the interest of fairness I hit Google to see if I could find any statement from RH that'd support Darl's quote. I found nothing, but maybe you can turn something up? If not, it's a pretty good weakness to point out... -
Red Hat Cert
Comming soon? I am taking Red Hat Cert classes right now in NC. See Red Hat Academy
-
SuSE would do better swapping the lizard for...
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Re:indemnity?
There's nothing either inaccurate or misleading about it. RedHat's entire business model is built on repacking other peoples work. If they want to be taken as a serious software company they'll have to do more than make small (relatively speaking) contributions.
I suppose it all depends on your perspective. Sure - RedHat packages the work of others. Welcome to the world of Open Source. Heck - its not like the concept is foriegn to proprietary software either. The IT industry is full of examples of companies making profit off of other's work. Around here, there seems to be a certain glee taken when Microsoft is discovered to be using BSD or GPL code (even when they're fully complying with the license in question).
I guess it comes down to perception. Just how much of a contribution does RedHat make? I'm under the impression that they give pretty heavily to the Open Source community. RedHat's own listing includes quite a few projects - though no indication as to exactly how much input they've had. One can also find occasional mention of RedHat's development involvement elsewhere (albiet this is also from a RedHat source, if an informal one). I have no idea what the current status of RedHat involvement in these projects are. Feel free to provide an update / information. But at this point, my own perception leans towards RedHat being a contributer as well as consumer of Open Source code.
Why bother? People went to distributions so that they didn't have to build a system on their own.
Sure. And I bet if these contributions are important enough, they'll get adopted by the Linux comunity as a whole and show up in your normal Fedora (Debian, SuSE, etc.) packages. Heck. Even if they don't get picked up by the Linux community in general, if its important to RedHat users there will be someone who'll package them for Fedora.
Why not make the binary packages available? It's not as if it requires additional work. They're already doing it for themselves. Why not distribute those binaries to mirror sites? Simple: RedHat is now a corporation and the need to generate profits goes against the OpenSource ideal.
I agree with you in part. It is a bit odd that RedHat is playing at this. And it seems a bit silly considering the ability for the RedHat / Fedora community to simply pick up the code and package it. But hey - its their business.
One point to stress - RedHat's new business model is really about highlighting their service. They want to make it very plain what piece one is getting when one installs Fedora or RedHat Enterprise. Fedora is the bleeding edge, experimental, community, hack distribution. RedHat Enterprise is the nice, safe, slow target for Enterprise software developers and their customers. Chock full of certified compatability, full-service binaries, support options / infrastructure, and all the other warm-fuzzy tidbits an Enterprise customer likes to buy.
Does this go against the Open Source ideal? Not at all. It's a change (one that I'm not too fond of myself). But it falls in line with their licensing. And RedHat still contributes - albeit in a different manner. After all, nobody said that you weren't allowed to make a buck. Even the FSF. -
Just as long as nobody abuses Ceren...
How can people say BSD is dying when it has a mascot like this?! Linux needs to get its act together if it's going to compete with the kind of hot chicks and gorgeous babes that BSD has to offer!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Worth a million bucks...
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Re:what is Fedora?
Fedora is a freely distributed Linux distro. sponsored by Redhat but not supported by Redhat.
ie. if you want support for a distro you get from Redhat you buy one of the new Redhat branded products for about a gazillion dollars, otherwise download the free Fedora ISOs or use a different distro.
More info here. -
Re:Next step - better appsFirebird on my system is faster (and renders better) than Konq. No, it doesn't have a filemanager, but why would you want a filemanager in your browser?
Abiword has always been the best stand-alone Linux wordprocessor. Sure, OO.o Writer is slightly more featureful, but Abiword is lightning-quick, and does almost anything I'd want it to do (aside from writing major treatises, but you'd use Latex for that anyway).
As for OpenOffice, Ximian has already done some GNOMEification, and more is on the way. KDEification is also happening.
GAIM's ugliness is subjective. I think it's both better-looking and more featureful than Kopete. Your milage may vary.
-
BSD has security *and* babes!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Linux sucks! Use BSD!
How can people say BSD is dying when it has a mascot like this?! Linux needs to get its act together if it's going to compete with the kind of hot chicks and gorgeous babes that BSD has to offer!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Who needs perl when we could have...
How can people say BSD is dying when it has a mascot like this?! Linux needs to get its act together if it's going to compete with the kind of hot chicks and gorgeous babes that BSD has to offer!
You just can't take Linux seriously when its fronted by losers like these. Would you buy software from them? I don't think so! You Linux groupies need to find some sexy girls like her! I mean just look at this girl! Doesn't she excite you? I know this little hottie puts me in need of a cold shower! This guy looks like he is about to cream his pants standing next to such a fox. As you can see, no man can resist this sexy little minx. I mean are you telling me you wouldn't like to get your hands on this ass?!
With sexy chicks like the lovely Ceren you could have people queuing up to buy open source products. Could you really refuse to buy a copy of BSD if she told you to? Come on, you must admit she is better than an overweight penguin or a gay looking goat! Don't you wish you could get one of these? Personally I know I would give my right arm to get this close to such a divine beauty!
Join the campaign for more cute open source babes today! -
Re:Seeing it in another perspective
I agree that Microsoft has gotten better in the past couple of years, but after a bit of research you're arguments don't support your thesis.
Look at the issues that you mention:
The "one"Microsoft's patch You mentioned was actually three Windows fixes (and one Office fix) bundled together
"The updates fix at least eight security issues," one of which "could allow an attacker to gain control of a person's PC via the Internet"
The three linux patches and the bugfix (which mostly just optimized some things and fixed a memory leak):
The first issue was a local priviledge escalation issue. Local meaning you already have to have access to the box. Although local priviledge escalation exploits can be used with other techniques to gain control PCs, they're nothing compared what microsoft was patching.
The second issue was with lftp. Uh....lftp is an ftp client so I at least wouldn't really count it as part of a server patch..but...This vulnerability does allow a remote site to execute arbitrary code on the local machine (it didn't say as what user, but probably as the current user).
The third issue (was actually to minor issues) were with apache. These fixed a vulnerability that would allow a user to execute arbitrary code as the user apache if they have the ability to edit the apache configuration files. The other issue was a vulnerability in a module with a non-default setup that "can result in CGI script output being sent to the wrong client".
I'm not going to say which is better, but at least be honest with your arguments. Only zealots feel the need to hide facts in order to convince others of the truth. -
Re:Seeing it in another perspective
I agree that Microsoft has gotten better in the past couple of years, but after a bit of research you're arguments don't support your thesis.
Look at the issues that you mention:
The "one"Microsoft's patch You mentioned was actually three Windows fixes (and one Office fix) bundled together
"The updates fix at least eight security issues," one of which "could allow an attacker to gain control of a person's PC via the Internet"
The three linux patches and the bugfix (which mostly just optimized some things and fixed a memory leak):
The first issue was a local priviledge escalation issue. Local meaning you already have to have access to the box. Although local priviledge escalation exploits can be used with other techniques to gain control PCs, they're nothing compared what microsoft was patching.
The second issue was with lftp. Uh....lftp is an ftp client so I at least wouldn't really count it as part of a server patch..but...This vulnerability does allow a remote site to execute arbitrary code on the local machine (it didn't say as what user, but probably as the current user).
The third issue (was actually to minor issues) were with apache. These fixed a vulnerability that would allow a user to execute arbitrary code as the user apache if they have the ability to edit the apache configuration files. The other issue was a vulnerability in a module with a non-default setup that "can result in CGI script output being sent to the wrong client".
I'm not going to say which is better, but at least be honest with your arguments. Only zealots feel the need to hide facts in order to convince others of the truth. -
Re:Seeing it in another perspective
I agree that Microsoft has gotten better in the past couple of years, but after a bit of research you're arguments don't support your thesis.
Look at the issues that you mention:
The "one"Microsoft's patch You mentioned was actually three Windows fixes (and one Office fix) bundled together
"The updates fix at least eight security issues," one of which "could allow an attacker to gain control of a person's PC via the Internet"
The three linux patches and the bugfix (which mostly just optimized some things and fixed a memory leak):
The first issue was a local priviledge escalation issue. Local meaning you already have to have access to the box. Although local priviledge escalation exploits can be used with other techniques to gain control PCs, they're nothing compared what microsoft was patching.
The second issue was with lftp. Uh....lftp is an ftp client so I at least wouldn't really count it as part of a server patch..but...This vulnerability does allow a remote site to execute arbitrary code on the local machine (it didn't say as what user, but probably as the current user).
The third issue (was actually to minor issues) were with apache. These fixed a vulnerability that would allow a user to execute arbitrary code as the user apache if they have the ability to edit the apache configuration files. The other issue was a vulnerability in a module with a non-default setup that "can result in CGI script output being sent to the wrong client".
I'm not going to say which is better, but at least be honest with your arguments. Only zealots feel the need to hide facts in order to convince others of the truth.