DAVE 8.1 Available

September 3rd, 2010

A new version of DAVE is now available. According to the latest release information from Thursby:

DAVE 8.1 is geared to professional use in design, publishing, production, colleges and businesses requiring enterprise Mac-Windows file/print integration with:

- Snow Leopard (OS X 10.6) and Leopard (OS X 10.5)

- Includes full Microsoft DFS support, not part of OS X

- Includes commercial grade network volume support for files/directories/home folders around Mac apps such as Adobe Creative Suite, Apple Final Cut Pro, Avid and Microsoft Office for Macs

- Native OS X/SMB *enterprise* network volume use can lead to loss of files and corruption since it is geared to home/small office work

More details: http://www.thursby.com/products/dave.html

iPhone Security Updates

August 13th, 2010

US-CERT has issued the following regarding the latest iOS patches:

Systems Affected

Feedback can be directed to US-CERT Technical Staff. Please send email to cert@cert.org with “SA10-224A Feedback VU#274718″ in the subject.

* Apple iOS for iPhone, iPad, and iPod touch devices

Overview

Apple has released iOS 4.0.2 Update and iOS 3.2.2 Update to correct multiple vulnerabilities affecting components of Apple iOS. Apple iOS is used by iPhone, iPad, and iPod touch devices. As a result of convincing a user to view a specially crafted web page, attackers could take control of your device, gain access to your sensitive information, or crash your device.

Solution

Install the updates on Mac OS X and then use iTunes to download and install updates.

Description

Apple iOS 4.0.2 Update and iOS 3.2.2 Update address two vulnerabilities affecting iOS, including a vulnerability detailed in US-CERT Vulnerability Note VU#275247.

References

* iOS 4.0.2 Update for iPhone and iPod touch - http://support.apple.com/kb/HT4291

* iOS 3.2.2 Update for iPad – http://support.apple.com/kb/HT4292

* Updating your iPhone, iPad, or iPod touch -
http://support.apple.com/kb/ht1414

* Vulnerability Note VU#275247 -
https://www.kb.cert.org/vuls/id/275247

Hiding a Restore Partition With jamf

August 9th, 2010

The jamf command that is placed inside the /usr/sbin directory has a number of things it does really well. Many of the tasks exposed in Casper Admin can be tapped into using shell scripts.

One nice option that the Casper Suite has for the mobile users in many an enterprise is the ability to restore a given machine to a known good working state. Casper addresses this using a concept known as a restore partition. The restore partition can be used to deploy a base set of packages to a client, or maybe just a functional operating system that hooks back into the JSS, or JAMF Software Server. Because you want the restore partition to be somewhat undefiled, you can hide it. Then, if a user needs to boot to the restore partition, they would simply boot the computer holding down the option key and select Restore (or whatever you have named it).

The /usr/sbin/jamf command can then be used to hide that restore partition using the hideRestore option. For example, assuming that the restore partition is named Restore, the following command will hide it:

/usr/sbin/jamf hideRestore

But, you might find that you want to deploy multiple hidden partitions. So let’s say that you had another for running disk tools. In our environment we could call it 318Tools. So to hide it as well, we would use the same command, but with the -name option followed by the name of the other partition we would like to hide, like so:

/usr/sbin/jamf hideRestore -name 318Tools

Overall, there are a number of uses other than simple patch management with the Casper Suite, and this is just one of the small things you can do with the jamf command, an integral part of the Suite.

MySQL Backup Options

July 8th, 2010

MySQL bills itself as the world’s most popular open source database. It turns up all over, including most installations of WordPress. Packages for multiple platforms make installation easy and online resources are plentiful. Web-based admin tools like phpMyAdmin are very popular and there are many stand-alone options for managing MySQL databases as well.

When it comes to back-up, though, are you prepared? Backup plug-ins for WordPress databases are fairly common, but what other techniques can be used? Scripting to the rescue!

On Unix-type systems, it’s easy to find one of the many example scripts online, customize them to your needs, then add the script to a nightly cron job (or launchd on Mac OS X systems). Most of these scripts use the mysqldump command to create a text file that contains the structure and data from your database. More advanced scripts can loop through multiple databases on the same server, compress the output and email you copies.

