Project PDA

I'm currently working on a project called 'PDA'. PDA stands for "Personal Digital Assistant". I used several PDAs over the last two decades, from Sharp, Psion, Palm and others. But they all were just Personal Datastorages. I always missed the "Assistant" part from PDA.

Start and Stop the Apple File Server from Command Line

You can use /sbin/service to start or stop the "Personal File Sharing".

IPS Repository Appliance

Brian Leonard wrote a good guide how to setup a Local Repository Mirror.

If you are in a hurry, it's good to know that you don't need to copy the entire repository of about 8GB to a local disk. You can use the repository image directly. Here is how you can do that.

Upgrade Solaris 11/OpenSolaris from Text to Graphical

If you installed your system using the text installer, the system will only be installed with a text interface. Here is how to upgrade to a graphical system.

MySQL: Change Password

  • Replace {passwd} with the password of the user.
  • Replace {user} with the name of the user.

Change Password

GRANT USAGE ON * . * 
TO '{user}'@'%' 
IDENTIFIED BY '{passwd}' ;

DynDNS Updates without a Client

My new hosting provide Strato offers DynDNS. I was searching for a DynDNS client for my OpenSolaris Home Server, but a small bash script does the job as good as any other client.

How To Create a Moveable VM with VirtualBox

VirtualBox works good when you use the same VMs all the time. It organizes the disk images in one directory and the configuration files in another. It kees a record of all known disk images and virtual machines.

If you try to carry a VM around with you on an USB stick or want to put it on an encrypted image, then you will get trouble.

Make your Mac feel at Home

A small snippet from one of my scripts which tests whether your Mac is in the given (home) WLAN.

Tags:

Set PHP Variables in .htaccess Files

If your PHP scripts run longer than the maximum execution time set by your webhoster, then you will see a message like this:

Fatal error: Maximum execution time of 30 seconds exceeded in ...

To override the default for your webspace, you can use the php_value directive in a .htaccess file.

Memory Usage of a Solaris Container (Zone)

Last week one of my servers ran out of RAM and Swap. Shame on me for not monitoring that, but it's now.

As the server is running several zones, my first question was: Which zone is eating up my RAM? So, here are the commands I used.

Syndicate content