Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Fedora (Score 1) 236

Uhhhh...dude? Did you not bother reading the multiple times the guy said he was on a secure INTRANET and therefor you could yum all damned day long and it ain't gonna do squat because there is NO Internet on the secure side?

Uhhh...dude. I run yum on my intranet. My yum repository is on my intranet.....The machines arn't pulling updates straight off the internet. Do you even understand what's going on here?

Idle

Neanderthals "Had Sex" With Modern Man 536

According to Professor Svante Paabo, director of genetics at the Max Planck Institute for Evolutionary Anthropology, Neanderthals and modern humans had sex across the species barrier. The professor has been using DNA retrieved from fossils to piece together the entire Neanderthal genome, and plans on publishing his findings soon. He recently told a conference that he was sure the two species had had sex, but still had questions as to how "productive" the relations had been. "What I'm really interested in is, did we have children back then and did those children contribute to our variation today?" he said. "I'm sure that they had sex, but did it give offspring that contributed to us? We will be able to answer quite rigorously with the new [Neanderthal genome] sequence." What remains a mystery is what Paleolithic brewery provided the catalyst for these stone age hook-ups.

Comment Re:Fedora (Score 2, Informative) 236

yum is very simple and there is a man/info page on it.

Installing a lamp stack is easy, and future yum updates will patch the entire stack. That being said, I'm assuming you're running an exernally facing lamp stack. What's your patch story? How are you getting your security fixes?

In my specific deployment, I drop packages on an http server, and I have yum clients running on a few hundred systems (I find these packages with a simple mirroring command rsync -avz rsync://mirrors.kernel.org/fedora/......). After I test the updates, I put them in a repository that all the systems know about. All of these systems poll my repository for updates every 2 hours, and autoinstall/patch.

As a standalone dev box, I'd assume you'd be running a gui, and fedora will automatically show you popup notifications to update, as a massive deployment, you can do something like I do (or pay for an up2date subscription, if you choose that route...).

I believe that the only problem you have is a refusal to any research/browsing whatsoever, and you are blaming your misunderstandings on the operating system.

Comment Re:Measurement from the NVIDIA site? (Score 4, Informative) 317

"Most" users use intel integrated graphics (probably especially the ones that don't actually care about graphics)....

Most people I know (I'm not going to talk about "Most people") end up downloading the drivers directly from the nVidia site when they are using windows.

When I'm on linux I never download the drivers from the nvidia site, I use rpm fusion (for fedora).

I would say that most linux users probably do this for one important reason: A part of the nvidia driver has to be compiled to the specific kernel version that you are running (uname -r), if you update your system, and you don't compile a new copy of the driver, you will lose all accelerated graphics support....It's a pain.

If you use a package repository, your kernel will be held at the supported version for the nvidia driver, until the nvidia driver gets recompiled against your kernel. The people over at rpmfusion are pretty fast about doing this, so, you end up getting your kenel updates delayed by a few hours, in the same day.

Comment Re:This is the Sound of (Score 3, Interesting) 815

Right before all the distributions started switching to PulseAudio, I remember thinking about how alsa was becoming stable (and "the" audio standard), and I wasn't seeing anyone with sound issues anymore.

Granted, alsa alone isn't as versatile as pulseaudio, but there is value in sticking to a 'pretty good' solution, even if it might not be the best.

An interesting side note on audio APIs: http://blogs.adobe.com/penguin.swf/linuxaudio.png
Media

Warez Moving From BitTorrent to Conventional Hosting Services 366

ericatcw writes "Driven by increased crackdowns on BitTorrent sites such as The Pirate Bay, software pirates are fast moving their warez to file-hosting Web sites like RapidShare, reports Computerworld. According to anti-piracy vendor V.I. Labs, 100% of the warez in its survey were available on RapidShare, which, according to Alexa, is already one of the 20 largest sites in the world. V.I. Labs' CEO predicts file-hosting sites such as RapidShare will supplant BitTorrent, as the former appear better protected legally."

Comment Re:Outward facing systems ... (Score 1) 391

http://www.pettingers.org/code/sshblack.html

or, what I use in my workplace (execute via an init script/or add to /etc/rc.d/rc.local):

# create new chain "SSHRULES"
# if packet is NEW, coming in on eth0, on port 22 apply rules in "SSHRULES"
#
# SSHRULES:
# if is on our subnet, accept the connection, stop reading the chain
# record a connection attempt
# if has more than 2 connection attempts in the last 7 seconds, reject

iptables -N SSHRULES

#insert at the top of the "INPUT" chain
iptables -I INPUT 1 -p tcp -i eth0 -m state --state NEW --dport 22 -j SSHRULES

iptables -A SSHRULES -m iprange --src-range 129.65.0.0-129.65.255.255 -j ACCEPT
iptables -A SSHRULES -m recent --update --hitcount 2 --seconds 7 -j REJECT
iptables -A SSHRULES -m recent --set -j ACCEPT

Comment Re:Ok, so I got the popcorn ready.... (Score 1) 254

I've seen stuff like this a bunch of times, and I've collected the data/tools that I have found on our infected systems, in my university department. For us, it seems like the main angle of attack is ssh, where our servers get hammered several times per second. Often, when we give students root access to some of these systems, they tend to make users like test/test, and in a matter of days, the computers are scanning large subnets looking for other systems to compromise. There is nothing new or first about these attacks.
Government

Feds May Soon Be Allowed To Use Cookies 181

fast66 writes "The White House may lift its policy barring federal Web sites from tracking users' online behavior. In place since 2000, the cookie policy issued by the Office of Management and Budget was intended to protect citizen privacy but has sparked criticism — even from White House officials — for hampering citizen outreach. On Friday, Bev Godwin, the director of online resources and interagency development at the White House's new media office, blogged on the White House Web site, 'We want to use cookies for good, not evil' — and invited the public to comment on cookies through various online channels, including the Office of Science and Technology Policy blog."

Comment Re:I/O is random? What have you been smoking? (Score 1) 171

So you could put thirty three hard drives in RAID 0 and have the same number of IOPS, and your latency would still be worse.

Actually, thats incorrects, Here's why:

When you calculate IOPS, a good portion small of reads and writes get executed at random places on the disks. When you you make one filesystem write on a raid0 set (depending on how smart the raid0 controller is), it will be locking up several or ALL the disk spindles for that individual read/write.

The IOPS are negligibly better on a 33 disk raid0 set, and depending on your disk controller, it might be worse (every write equates to 33 dma requests).

It is faster for reading large files though, but that is NOT what a fair IOPS test measures.

For read operations, you can double your read IOPS by using a mirror. This is because ony semi decent controller will split all the read requests between the drives in the mirror. When your issuing lots of read requests from several threads, the load should be approximately equal across the drives.

Slashdot Top Deals

<<<<< EVACUATION ROUTE <<<<<

Working...