Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:FreeBSD 9.1 Is Unix Heaven (Score 3, Informative) 149

There are many reasons!

Jails
ZFS
GEOM Framework
Ports
PF
Carp
Hast
The FreeBSD Handbook / Documentation with consistency

However FreeBSD doesn't excell for everything, for example Java support is far away from production ready. And another thing I ran into recently was that monitoring a lot of files for changes was slow/not scalable at all because kqueue uses file descriptors for monitoring changes in your filesystem. Linux, OS X or even Windows have scalable and working solutions for this.

Comment Re:my experience with dragonfly 3.0 (Score 1) 85

Hammer can do deduplication with minimal memory requirements. For example only 512MB ram would still give a responsive and fast system. Hammer deduplication doesn't take a hard hit on performance like ZFS does, as ZFS dedup data in realtime while Hammer does it with a CRON job.

Comment Re:BTRFS experiences? (Score 2) 143

I'm not using BTRFS yet, however as send & receive in BTRFS is similar to the ZFS send & receive implementation you can do really cool things like superquick backup of a gigantic PostgreSQL Database.

The workflow is as following
Execute "pg_start_backup(‘snapshotting’,true)"
Snapshot the filesystem with PostgreSQL data
Execute "pg_stop_backup()"
Send the snapshot to your backup server

Comment Re:frist (Score 1) 249

So if I run PostgreSQL on Windows I can be sure VSS executes psql -c "select pg_start_backup(‘hourly’,true);" before creating the snapshot?

My FreeBSD PostgreSQL backup looks like this and runs hourly.

#!/bin/sh
prev=`date -v-1H '+%Y-%m-%d_%H'`
now=`date '+%Y-%m-%d_%H'`
psql -c "select pg_start_backup(‘hourly’,true);"
zfs snapshot tank/pgsql@$now
psql -c "select pg_stop_backup();"
zfs send -R -i tank/pgsql@$prev tank/pgsql@$now | ssh backup@hpbackup zfs receive -Fdu tank/backup/pgsql

You can do the similar thing with Linux as BTRFS now support send and receive.

Comment Re:fsck speed, want safety (Score 1) 196

I work with IPTV and VOD, we have 4 PB of data running on FreeBSD and ZFS which is being replicated off site with the send && receive features that comes with ZFS. Since we mostly deal with large media files we have even reversed the replication direction. That means that if master storage needs to go down for maintenance, the other offsite storage becomes the master. At the moment we're looking into using HAST which will make it even easier to switch what storage site that should be the master.

Comment What I wish for next generation consoles. (Score 1) 502

Backwards compatibility. Heck I still play c64 games! Old games are still fun!
No internal optical disc drive. Make it optional by offering an external device.
Noise > performance. I don't want to hear that box.
Todays Xbox 360 controller is fine, I do not want to buy a new controller just because it comes with an extra button.

Comment The biggest threat to your data is yourself. (Score 1) 332

I run my own cloud network storage business. Everything is encrypted on the client side, there is no cheating(ala bitcasa which says they manage to deduplicate encrypted data). Sure you can upload raw data that you for example want to share, but one should know that someone else then have the possibility to read and abuse the data.

So I would say the data is safe in our cloud. Sure we have access to see how much disk space you're using, but thats pretty much it.

Firefox

HTTPS Everywhere Gets Firesheep Protection 77

coondoggie writes "The Electronic Frontier Foundation today said it rolled out a version of HTTPS Everywhere that offers protection against 'Firesheep' and other tools that seek to exploit webpage security flaws. Hitting the streets in October, Firesheep caused a storm of controversy over its tactics, ethics and Web security in general. Firesheep sniffs unencrypted cookies sent across open WiFi networks for unsuspecting visitors to Web sites such as Facebook and Twitter, and lets the user take on those visitors' log-in credentials."
First Person Shooters (Games)

RAGE On iOS Shows Promise 102

Vigile writes "RAGE from id Software for iOS devices is finally available and has been tested over at PC Perspective. The game obviously looks impressive with a nearly 750MB download (and about double that when uncompressed) and not much else can rival it on the platform. The game itself is a rail-based shooter, making the touchscreen interface more intuitive and less cumbersome but it does take away some of the feeling of control in the game. Video of the game running is also included in the short review."
Software

Opera 11 Beta Released, With Extensions Support 142

An anonymous reader writes "Opera 11 Beta has just been released and now includes support for extensions. Also new in this release Tab Stacking, Visual Mouse Gestures, performance improvements, new installer, and much more. Even with its many new features, Opera 11 is 30% smaller than Opera 10.60. That means that Opera downloads more quickly and installs in fewer steps. There are over 130 extensions and climbing including NoScript and AdBlock! Extensions can be found here."

Slashdot Top Deals

No man is an island if he's on at least one mailing list.

Working...