Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Submission + - Simple versioning share drive for Windows? 1

maiden_taiwan writes: My company's documents are stored on a big Windows share drive. We'd like to install a simple versioning system to track document history and roll back to previous versions when needed. Unfortunately, our needs are too simple for the marketplace, which pushes Documentum, SharePoint, and other massive, expensive systems that want to "be in charge" and change everybody's work habits. All we want is a simple Windows share drive (CIFS, not WebDAV, which rules out Subversion with autoversioning) that automatically versions documents when saved or on request, scales internationally to thousands of users, and doesn't cost half a million dollars. Is there really nothing out there for Windows? What does your company use?

Comment Re:squeezebox family (Score 1) 438

Squeezeboxes are AMAZING. I have 7 of them in my home, and with a few button-presses, they can all be synchronized for whole-house audio. Also the server is open-source (Perl) and you can create your own plug-ins. I'm using plug-ins for faster search, logging of all tracks played, and creation of sync groups (so with one press, you can, say, set all your upstairs squeezeboxes to play one tune and all the downstairs ones another tune). Some squeezeboxes have built-in speakers (the Boom) and others require a stereo system. I have never regretted buying them. For the ultimate in space-efficiency, you can connect a speakerless squeezebox (e.g., the Classic) to a tiny in-wall amplifier (www.wireless-experts.com) that fits into a lightswitch box, connected to wall-mounted speakers. All people see is the squeezebox, the speakers, and a volume knob on the wall. Nice.

Comment pipe into /bin/sh (Score 1) 2362

Two techniques I particularly remember for increasing my Linux effectiveness were:

1. find piped into xargs (or "find -print0" piped into "xargs -0" for safety) to process a directory tree in a single command

2. Printing commands on stdout and piping them into bash. For example, if you want to rename a bunch of files, and you put the old names into file "oldnames" and the new names into "newnames", one per line, you can do the mass renaming with:

$ paste oldnames newnames | sed 's/^/mv /' | bash

generates a sequence of "mv" commands and executes them.

First time I saw each of these, it was so eye-opening.

Slashdot Top Deals

This restaurant was advertising breakfast any time. So I ordered french toast in the renaissance. - Steven Wright, comedian

Working...