Here is an example we found online a long time ago and modified (thanks to the unknown author):


#!/bin/sh

# List all of the MySQL databases that you want to backup in here,
# each seperated by a space
databases="database1 database2 database3"

# Directory where you want the backup files to be placed
backupdir=/mydatabasebackups

# MySQL dump command, use the full path name here
mysqldumpcmd=/usr/local/mysql/bin/mysqldump

# MySQL Username and password
userpassword=" --user=myusername --password=mypassword"

# MySQL dump options
dumpoptions=" --quick --add-drop-table --add-locks --extended-insert --lock-tables"

# Unix Commands
gzip=/usr/bin/gzip
uuencode=/usr/bin/uuencode

# Create our backup directory if not already there
mkdir -p ${backupdir}
if [ ! -d ${backupdir} ]
then
echo "Not a directory: ${backupdir}"
exit 1
fi

# Dump all of our databases
echo "Dumping MySQL Databases"
for database in $databases
do
$mysqldumpcmd $userpassword $dumpoptions $database > ${backupdir}/${database}.sql
done

# Compress all of our backup files
echo "Compressing Dump Files"
for database in $databases
do
rm -f ${backupdir}/${database}.sql.gz
$gzip ${backupdir}/${database}.sql
done

# And we're done
ls -l ${backupdir}
echo "Dump Complete!"
exit

Once you verify that your backup script is giving you valid backup files, these should be added to your other backup routines, such as CrashPlan, Mozy, Retrospect, Time Machine, Backup Exec, PresSTORE, etc. It never hurts to have too many copies of your critical data files.

To make sure your organization is prepared, contact your 318 account manager today, or email sales@318.com for assistance.

ARCHIWARE PresSTORE 4 Released

June 30th, 2010

Last week, German software company ARCHIWARE released version 4.0 of its enterprise backup solution, PresSTORE. This version is for new installations only – version 4.1, planned for release in October, will support upgrades from existing 3.x deployments.

The new features of PresSTORE 4 can be found on the company’s website, but here are some highlights:

  • New interface to simplify management
  • iPhone app for remote monitoring of jobs
  • New desktop notification system to alert users of actions
  • Progressive backup – “backup without full backup”

Aaron Freimark also wrote a post about the new version on the Xsanity site that talks more about the Xsan-specific features.

As before, PresSTORE is supported on Mac OS X (10.4 and higher), Windows (2003, 2008, XP, Vista and 7), Linux and Solaris. Backup2Go Server is only supported on OS X and Solaris.

PresSTORE support is great – during testing of the new version, the iPhone monitoring app was crashing. Within a day, a new version was available in the App Store that addressed the exact issue. Bravo!

To learn more about PresSTORE (including pricing options), please contact your 318 account manager today, or email sales@318.com for more information.

iPhone iOS 4 Software Update

June 29th, 2010


The newest release of the iPhone operating system, the re-branded iOS 4, launched last week from Apple’s busy servers. According to Apple, iOS 4 works with iPhone 4, iPhone 3GS and iPhone 3G (but not all new features are supported on older hardware). The update will also install on second and third generation iPod Touch devices.

As with all major software upgrades, be sure to backup your current environment using iTunes before proceeding with the installation. This Apple knowledge base article describes the process in detail.

The upgrade process is also managed in iTunes and took a fair amount of time to complete on an iPhone 3GS. Reports of slowness and instability on older hardware were confirmed on one test 3G unit we tried, but others report no issues.

So what do you get after upgrading? Some key features:

  • Folders – works as advertised and helps reduce the number of pages you need to scroll through to find the app you need.
  • Mail Improvements – welcome options for combined inbox and threaded discussions.
  • Multitasking (3GS and 4 only) – double-click the home button to reveal a row of other running apps you can switch to right away. Might take some time to get used to this one.
  • Home screen wallpaper (3GS and 4 only) – purely cosmetic, but nice in day-to-day use.
  • iBooks app – just like the iPad version, only smaller. Bookmarks are supposed to sync between the two versions, but it doesn’t seem like one knows what the other actually holds as far as books go.
  • Camera – older hardware gets the digital zoom feature, but quality is, well, like a digital zoom.
  • Bluetooth keyboard support – haven’t tried this, but could be useful.

