Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:it's dead, Jim (Score 2) 133

FreeBSD is very well documented (The manual is awesome) and it has a great community. There are a lot of good discussions on the mailing list, and it doesn't require you to be a kernel hacker to participate. I use both Linux and FreeBSD, they both have their strength and weaknesses. I slightly prefer FreeBSD, as I feel its easier to turn it inside out(for hacking).

Btw. Poul-Henning Kamp tweeted this a few days ago.
Between FreeBSD, Varnish and Ngnix, at least 2 out of 3 packets on the net are delivered by #BSD licensed open source software. #EatThatRMS

So I would say, FreeBSD is a lot more interesting today, than 10 years ago.

Comment Re:still with the java? (Score 2) 211

In Scandinavia we have to use a java applet called BankID for login to our bank account. This has for the past few months become REALLY frustrating for people who really don't know what Java is. Even technicians who has a basic understanding of what a computer is, has problems keeping Java up to date(they don't know where to download it, and therefore accidentally download something they shouldn't) and all the them are infected with that Oracle search toolbar malware.

Comment Depends... (Score 1) 776

If you are testing if the person can program or not, then it's fine. But if you're looking for only the cream of super software developers, then something minor as the persons emotional state for the day can make a huge impact on the result.

For me personally, I think understanding the actual question is the most difficult part. Some people find bizarre mathematical puzzles fun. I prefer puzzles from the real world, like for example how to get two systems to talk together.

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.

Slashdot Top Deals

Software production is assumed to be a line function, but it is run like a staff function. -- Paul Licker

Working...