Volumes

Latest

  • Mac 101: Launch at startup, the Login Items tab

    by 
    Mat Lu
    Mat Lu
    05.18.2007

    Everybody has programs that are pretty much always open (Mail, iTunes, Quicksilver, etc.), so it's good to have them launch automatically at startup. There are a couple of different ways to do this. If the program is already running you can hold down your (left) mouse button on its Dock icon and choose "Open at Login" from the pop up menu. However, the best way to manage these is in "Login Items" tab of the Accounts Preference Pane in your System Preferences. Here you can manually add login items. In fact, in addition to adding login items (just by clicking the plus sign), you can also remove anything you don't want (with the minus). It's useful to scan the list periodically and remove anything you don't commonly use (sometimes developers, e.g. Adobe, will put things in there without asking). Removing these unused items can free up system resources for more useful things. But be careful that you do not remove anything important (basically if you don't know what it is, don't remove it). In addition to adding applications to the login items tab, you can also add Volumes to mount on login, including network mounts. Just mount the network drive first in the Finder, then after hitting the plus sign select it and it will be placed on the list, as you can see for my WebDAV mount above.

  • Terminal Tip: Showing and Hiding Disks using Developer tools

    by 
    Erica Sadun
    Erica Sadun
    05.01.2007

    In a couple of recent posts, I showed you how to how to hide drives using Finder preferences and selectively show some of them using aliases. I received a number of emails looking for more elegant solutions i.e. avoiding the look of aliases and their won't-sort-properly-like-a-real-drive behavior. A few readers also asked how to hide their iDisks, which didn't respond to the preferences the same way that hard drives did. First let me note that iDisks aren't seen by Finder as normal hard drive volumes or, as you might expect, as connected servers. Instead, iDisks are controlled by the CDs, DVDs, and iPods preference--the same preference that shows and hides attached thumb drives and memory card readers. As for the more elegant volume-by-volume solution, that lies in the realm of Terminal and the command-line developer tool SetFile. You can join the Apple Developer Connection and gain access to the developer tools with a Free ADC Online Membership. After installing the dev tools, you'll find SetFile in the /Developer/Tools folder. To hide a volume, use the -a V flag with SetFile and then restart Finder. This will hide the iDisk, even in Sync mode % /Developer/Tools/SetFile -a V /Volumes/iDisk/% killall "Finder"% To bring the volume back, use -a v instead. (Notice the lower case "v".) % /Developer/Tools/SetFile -a v /Volumes/iDisk/% killall "Finder"%