The new iPhone 4 hardware enhances some features of iOS, such as FaceTime video conferencing, improved camera performance, HD video support/editing and the high-quality retina display.

To find out more about how to utilize the iPhone platform in your organization, call your 318 account manager today, or email sales@318.com for more information.

WordPress 3.0 “Thelonious” Now Available

June 24th, 2010

As we wrote back in March, version 3.0 of WordPress was coming soon. Soon happened last week, as thousands of people starting downloading and upgrading (more than 1 million downloads the first week!).

Our first site upgrade went smoothly, although the automatic upgrading of certain plugins still fail and must be done manually. As always, it’s a good idea to make complete, tested backups of your site files and database dumps before starting the upgrade process.

WordPress 3.0 offers a lot of new online publishing options – call your 318 account manager today, or email sales@318.com for more information.

UPDATE: Our second site upgrade had to be reverted to version 2.9.2 temporarily due to an issue with the WP Events Calendar plugin. Since we had our site backups readily available, this was a quick and easy process.

In other WordPress community news, Automattic (the company behind WordPress.com) announced a beta program for VaultPress, an online, automated method of backing up and securing your WordPress-based website.

The beta plans start at $15/month and include protection for the entire WordPress environment, including the WordPress files (theme, plugins, options), content (posts, photos, videos, audio files), and all comments. Implementation is via Vaultpress plug-in.

Mobile Me Finds Your iPhone

June 18th, 2010

Today, Apple sent the following email, indicating that there is a new Find My iPhone app that provides a number of pretty cool features for Mobile Me users that have iPhones, iPads or iPod Touches:

You can now download the free Find My iPhone app, enabling you to locate a misplaced device directly from iPhone, iPad, or iPod touch while on the go. After installing it from the App Store, just launch the app and sign in to quickly locate your devices on a map and access the other Find My iPhone features — Display a Message or Play a Sound, Remote Lock, and Remote Wipe.*

The Find My iPhone web application on me.com has also been updated with a full-screen map view. Clicking your missing device on the map lets you access all the Find My iPhone actions to help you recover your device and protect the information on it.

Learn more about improvements to Find My iPhone here.

Retrospect by Roxio

May 21st, 2010

According to a press release currently making the rounds, the Retrospect product has now been sold to Sonic Solutions, the makers of Roxio. To quote the press release:

We are pleased to let you know that Sonic Solutions purchased the Retrospect backup and recovery software from EMC on May 18, 2010 and is responsible for all aspects of the Retrospect product line and business going forward.

Retrospect will be part of the Roxio Division of Sonic, a leader in digital media software. Adding to our broad range of products for content creation and management capabilities for businesses and individuals, Retrospect plays a critical role in expanding the Roxio business in the backup category. We understand that backup and recovery is critical to both your business and to your customers, and the Retrospect product line significantly enhances our ability to meet these needs.

CS5 Shipping

April 30th, 2010

Adobe CS5 is now shipping. To download a demo check out https://www.adobe.com/cfusion/tdrc/index.cfm?product=design_premium. Some new features include perspective drawing, width tool, shape builder, live view, browser lab, multiple page sizes, spanning, splitting and a new gap tool. Lots of new goodness here!

Whether you are installing it for 2 computers or 2,000, 318 can help with all aspects of your upgrade. Contact your account manager today, or sales@318.com for more information.

iPad 3G Now Available

April 30th, 2010

The iPad 3G (Wi-Fi + 3G) is now available for purchase at your favorite Apple Store or online from $629 to $829. They are great devices. With data plans from $14.99 to $29.99, you can take a wireless network with you anywhere that you go for less than the cost of one day worth of wireless access at many hotels.

