OS X: add the date to the menu bar in Leopard
There are several tutorials to add the date entry to the menu bar in OS X. Unfortunately none worked in Leopard, hopefully this one will work for you as it did for me.
1. Go to System Preferences
2. Click on International > Formats
3. In the dates section, click on Customize
4. Pick and mix any combination of data you like
5. When you are happy with it all, select it all and copy it (CMD + V)
6. In the section times, click on Customize
7. select Medium and paste your date style where you want it to appear and click ok
8. Now the trick to getting this to work in Leopard, in System Preferences > Date & Time > Clock
9. Remove the tick next to "Show date and time in menu bar" and add it back again.
It is this last step (#9) that makes the date appear in Leopard (at least for me)
Feedback welcome.
Importing emails from Mac Mail into Evolution
Inside Mac Mail, right click on your mailboxes and select 'Archive mailbox'. This will create an .mbox of your mailbox. Do this for each mailbox you have set up in Mac Mail.
Then create a folder called 'mail' in your home directory in Ubuntu, and copy these .mbox folders in to it.
Then launch Evolution and select File > Import > Import data and settings from older programs
Evolution will find the .mbox folders in your newly created 'mail' folder and import them all for you automatically.
Sharing bookmarks between Firefox in Ubuntu and Firefox in OSX
Assuming you are dual booting OSX and Ubuntu, with read/write access from Ubuntu in to your OSX partition, here is a method to share the same bookmarks.
In Firefox 3, bookmarks are stored in your profile folder, in a file called spaces.sqlite. We are going to delete the spaces.sqlite in your Ubuntu Firefox profile and create a symlink to the same file in your OSX partition.
Make sure to close Firefox and backup your spaces.sqlite files first.
The command should be something like this:
ln -s /media/mac/Users/john/Library/Application\ Support/Firefox/Profiles/uuuvglig.default/spaces.sqlite
/home/john/.mozilla/firefox/cqzxegul.default/spaces.sqlite
in other words:
ln -s /path/to/real/file /path/to/non-existent/file
This will create a soft symbolic link in your Ubuntu Firefox profile folder.
Clearing the msftres flag set by gparted
If you have used the partition editor on the Ubuntu LiveCD to create a FAT32 partition, you may notice that this new partition will be flagged with msftres. This means it is MS Reserved and you will not be able to mount this partition easily or at all in OS X.
Here is a simple workaround to get rid of the msftres flag:
(These instructions assume that you have already created a FAT32 partition using gparted)
- Using the Ubuntu LiveCD launch the partition editor and delete the FAT32 partition.
- Create a resierFS partition in its place
Why do we do this?
- gparted sets no flags on reiserFS partitions it creates
- the Disk Utility (which we will need in the next step) in OS X can't edit ext2/3 partitions, neither can it erase a FAT16, FAT32 or NTFS partition that is flagged with MS Reserved (i.e. msftres)
Now we continue with the instructions:
- Next launch OSX and open Disk Utility
- Now click on the resierFS partition and select 'erase'
- Erase the reiserFS partition and replace it with a FAT32 partition (choose the FAT from the drop down menu)
- Disk Utility will create a FAT32 partition without any flags and this new partition will mount nicely in both OSX and Ubuntu