Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Sparc (Score 1) 235

Even if Intel and HP completely deny it, their customers will be thinking it all along.

Customers aren't stupid. It's blatantly obvious what Oracle's motivation is, and everyone I've talked to in the industry knows it. It's a direct shot at HP, aimed at sinking HP-UX. HP-UX + Oracle on Itanium is a very popular platform in the high-end monolithic database market, and Oracle is salivating at the idea if trying to convert some of that to Solaris + Oracle on SPARC.

If Itanium is dying it's only because Oracle just killed it. They're hurting HP and pissing off their own customers by cutting off development for a platform that many companies invested in, not just in the past, but new generations of servers being developed and solid right now.

Well screw them. We'll just go with x86-64. They can't kill that platform without committing corporate suicide. Now if you'll excuse me I need to go order a Dell server and try to suppress the vomiting.

Comment Internet Don't Let Me Down (Score 5, Insightful) 705

Seriously, they're investigating the guy because the report was "too good"? Since when do you need a license to be smart? It's no wonder the US is losing ground in the tech and scientific sector.

I think the Internet needs to tell the people in charge exactly how ridiculous that is. Demand an apology at the very least, if not an investigation into the people who are making these accusations.

Here's a link to get you started:

http://www.ncdot.org/

Comment Re:Sen. Lieberman (DINOSAUR-CT) (Score 1) 269

Any Republicans who voted for him have no right to call themselves Republicans, IMO. Admittedly, my own party would probably label me as a heretic, but I don't mind (I'm registered as Republican)!

IMO, the Republican party lost its way about 20-30 years ago and has been slowly getting worse. It's no longer conservative in any way, and many of its members are now pushing religious fundamentalism under the guise of "family values", and totalitarianism masquerading as "security".

Whatever happens with the Democrats, I think it's time for a Conservative party to form and rise up out of the ashes.

Comment Re:So what? (Score 1) 528

I know that. However, it would be more efficient if the "working directory" could be dynamically updated when I (or a script) used the "cd" command.

I don't use a Mac regularly, so I don't know if its terminal handles the right escape codes, I'd be shocked if it didn't. Plain stock xterm has been doing this pretty much forever.

The sequence is ^[]0;string^G
(where ^[ is Escape and ^G is the bell character)
You can use that in your PS1 variable to automatically update the title every time you get a prompt. Or, depending on your shell, you can get fancy with it.

Here's some magic from my .zshrc file:


function title() {
        a=${(V)1//\%/\%\%}
        a=$(print -Pn "%40<...<$a" | tr -d "\n")
        case $TERM in
        screen)
                print -Pn "\e]0;$a @ $2\a"
                print -Pn "\ek$a\e\\" ;;
        xterm*|rxvt)
                print -Pn "\e]0;$a @ $2\a" ;;
        esac
}

case $TERM in
        screen|xterm*|rxvt)
                function precmd() {
                        title "zsh" "%m(%55<...<%~)"
                }

                function preexec() {
                        title "$1" "%m(%35<...<%~)"
                } ;;
esac

A little complicated, but it keeps my xterm title set to "command @ hostname(dir)". The %55() is just zsh magic to abbreviate where necessary.

If I'm in a screen session, it also updates the name of the screen window ("tab") to the command.

Here's an excerpt from my .screenrc that keeps things rolling when I change active windows inside of screen:


termcapinfo xterm* 'hs:ts=\E]0;:fs=\007:ds=\E]0;\007'
defhstatus "screen ^E (^Et) | $USER@^EH"

Comment Re:... and that sucks (Score 1) 206

If you have something using ZFS today, you can export the pool, install Nexenta, and reimport, being back up in minutes.

Maybe. (Open)Solaris is a bit pickier about wanting ZFS vdevs to be inside of GPT partitions. FreeBSD is layered on top of their GEOM subsystem, so it lets you put a ZFS vdev on just about anything. If it's inside of a bsdlabel partition, Solaris may not be able to find it to import the pool.

It may very well work. Just be sure to have a good backup just in case :)

Comment Re:To much reinvention (Score 1) 257

[quote]Of those you listed, the only one that does crc checksumming at every transition level is ZFS.. Store it on raidz2 and never suffer from bit-rot...[/quote]

Just remember to run zpool scrub every once in a while to correct any bit errors. It's theoretically possible for them to build up over time and render blocks unreadable if you don't periodically scan and correct.

Comment Re:Ellison (Score 3, Insightful) 251

Also, high end Oracle databases typically run on either Linux for distributed (cheap) clusters, or HP-UX/Solaris on high end hardware for big monolithic installations. Oracle already has their own Linux distribution that they push pretty hard, and once they buy Sun they'll own a major commercial UNIX player, too.

Oracle has traditionally been buddy buddy with HP, but since the announcement of the Sun deal, they've started giving them the cold shoulder. While I doubt they'd drop HP-UX support entirely (there would be outrage), I can certainly see them doing things to try to push people onto Solaris or Oracle Linux, on Sun hardware, and wrapping everything up as a neat package deal.

Comment Re:You could do this in COH too, actually (Score 1) 203

No, you can't. The WoW PTR is only active when there's a new patch that they're testing.

The City of Heroes test server by contrast is available all the time (except during closed betas, which isn't very often). Arena PvP traditionally takes places on the test server, because it's the easiest way for people on different servers to compete against each other since there's no cross-server PvP (yet).

Slashdot Top Deals

Arithmetic is being able to count up to twenty without taking off your shoes. -- Mickey Mouse

Working...