There are a number of architectural changes that may need to occur in order to most effectively support these devices, so if you find that some changes need to occur in your environment, contact your 318 account manager for assistance.

WWDC 2010

April 28th, 2010

The annual Apple WorldWide Developers Conference, WWDC, has been announced for June 7th through June 11th. The Developers Conference will again be held in the Moscone Center in San Francisco and this year will be solely focused on development, having no IT track. To see a list of sessions, click here.

As part of WWDC, Apple also hands out a number of design awards. If you have any applications you would like to nominate for a design award then you can do so here.

Building MultiSAN with Xsan 2.x

April 26th, 2010

In Xsan 2, MultiSAN was introduced. MultiSAN allows you to assign different sets of primary, secondary and tertiary metadata controllers to volumes. This provides a performance benefit for some environments that have saturated resources on a given metadata controller. However, MultiSAN does not allow you to build separate SANs. All of the volumes are still members of that single “Xsan”, meaning that volumes can be mounted and/or controlled for any of the clients. You can have 2 volumes, each with a dedicated metadata controller, but both sharing a single backup metadata controller. You can also have 2 volumes, each with a dedicated metadata controller that fails over to the other metadata controller.

But if you do have 2 SANs, completely separate from one another, you cannot then have a client on both. Therefore, having multiple SANs isn’t exactly MultiSAN. MultiSAN means going from having a single metadata controller that controls your entire environment to having a slightly more object-oriented approach to metadata controllers. Which brings us to the question “do I need MultiSAN?” My answer is an if/then statement. If your metadata controller’s fsm or fsmpm processes are spiraling out of control then yes, you may (or you may have corruption in metadata somewhere. For coming up with the answer to my question I posted an Xsan monitor app awhile back on my apps page. But if your fsm/fsmpm processes barely tip above 1% and you’re still having bandwidth problems then look at stripe breadth/block size, fabric and defragmentation before considering buying a bunch of iron to move metadata controlling off onto dedicated hardware.

Now, if you do decide to integrate MultiSAN then to do so is a very straight forward process. First add the all of the metadata controllers as clients to the SAN. Then, create the volume. When creating a volume you will eventually come to a screen to define Volume Failover Priority. Here, you will see each of the clients that you have installed (in the beginning this might only be the metadata controllers). Check the box for each of the clients that you would like to be a metadata controller (I recommend no less than two but in most installations no more than 3 metadata controllers per volume). In this screen you can then also set priority by dragging each controller higher or lower in the list of controllers. If you only have two metadata controllers then the primary would be at the top of the list followed by the backup metadata controller. When you are satisfied with your configuration click on the Continue button and complete the volume configuration as you normally would. You can also invoke the Volume Priority screen from within Xsan Admin for pre-existing volumes.

This article was initially posted at http://krypted.com/mac-os-x-server/defining-multisan/

Sandboxing Chrome

April 23rd, 2010

Thanks to Google for referencing our post introducing sandbox in their sandboxing design document for Chromium at:

http://dev.chromium.org/developers/design-documents/sandbox/osx-sandboxing-design

Their use of sandbox is really over and above what we’ve seen from any other vendor. Each installation contains 3 distinct sandbox profiles (currently I have 4.0.249.49 and version 5.0.342.9 although mileage here may vary according to updates), each profile allowing access to only files and resources that are absolutely necessary to complete the task that the process that leverages them requires. You can see the specific resources that are accessible by looking at these profiles. The profiles are located at:

  • /Applications/Google Chrome.app/Contents/Versions/4.0.249.49/Google Chrome Framework.framework/Resources/renderer.sb
  • /Applications/Google Chrome.app/Contents/Versions/4.0.249.49/Google Chrome Framework.framework/Resources/utility.sb
  • /Applications/Google Chrome.app/Contents/Versions/4.0.249.49/Google Chrome Framework.framework/Resources/worker.sb
You can view them easily using a simple cat command:

cat /Applications/Google\ Chrome.app/Contents/Versions/4.0.249.49/Google\ Chrome\ Framework.framework/Resources/renderer.sb

You can then edit the profiles easily. For example, if you want to enable debug logging for sandbox, etc. This allows you transparency into what Chrome is doing but also allows you to further tighten security. Although, they have really taken their time to secure Chrome well and locked things down, so we doubt much further restriction is necessary or really possible. Overall, Chrome provides a great example of taking sandbox to the next level and extending it much more into the applications with graphical user interfaces than we’ve seen it extended to thus far.

Bad McAfee Update

April 22nd, 2010

Please be aware that there is a bad McAfee Antivirus update that will wrongly quarantine the SVCHOST files on Windows XP.  McAfee is aware of the issue and has pulled the bad update file.  Below is a fix in case you run into a case where the machine has already applied the update:

http://vil.nai.com/vil/5958_false.htm

Access File Shares from iPad

April 21st, 2010

As the iPad eeks its way into businesses we’re starting to hear a very common question: How do I access my files on the server? While you can enable WebDAV on most modern file servers and access data that way, or look to the cloud, many simply want a way to tap into existing SMB file shares. Well, you’re in luck!

Stratopherix (http://www.stratospherix.com) has released FileBrowser, an application for the iPad that can mount a file share and provide access to the resources on the share. FileBrowser will allow you to connect to servers and then access files as you would from a regular desktop computer, wirelessly or over a network connection.

If you find that you cannot access file shares once installed, then we have seen some policy issues on file servers (mostly those that do double-duty as a domain controller) or if you are remotely then you might need to either forward ports to the server or first establish a VPN into the environment. If you still cannot access them then contact your 318 account manager and we will be happy to assist with any needs you might have.

Happy File Browsing!

iPad is Now Here!

April 3rd, 2010

The iPad is finally here! 

While many will be standing in lines for hours at Apple stores around the country, you can also contact 318 and we will work with you to get an order processed without having the long wait. 318 has also been working with many customers preparing to deploy the iPad, and so if you have Exchange integration or mass deployment questions please feel free to contact your account manager today, or for new customers, the office at 310-581-9500.

10.6.3 Is Out

March 29th, 2010

For those who have had issues with Samba saving to file shares hosted on Windows Server, EMC or NetApp targets from within Microsoft Office (amongst other minor issues), you’ll be happy to note that Mac OS X 10.6.3 and Mac OS X Server 10.6.3 are now available for download. You can run softwareupdate to pick up the updates, or to download the updates manually see the links below:

Mac OS X Client
Mac OS X Server

WordPress 3.0 on the Horizon

March 24th, 2010

According to the current project schedule, WordPress 3.0 will hit the release candidate milestone next month, with a target release date of May 1, 2010. Lots of people have been writing about the new features of this release, but here are some of the highlights from the official list:

  • The merge with WordPress Multi-User (and multisite capabilities)
  • Better support for custom post types
  • Better menu management
  • New default theme “Twenty Ten” (preview here)
  • Custom Navigation
  • Custom Backgrounds
  • Choose username for the first account, rather than using ‘admin’
  • New template files for custom post types
  • Author specific templates
  • jQuery updated to 1.4.2

The code merge between “normal” WordPress and WordPress MU is a major undertaking. This will also allow BuddyPress to officially be installed on non-multiuser sites. The new default theme and ability to easily modify backgrounds should allow non-designers to create a nice custom site without having to know too much about theme design. The WooNav addition looks great and the elimination of the default admin user is something we talked about in our last post on WordPress security.

This will be a major release that should be tested in a non-production environment before being deployed on your server. 318 will be ready to help you with this upgrade when it’s released – call us at 877.318.1318 to schedule an appointment today!

WordPress Security Auditing

March 11th, 2010

After reading Sarah Gooding’s WPMU.org article, 7 Quick Strategies to Beef Up Your Security, we decided to take a look at our own WordPress settings here on the 318 Tech Journal.

Deleting the Default Admin User

Creating a new user with admin permissions, then logging in as that user and deleting the default “admin” account is great advice. Just make sure you assign all of the old admin users posts and links to the new account. Another caveat, if you are using the WPG2 plugin with a Gallery2 installation, make sure to remove the Gallery2 user links before deleting the old admin account.

Don’t Use the Default “wp_” Table Prefix

SQL injection attacks are very real, and this tip can help mitigate risk of infection. The WP Security Scan plug-in mentioned in the WPMU.org article has a built-in tool to help automate this change, but it can also lock you out of your dashboard. The trick is to make sure each user’s meta_key settings in the usermeta table match whatever prefix you choose:

wp_capabilities –> newprefix_capabilities
wp_usersettings –> newprefix_usersettings
wp_usersettingstime –> newprefix_usersettingstime
wp_user_level –> newprefix_user_level

Whitelisting Access to wp-admin by IP Address

This is typically done via .htaccess files and the AskApache Password Protection For WordPress plug-in mentioned in the WPMU.org article can help get the settings correct, although that plug-in has specific server requirements in order to run (it will run some tests for you to see if your server qualifies). If you do set this up, beware of dynamic IP address changes, which can lock you out in the future.

Other Items to Consider

  • Consider using a local MySQL application like Sequel Pro or the command line mysql tools for database configuration instead of public web-facing tools like phpMyAdmin. If you do use PMA, you should lock down access as much as possible using .htaccess controls (or other methods).
  • Tools like the WP Security Scan plug-in mentioned above or Donncha O Caoimh’s WordPress Exploit Scanner plug-in can help identify file permission issues in your WordPress setup.
  • Using SSH/SFTP instead of FTP to access your server is always good advice, even when you are using whitelists.
  • Stay up to date on both WordPress core files and all of your plug-ins.

318 is here to help you with all of your WordPress needs – call us today at 877.318.1318!

Follow us on Twitter

March 5th, 2010

Follow 318 on Twitter

Visit our booth at Macworld 2010

February 11th, 2010

Come visit our booth at Macworld 2010 on the expo floor. We are located in Booth 566C and have a bunch of free schwag to give out.

We also have a number of sessions this year:

Hands-on Snow Leopard Server: Collaboration Services with Charles Edge
2/10 – 1:00PM to 3:00PM

Push: The Next Generation of Collaboration is Snow Leopard Server with Charles Edge
2/11 – 4:30PM to 6:00PM

Advanced Integration with Final Cut Server with Beau Hunter
2/12 – 3:30PM to 5:00PM

iPhone Mass Deployment with Zack Smith
2/13 – 2:30PM to 4:00PM

We hope to see you there!

Screen Saver for Background Video

January 29th, 2010

“And Now For Something Completely Different”

January 28th, 2010

This week, Apple launched their newest product: the iPad. The sleek iPad is a revolutionary new look at the NetBook, but able to run most of the 140,000 applications that are in the App Store for the iPhone. Given the popularity of the App Store so far and the new development methods introduced for the iPad you can rest assured that even more feature rich applications will be developed for the iPad as time goes on. Not that Apple hasn’t led the charge in using the new iPad APIs: iWork has been ported to the iPad. This means that you can create rich Pages, Numbers and Keynote presentations in addition to interacting with a number of cloud based services and leveraging those existing iPhone applications.


The iPad is aluminum and glass, comes with up to 64GB of space, a multi-touch LED screen, 802.11n, Bluetooth and can have a 3G data connection for only $29.99 per month. All of this in a secure, easy-to-use interface that we’ve all grown accustomed to!

Want help integrating the iPad into your Enterprise? Let 318 know if you have interest with mass deployment, purchasing or development: our developers are on hand to work with you on commercial and enterprise applications as needed!

Preparing for Exchange 2007

January 27th, 2010

Make sure you have a fully updated Windows 2008 64bit install setup for the following commands to work. Note that Windows 2008 R2 will NOT work with Exchange 2007.

Exchange 2007 has a lot of prerequisites that need to be installed before you can install Exchange 2007. Instead of going through a bunch of Wizards and using trial and error to make sure you have everything installed, you can set them up using a command line.

The first command that should be run is:

ServerManagerCmd -i PowerShell

This will install and configure everything that Exchange 2007 needs for PowerShell.

IIS has several components that need to be installed to use Exchange 2007. You can create a quick batch script that includes them all. The following commands need to be run:

ServerManagerCmd -i Web-Server
ServerManagerCmd -i Web-ISAPI-Ext
ServerManagerCmd -i Web-Metabase
ServerManagerCmd -i Web-Lgcy-Mgmt-Console
ServerManagerCmd -i Web-Basic-Auth
ServerManagerCmd -i Web-Digest-Auth
ServerManagerCmd -i Web-Windows-Auth
ServerManagerCmd -i Web-Dyn-Compression

If you plan on using RPC over HTTP (Outlook Anywhere) you will need to run this command after all of the IIS commands have finished:

ServerManagerCmd -i RPC-over-HTTP-proxy

After running these commands you should be ready to run the actual setup files. When you run setup.exe you should see that everything before option 4. Is greyed out. Option 4. is what triggers the install. If anything has not finished look through the command lines to make sure no errors have shown up.

New ActiveStorage iPhone App

January 26th, 2010

Active Storage has released a new iPhone app that you can use to monitor the status of their new XRAID ES. If you are interested in the Active Storage products then please call 318 at 310-581-9500 for more information and pricing.

The App is available on the App Store.

ACLs and NFS

January 14th, 2010

The permissions that a user obtains for NFS shares will boil down to effective permissions. NFS doesn’t support ACLs, but it does honor them for Mac OS X NFS clients when bound to the directory.: if a user is granted read/write via an ACL, they WILL have read/write access via NFS. However, there are a few things to note here.

First and foremost, granular ACL’s won’t translate completely. Secondly, although you might have effective write privileges via ACL’s, if you don’t have write privileges via POSIX, it will *look* like you don’t have privileges when you do an `ls` on the mounted NFS volume, however, if you try to read or write a file, it will work without issue. Poorly written software might inspect the POSIX permissions and determine that you don’t have access when you really do. Most software will attempt to read/write an asset and will report errors when encountered (as it should).  Lastly, ACL inheritance IS honored over NFS as well, so any files/dirs your users will create will have the appropriate ACL’s assigned on the backend, though displayed POSIX permissions once again won’t be especially accurate.

Mighty Mouse Unleashed!

December 31st, 2009

If you have been wondering what more you can do with that shiny new Mighty Mouse then get ready. MagicPrefs, from Vlad Alexa allows you to do the following:

- It features the ability to bind a variable number of finger clicks, taps, swipes, pinch and other gestures to functions like Middle Click , Hold Down Both Mouse Buttons , Spaces , Expose, Dashboard etc.
- Touch Sensitivity implements a single point control for a number of factors impacting the algorithms of the taps, swipes, pinche and other gestures.
- Tracking Speed adds the ability to increase the maximum mouse speed by a extra 200%.
- Also featured is a real-time display of the fingers touching the surface of the mouse that you can enable to test and monitor the way the mouse sees fingers.

Background Checks? There’s an App for That!

December 24th, 2009

Apple’s App store is a veritable wild west movie of products; business, pleasure, pleasure disguised to look like business, useful tools that are free and do-nothing apps that cost $999.99.

Beenverified.com has released a “free” app that allows you to run background checks right from your iPhone. While this isn’t a new idea, the app is well designed and you get three free searches a week. Since it’s just been released, you can only run one search at a time due to high server demand, but the searches are accurate and in-depth. It was able to produce not only basic information about those of us that have tried it, but also gave a complete histories of houses, including past owners, past occupants and the house’s current market value, amongst other things!

MergeSafBookmarks Now Open Sourced

December 22nd, 2009

318 has open sourced our mergeSafBookmarks python script. This tool can read in a pair of property lists and merge them into a single resultant bookmarks file for Safari. This takes a lot of the work out of pushing bookmarks to existing users as part of your deployment. You can find it here:

http://mergebookmarks.sourceforge.net

Note: The script also looks at existing bookmarks and doesn’t merge in duplicates.

Link To: