Editor’s Note: This article is part of the Tales of A Linux Switcher series.
As part of my on-going switch to Ubuntu 12.04 from Mac OS X, I ran into an issue where my cdrom device was not being mapped properly in the OS.
Everything works as desired except for one little thing: the eject key on the Apple Aluminum USB keyboard was not triggering the eject sequence of the built-in slot loading SuperDrive.
I assumed that there would be a device mapped to the actual drive using a link to /dev/cdrom. This didn’t turn out to be the case. When using the eject command from a terminal I received the following:
$ eject eject: unable to find or open device for: `cdrom'
When I did a directory list to find any applicable cdrom device entries in the udev root (/dev) I got the following:
$ udevadm info --root /dev root@foreandy-iMac:~# ls -l /dev/*cd* ls: cannot access /dev/*cd*: No such file or directory
In order to determine exactly which device was being used for the optical drive, I looked at the output from system’s cdrom device entry:
$ cat /proc/sys/dev/cdrom/info CD-ROM information, Id: cdrom.c 3.20 2003/12/17 drive name: sr0 drive speed: 24 drive # of slots: 1 Can close tray: 1 Can open tray: 1 Can lock tray: 1 Can change speed: 1 Can select disk: 0 Can read multisession: 1 Can read MCN: 1 Reports media changed: 1 Can play audio: 1 Can write CD-R: 1 Can write CD-RW: 1 Can read DVD: 1 Can write DVD-R: 1 Can write DVD-RAM: 0 Can read MRW: 0 Can write MRW: 0 Can write RAM: 1
The next step was to create the symbolic link in the device root to map cdrom to the appropriate device as listed in the above output:
$ sudo ln -s /dev/sr0 /dev/cdrom $ ls -l /dev/*cd* lrwxrwxrwx 1 root root 8 Jul 30 09:58 /dev/cdrom -> /dev/sr0
Now I can use both command line utilities to work with the optical drive as well as the built-in eject key on my keyboard.
If you want a lot more detail on this issue check out this bug comment. While not specifically dealing with a Mac, the issues and solution are the same.
Editor’s Note: This article is part of the Tales of A Linux Switcher series.
If you are a graphic designer or developer, or you just have a need to edit images, a mainstay of your Linux toolbox is likely to be the Gimp.
If you are coming from the Mac or Windows world, it is probable that you have used Adobe’s Photoshop program to achieve your image editing needs in the past. Having used Photoshop and Gimp extensively over the past decade, I can tell you that one of the features I liked about the Photoshop environment on Windows has been the unified window. All the palettes, toolbars and editing windows exist inside a single, unified window.
I always missed this when using Gimp on Linux (or the other OS as well, since Gimp is available for all three ). One of the main feature draws for me to the latest Gimp release, version 2.8, was this single line in the release notes:
GIMP 2.8 introduces an optional single-window mode.
Awesome! Of course, Gimp 2.8 is not in the current Ubuntu 12.04 repository (Note: Ubuntu 12.10 has version 2.8 listed in the repository!) :
$ apt-cache policy gimp gimp: Installed: (none) Candidate: 2.6.12-1ubuntu1 Version table: 2.6.12-1ubuntu1 0 500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
Not to fear! Using the following set of commands you can successfully obtain the Gimp 2.8 software as well as a compatible version of the plugin registry:
sudo add-apt-repository ppa:otto-kesselgulasch/gimp sudo apt-get update
As you see from a policy check, after adding the repository and updating the cache, you will now be receiving the Gimp package and the updated plugin-registry from the new PPA:
$ apt-cache policy gimp gimp: Installed: (none) Candidate: 2.8.0-1ubuntu0ppa6~precise Version table: 2.8.0-1ubuntu0ppa6~precise 0 500 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu/ precise/main amd64 Packages 2.6.12-1ubuntu1 0 500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
$ apt-cache policy gimp-plugin-registry gimp-plugin-registry: Installed: (none) Candidate: 5.20120523-2ubuntu0ppa9~precise Version table: 5.20120523-2ubuntu0ppa9~precise 0 500 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu/ precise/main amd64 Packages 3.5.4-1 0 500 http://us.archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages
To install it now enter the following:
sudo apt-get install gimp gimp-plugin-registry
Now you have the most recent release!
Editor’s Note: This article is part of the Tales of A Linux Switcher series.
One of the things I have always hated about using Linux is the difference in the base font collection. Many web designers still use the defaults of Arial, Verdana and Georgia. The reasons for this are that these fonts are available on the two main commercial operating systems, Mac OS and Microsoft Windows.
Until the majority of websites support webfonts like Google Web Fonts or Monotype’s fonts.com service, we still need access to the standard MS fonts. For more on this situation, check out the article A Web Designer’s Guide to Linux Fonts by Six Revisions.
Fortunately, these fonts are available for installation on Linux. You can download them directly from the Sourceforge repository or look for the package in your particular distribution.
In Ubuntu you can install them from the Ubuntu Software Center by searching for the package named ttf-mscorefonts-installer or by using the following on the command line (Note: if you install from the command line then you will be prompted to accept the license aggreement in an ncurses interface.):
sudo apt-get install ttf-mscorefonts-installer
Either way, you will end up with the following additional fonts:
- Andale Mono
- Arial Black
- Arial (bold, italic, bold italic)
- Comic Sans MS (bold)
- Courier New (bold, italic, bold italic)
- Georgia (bold, italic, bold italic)
- Impact
- Times New Roman (bold, italic, bold italic)
- Trebuchet (bold, italic, bold italic)
- Verdana (bold, italic, bold italic)
- Webdings
To see the difference in the display of websites after the installation, check out the following screenshots from this website.
As you can see the use of these fonts definitely make a difference. Happy surfing!
I have been updating my wallpaper to a new monthly desktop wallpaper from the Smashing Magazine site for several months.
With earlier versions of Mac OS X it was easy to update all spaces at once because the default change action affected all the spaces. With the advent of Mac OS X 10.7 (aka Lion) each space is capable of having a unique wallpaper. While this is a neat feature, there is no option to apply the change to all the spaces. One workaround is to manually change each space. Another workaround is remove all your spaces, make the change then add the spaces back.
Neither of these options is suitable to me. The first option is fairly cumbersome, and the second will undo my application-to-space bindings. To solve this problem I have written a script than handles it.
Here’s the script:
#!/bin/bash # Simple Script to update the desktop wallpaper # background for all desktop spaces in Mac OS X 10.7 # # Usage: update_desktop_wallpaper.sh old_wallpaper_path new_wallpaper_path # # Andy Fore # http://arfore.com # Check for command line arguments if [ -z "$1" ]; then echo "Usage: update_desktop_wallpaper.sh old_wallpaper_path new_wallpaper_path" exit 1; else # Change location to the active user preferences directory cd ~/Library/Preferences # Backup the original plist file echo "Making a backup of the original plist file..." cp com.apple.desktop.plist com.apple.desktop.plist_backup # Convert the desktop plist from binary to xml echo "Converting plist file to text format..." plutil -convert xml1 com.apple.desktop.plist # Update the desktop wallpaper file location/name echo "Editing the file..." sed -i "" "s/$1/${2}/g" com.apple.desktop.plist # Convert the desktop plist back to binary format echo "Converting plist file back to binary format..." plutil -convert binary1 com.apple.desktop.plist # Killing Dock process echo "Sending the kill signal to the Dock process to force reload of plist" killall -HUP Dock # Display completion message echo "Operation now complete." fi
Example
$ ./update_desktop_wallpaper.sh June2012_Calendar.jpg July2012_Calendar.jpg
Note that I only used a filename in the example. This is because all of my calendar wallpapers are saved in the same directory path, making the unique part just the filename itself.