Installing Amazon MP3 Downloader under Ubuntu 64 bit
I use Amazon's MP3 store and it's accompanying downloader application. It came time to set it up on another 64-bit machine and I thought this would be a good opportunity to document the install process.
First, you gotta have getlibs.deb installed by downloading the file and typing sudo dpkg -i getlibs.deb.
Before we can install the amazon downloader, you will need a few other packages. Use the following bash shell 1-liner to get them all.
for i in libglademm libboost-filesystem \ libboost-regex libboost-thread \ libboost-iostreams libboost-signals libboost-date-time; do \ apt-cache search $i |egrep -v "dev|doc|dbg"|sort|tail -n 1|\ cut -d' ' -f1; done| xargs sudo apt-get -y install
After that is done, install the amazonmp3.deb file you got from amazon.com by typing dpkg --force-architecture -i amazonmp3.deb.as well. Download them from the links provided and install them with dpkg -i. Note that the amazon deb file is 32-bit (the whole purpose of this entry!), so you will have to add the --force-all option to dpkg.
The only thing that is left is run getlibs against the amazon executable. Do that by typing sudo getlibs `which amazonmp3` and confirming the prompt by getlibs. Now associate the amz file extension with the /usr/bin/amazonmp3 in either your browser or your operating system.
This is it! You should now be able to purchase and download mp3's from amazon with your 64-bit *buntu box!
Easy Peasy!
-PCP
- peter's blog
- Login or register to post comments


Comments
"Fix from Amazon MP3 Help desk for Ubuntu 10.4 and Amazon MP3 Downloader no longer working: The .AMZ file no longer a known file type in Mozilla Firefox, 1. Go to Preferences --> Privacy and click on the "Remove Individual Cookies" option, type Amazon in the Search field to filter search results, find and select the MP3 Downloader cookie (easy to find) and click Remove. 2. Reload the download page and click the "Try Again" button. Works like a charm - no downloading individual MP3s from Amazon."
Following your directions, i receive the following:
username@ubuntu:~$ sudo getlibs /usr/bin/amazonmp39727No match for libboost_filesystem-gcc42-1_34_1.so.1.34.1No match for libboost_regex-gcc42-1_34_1.so.1.34.1No match for libboost_date_time-gcc42-1_34_1.so.1.34.1No match for libboost_signals-gcc42-1_34_1.so.1.34.1No match for libboost_iostreams-gcc42-1_34_1.so.1.34.1No match for libboost_thread-gcc42-mt-1_34_1.so.1.34.1No packages to install
FYI i am running ubuntu studio, latest version (ubuntu 10).
Do i need to add some repos or something? Do take it easy with me, i's still learning commandline! :-)
Thanks!
Hi! on restart i tried amazonmp3 in terminal and only got the following:amazonmp3: error while loading shared libraries: libboost_filesystem-gcc42-1_34_1.so.1.34.1: cannot open shared object file: No such file or directoryA friend helped me find this link:
http://ubuntuforums.org/showthread.php?t=1479548
I simply followed his instructions by copying what colin-m said to copy from comment #17 on
http://ubuntuforums.org/showthread.php?p=9145072
It works! Thought i'd leave this note for anyone with a similar problem.
Thanks for the update! I have updated a couple of my boxes to lucid and will be updating the instructions to get amazon mp3 downloader to run under lucid.
-Peter