Quote:
Originally Posted by
nyctree 
You are not an idiot, you just don't know UNIX. I don't either, but I just spent an hour learning what we do need to know, and now I have AIRPRINT and it is fabulous! Here are the commands to type from the Terminal application. (make sure the three files are in the "Downloads" directory (no other folders) and in place of "HOMEFOLDER", type your home folder name.
cd /usr/share/cups/mime/
sudo rm apple.convs
sudo rm apple.types
(make sure all three of the new files are in the downloads folder)
sudo cp /Users/HOMEFOLDER/Downloads/urftopdf*/usr/libexec/cups/filter/urftopdf
sudo cp /Users/HOMEFOLDER/Downloads/apple.convs*/usr/share/cups/mime/apple.convs
sudo cp /Users/HOMEFOLDER/Downloads/apple.types*/usr/share/cups/mime/apple.types
enjoy
OK, a few additions/clarifications/corrections to this post. When you extract the files extract them all out of the zip into the downloads folder. Using it as it extracts itself creates a subfolder called mimes. That's not what you want for the commands listed above. So in downloads you should have all three of the files:
urftopdf
apple.convs
apple.types
I found I was having permissions issues, so I logged in as root user. sudo should work but it didn't. heres the link for root user from apple:
http://support.apple.com/kb/ht1528
now, open terminal under applications > utilities
su root
(it will ask for password)
now your at the command prompt
cd /usr/share/cups/mime/
(space between cd and /usr)
rm apple.convs
rm apple.types
cp /Users/HOMEFOLDER/Downloads/apple.convs /usr/share/cups/mime/apple.convs
(space between convs and /usr)
cp /Users/HOMEFOLDER/Downloads/apple.types /usr/share/cups/mime/apple.types
(space between types and /usr)
ls - l
This will show you the file that you copied there exists...the easiest way it to look for today's date
cp /Users/HOMEFOLDER/Downloads/urftopdf /usr/libexec/cups/filter/urftopdf
(space between urftopdf and /usr)
cd /usr/libexec/cups/filter
ls -l
This will show you the file that you copied there exists...the easiest way it to look for today's date
That should help a few folks. Works perfect, that's to the previous poster for the structure, and to chuck for the files