I've been trying to get my Lightscribe burner to work in the 64bit version of Kubuntu for a little while now, and have finally succeeded!
- You'll need to 1st install 2 applications from the repos:
- Then, download the latest version of the LightScribe driver and LaCie LightScribe Labeler software.
- Convert the packages to .tgz files with alien:
- Convert the converted .tgz files to .deb:
- Install the converted .deb's, beginning with the driver:
- Reboot and you'll be good to go!
Now, to create a KMenu entry:
- Right-click the KMenu.
- Select "Unlock Panels" if they are locked.
- Once the panels are unlocked, right-click the KMenu again, and select "Menu Editor".
- Select the location within which you would like to create the entry, right-click it, and choose "New Item"; I will use "Utilities".
- Enter the name you would like to call the app. I'm going to call it "LaCie LightScribe Labeler", sticking true to LaCie's name.
- In the "Command:" box, enter "4L-gui".
- Chose an icon for your labeler (click the white box on the top-right).
- Save and close the menu editor, and its entry should be in the KMenu!
That's it! You're done! Just insert a lightscribe disk, open the labeler from KMenu, create your design, choose "Burn", and select your drive.
LaCie's labeler hasn't yet been ported to K3b, but it serves as an excellent standalone application.
Note: You can just copy and paste the commands into a console if you want
- You'll need to 1st install 2 applications from the repos:
Code:
sudo aptitude install alien; sudo aptitude install fakeroot
- Convert the packages to .tgz files with alien:
Code:
fakeroot alien -t 4L*.deb; fakeroot alien -t lightscribe*.deb --scripts
Code:
fakeroot alien 4L*.tgz; fakeroot alien lightscribe*.tgz
Code:
sudo dpkg -i lightscribe*all.deb; sudo dpkg -i 4l*all.deb
Now, to create a KMenu entry:
- Right-click the KMenu.
- Select "Unlock Panels" if they are locked.
- Once the panels are unlocked, right-click the KMenu again, and select "Menu Editor".
- Select the location within which you would like to create the entry, right-click it, and choose "New Item"; I will use "Utilities".
- Enter the name you would like to call the app. I'm going to call it "LaCie LightScribe Labeler", sticking true to LaCie's name.
- In the "Command:" box, enter "4L-gui".
- Chose an icon for your labeler (click the white box on the top-right).
- Save and close the menu editor, and its entry should be in the KMenu!
That's it! You're done! Just insert a lightscribe disk, open the labeler from KMenu, create your design, choose "Burn", and select your drive.
LaCie's labeler hasn't yet been ported to K3b, but it serves as an excellent standalone application.
Note: You can just copy and paste the commands into a console if you want
Comment