Search posterous

Search all posts and users. Type a name, type a favorite song title, whatever! See what comes up.
  

More posterous blogs











More recommended blogs »

Here are posterous posts filed under server...

unugurn says...

WinAgents TFTP Server 4.1.0.516: WinAgents TFTP Server is a secure scalable TFTP server for Windows. http://bit.ly/6cQcnu

Filed under: server

jakeoneil says...

1st time I've ever seen one in person... It's everything I had dreamed...

Sent from my iPhone

Filed under: server

lovelycharts says...

CISCO Network icons, converted to Lovely Charts by Jerome.

Click here to download:
CISCO%20Symbols.lcl (59 KB)

Filed under: server

lovelycharts says...

Lovely network icons

Click here to download:
Network Symbols.lcl (104 KB)

Filed under: server

Markus Merz says...

Being quoted is always nice.

http://wordpress.org/extend/plugins/web-optimizer/screenshots/

"Web Optimizer is the swiss army knife to boost your CMS performance in one place. Don't be fooled by the easy user interface! It is possible to run Web Optimizer as a shoot & forget solution but this is not recommended."

Yep, the premium package is worth the money.

For a standard WordPress site it must be like a 30% server turbo for free. And the premium package offers much more serious performance options.

More info here: Web Optimizer

Filed under: server

matrax says...

45 seconds to OSX Server tryout. On virtual machine of course :) Hmm.. is it legal?

Filed under: Server

travistubbs says...

It's still Friday for about another hour, meaning this post counts! Needless to say, I still have plenty of stuff to give away! If you've missed out on any of my other posts on what's for sale, you can now do that with ease! Just head on over to http://travistubbs.net/tag/2009fallgaragesale. If it doesn't say it's gone, it's still available! So, check out that, along with today's offerings!

IMG_0220.JPG
Product: HP LaserJet 1018 black and white laser printer
Asking Price: $55.00

There's really not much to say about this. It's a laser printer. It prints in black and white. It's not exactly speedy, but does what it does. Still good for those that print out a lot of documents. Just don't expect the speed of a copier. Definitely faster than an inkjet printer, though (once it gets going). According to the box, the printer can print up to 12 pages per minute at 600 dpi.

One thing I want to stress about this printer: out of the box, the HP LaserJet 1018 is NOT compatible with Mac OS X and Linux-based operating systems. This is a Windows-only printer. That being said, there is a small possibility to get this printer working in those incompatible OSes, but it requires a LOT of work and is still NOT guaranteed to work. You've been warned.

More information can be found on HP's web site:
http://www.hp.com/hpinfo/newsroom/press_kits/2006/ipgconf/ds_lj1018.pdf?jumpid=reg_R1002_USEN [PDF]
http://h10010.www1.hp.com/wwpc/us/en/sm/WF10a/18972-18972-3328059-14638-3328066-1814092.html?jumpid=reg_R1002_USEN

Original Purchase Price/Date: $85.49 / 2007 Jun 04

IMG_0203.JPG
Product: HP 2101nw Wireless G USB Print Server
Asking Price: $35.00

Let me start out by saying the name of the product is a lie. Let me explain. Although this is a wireless print server, it's not a TRUE networked printer device.

To use the printer wirelessly, each computer must install the Wireless G USB Print Server software (available for Windows XP and Vista, and Mac OS X 10.4 and 10.5 at http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?product=3662206&lc=en&cc=us&dlc=en&submit.y=0&submit.x=0&lang=en&cc=us). Before you can print, you must tell the software you want to connect to the print server (though the Notification Tray or Dock icon). Your computer will take a couple moments to recognize the printer, at which point you'll be connected and then can print.

Only one person can be connected to the print server at a time, thus if anyone else is connect, they will be disconnected if someone else connects. With this understand, the device is really more of a wireless USB port and not a print server (although compatible HP printers are the only thing that can be connected to this). For a list of compatible printers, head over to http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01428401&tmp_task=prodinfoCategory&lc=en&dlc=en&cc=us&lang=en&product=3662206.

Outside of it's true functionality, it does work as it should. A printer doesn't have to be connected directly to your computer anymore and can be placed anywhere within range of your wireless router/access point. This is definitely useful for those with space issues.

