Skip to content

Instantly share code, notes, and snippets.

@abidibo
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abidibo/1d312a7b65dbab0fb715 to your computer and use it in GitHub Desktop.
Save abidibo/1d312a7b65dbab0fb715 to your computer and use it in GitHub Desktop.
lightscribe ubuntu 14.04
(http://reubuntu.blogspot.it/2014/02/lightscribe-e-una-tecnologia-di.html)
(http://stackoverflow.com/questions/23182765/how-to-install-ia32-libs-in-ubuntu-14-04-lts-trusty-tahr)
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
http://download.lightscribe.com/ls/lightscribe-1.18.8.1-linux-2.6-intel.deb
http://download.lightscribe.com/ls/lightscribeApplications-1.18.6.1-linux-2.6-intel.deb
https://www.lacie.com/download/drivers/LaCie%20LightScribe%20Labeler%201.0%20Linux.rpm (https://www.lacie.com/us/support/drivers/driver.htm?id=10061)
sudo apt-get install alien
rpm to deb
mv LaCie\ LightScribe\ Labeler\ 1.0\ Linux.rpm lacie-lightscribe-labeler-1.0.rpm
sudo alien -g package-name.rpm
cd package-dir/
sudo vi debian/control
Now change the architecture (i386 in my case) to be the one you need. For example, I added the amd64 archicture and this is how the line ended up:
Architecture: i386, amd64
Last step:
sudo debian/rules binary
This will produce the .deb file.
(http://askubuntu.com/questions/322624/how-do-i-convert-a-x86-rpm-to-a-x86-deb-within-a-x64-system)
sudo dpkg --install --force-architecture lightscribe-1.18.8.1-linux-2.6-intel.deb
sudo dpkg --install --force-architecture lightscribeApplications-1.18.6.1-linux-2.6-intel.deb
sudo dpkg --install --force-architecture lacie....
MISSING i386 libraries
abidibo@abidibo-K56CM:~$ locate libXrandr
/usr/lib/x86_64-linux-gnu/libXrandr.so.2
/usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0
abidibo@abidibo-K56CM:~$ sudo apt-get install libXrandr2:i386
abidibo@abidibo-K56CM:~$ sudo apt-get install libXcursor1:i386
abidibo@abidibo-K56CM:~$ sudo apt-get install libXinerama1:i386
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment