S-c@-tt3red Thoughts

Cuz we just might like the same stuff!

Mac Office 2008? So disappointed!

I got my hands on a copy of Mac Office 2008, and was so excited to check out the new entourage, since I’ve always had gripes about the lack of functionality of Entourage. Well, turns out that all Microsoft did with Entourage is add a few eye candy features, and shipped it back out. I figured, in 4 years, they would’ve had enough time to invest in sprucing up the functionality to become at least comparable to the PC version. I was wrong!

I am just recently a Mac person, and never really had any bias towards Mac users, but now that I have my own Mac, I will refer to “US MAC USERS”! :-P, we, feel left out.

Here’s my opinion about it though, ever since Leopard came out with the spiffed up version of OS X mail, I’ve been using that with no complaints. ok, maybe a couple, like the lack of a nice archiving system like the PC version of outlook has, and which Entourage STILL doesn’t have! I have not tested full functionality of Office 2008, because I’m still dealing with the initial shock of disappointment!!

At this point, I’m thinking of reverting back to OS X Mail, and using the PC version running Office 2007, on my Parallels VM. cloodgy? maybe, though with the Parallels tools installs, the locations of my files don’t even matter.

Before I finish my rant on Office, I have one more gripe! Pricing!

Hello!? $400??? for the standard version of Office 2008 that actually supports connection to Microsoft Exchange. Hmm… I work for a school district, and when they create a version of office that says on it “Teacher and Student edition” … I would expect all teachers and students jumping on that version, when, in reality, in my case, 100% of the teachers will actually need Exchange functionality! So now, $150 for the retail price of the Teacher and Student edition won’t be enough anymore, and the $399 edition will be required. Granted, educational pricing will probably still be lower than that, I think that the featureset that got offered in this version does not deserve this big hype, and certainly not this high price!

Oh, and I don’t believe I’m the only one that had this issue with Office 2008 for Mac… reading reviews about it, I see these complains all over… Microsoft! get on the ball with Mac users!

for Mac users: What office suite do you use?

View Results

Loading ... Loading …

February 5th, 2008 Posted by Georges Khairallah | Geek Stuff, mac | one comment

Make an ISO from a CD/DVD on your Mac, for FREE

I am a relatively new Mac user, and I am still learning the ropes. One of the things that I used to be bale to do very easily on the PC was to create an ISO (CD Image file) from a CD. On the Mac, I attempted to do it using DiskUtility, which is a native tool that comes with OS X, but it does not really do the job. So, after a little bit of research, I found a cool way to do it, which is fairly easy. For this to work, you probably have to be a little comfortable using your “Terminal” application. I will try to put the steps in as much detail as possible, so that you can follow along:

Disclaimer: Please note that the tool used in this article (dd) can be dangerous, and, if used incorrectly, can end up wiping your whole hard drive, so, consider yourself warned!!

- Open “Terminal” : Applications / Utilities / Terminal

- With your CD mounted. (You should be able to see the CD on your desktop, type:
df -h
df-h
The important line is /dev/disk1s1s3 . This is the device reference to your CDROM drive.

This number may vary, and in order to be sure that your CD device reference is the correct one, you can run the following command, and that should give you at lease the first part of the device without the reference to the volume:

drutil status
drutil status
This /dev/disk1 is the CD Drive.

- Unmount your CD:

diskutil unmountDisk /dev/disk1
Disk /dev/disk1 unmounted.

- Now create the ISO

dd if=/dev/disk1s1s3 of=mynewcd.iso bs=2048

- When the process finishes, you should be able to mount that image using this command:

hdid mynewcd.iso

Or you can mount it by double clicking on the iso file, and it should show up on your desktop.

Gotchas:

- The main problem that I had with doing this process was to refer to the CD device, instead of the volume that I need to rip. (i.e: /dev/disk1, as opposed to /dev/disk1s1s3). If you use dd and get the final file, it’ll look fine, but when you try to mount it, you will get an error. So make sure you refer to the correct volume.

- Make sure that you are writing the ISO file somewhere within the filesystem that you have WRITE access. The safest place would probably be your home directory, so your dd line would be best that way:

dd if=/dev/disk1s1s3 of=~/Desktoop/mynewcd.iso bs=2048

This will actually write the file straight on your desktop, and you won’t have to go looking for it after the process is done.

This ISO can then be burned at a later time.

February 5th, 2008 Posted by Georges Khairallah | Geek Stuff, mac | no comments