Check out HP's web site for additional information:

Original Purchase Price/Date: $49.99 / 2008 Dec 29

(NOTE: Original Purchases Prices on all items shown before shipping and tax. Items, if bought together, will have to be shipped separately due to their large size.)

More Photos (if available, more upon request)

Filed under: server

unugurn says...

Core FTP Mini SFTP Server 1.17: free secure mini SFTP server using SSH, move files between computers http://bit.ly/2vtqId

Filed under: server

fotis says...

So useful!

Filed under: Server

fotis says...

Subversion server (svnserve) on Mac OS X

Monday, 4th August 2008 - 3:14am (AEST)
Permalink#Comments(13) • Categories: Apple computing, Programming/development

There's an absence of information on how to get a Subversion server running on Mac OS X, and what information there is on the web gives the impression that it's difficult. It's not.

I used to run an application called Mac SVN Server - MAS, a standalone app with Apache and a Subversion server all built in, by Uli Kusterer. You just run it and you have an instant web based svn server. But it's all packaged up, meaning it's not that easy to upgrade to new versions of svn, and is pretty heavy weight considering it's an entire Apache 2 web server.

Instead, contrary to what most web sites seem to say, you can just run svnserve, the Subversion custom server component with Mac OS X. Here's how I did it:

  1. Download the Subversion package from Martin Ott's .mac page and install it on the Mac running 10.5 (Leopard) or later, that you're going to use as your Subversion server. This includes the svn client and the server. It's a standard Mac package installer, so just run it and you're done. All the binaries will end up in /usr/local/bin.
  2. Create a directory for your repository. Use mkdir /Users/defaultuser/svn, or if you need to, use sudo mkdir /Users/defaultuser/svn, where defaultuser is the user which the OS X boots into by default.
  3. Create your repository. Use sudo svnadmin create /Users/defaultuser/svn. Check the directory to make sure it has correct ownership for defaultuser, and if not do a sudo chown -R /Users/defaultuser/svn to set it correctly.
  4. If you have a repository from another Subversion server then you can simply copy it over the top of the new directory, and it will work fine, so long as the repository version is supported. For Subversion 1.5, it will also support a 1.4 repository. I copied my old 1.4 repository from MAS, and it's worked perfectly. You may need to do another chown to make sure the ownership is correct.

The server is now installed. To run it, simply log in as the default user and run the server with svnserve -d -r /Users/deafultuser/svn. You can now access it from any client (1.4 is built into Mac OS X 10.5 so no need to install the client anywhere) by doing a standard svn check out: svn co svn://ipaddress-of-svnmac/repositorypath

But instead of running it manually, we can run it automatically when the server Mac starts up by using launchd. You can read up on Getting Started with launchd, but basically it's the new startup process in Mac OS X 10.4 (Tiger). So, to start svnserve automatically, create the file /Library/LaunchDaemons/org.tigris.subversion.svnserve.plist, and put the following in it:

    
        Disabled
        
        Label
        org.tigris.subversion.svnserve
        UserName
        defaultuser
        ProgramArguments
        
            /usr/local/bin/svnserve
            --inetd
            --root=/Users/defaultuser/svn
        
        ServiceDescription
        Subversion Standalone Server
        Sockets
        
            Listeners
            
                
                    SockFamily
                    IPv4
                    SockServiceName
                    svn
                    SockType
                    stream
                
                
                    SockFamily
                    IPv6
                    SockServiceName
                    svn
                    SockType
                    stream
                
            
        
        inetdCompatibility
        
            Wait
            
        
    

This automatically starts the server when it boots. It also switches it from a standalone daemon to running under inetd, but it makes no real difference. There are a lot of different versions of this plist out there, but this is the only one I got to work. Unfortunately I can't remember the site I borrowed it from. Email me if it's you.

You're done.

Note that the UserName property defines the user to runs svnserve as, but launchd only allows this property when it is running as root. There are two launchds on the system, one running as root (process 1), and one running as each user. The one running as root loads its plists from /Library/LaunchDaemons.

If you found this blog post useful, then please consider sending me a couple of bucks PayPal donation to help cover my hosting expenses.

Filed under: Server