PDA

View Full Version : k3b cannot see files, so I can't navigate to them.



sunlion
04-28-2005, 10:52 AM
I'm trying Knoppix live on a Windows XP box, and trying to use K3B to burn a CD (I've never used a CD burner, someone gave me one that supposedly works). The files that I wish to burn are .wav files that I obtained using Azureus in Windows XP- and the .wav files play fine.

I can see the hard drives and Windows files just fine while in Knoppix's file manager- but if I try to burn a CD as per the instructions and pictures, it simply does not see the Windows files, so I can't even navigate to them to "drag and drop." Suggestions?

I've used linux only at the command line, restarting daemons and configuring Apache, etc. at work, but have never used a linux gui, and I don't consider myself linux proficient.

Also, since I've never burned a CD, I don't understand a basic concept that all faqs seem to assume you know- what file extensions are used? I know somewhere I've read that CDs are simply a collection of .wav files. I've also read somewhere that they are actually .iso files. And I'm sure I've read somewhere that they must first be converted to .iso's and then back to .wav and none of this makes the slightest bit of sense to me.

I suspect I'm missing a few facts considered too basic for anyone to even have to explain, but I've also found other message boards where people had the exact same problem, and got no response at all.

Thanks for the help; if it wasn't for my family absolutely requiring Windows for things that have no linux equivalent (vrml), I would have pitched Windows for good 8 years ago...

Dave_Bechtel
04-28-2005, 06:19 PM
[[ And I'm sure I've read somewhere that they must first be converted to .iso's and then back to .wav and none of this makes the slightest bit of sense to me. ]]

--That part at least, is incorrect. When you rip a CD, it reads the digital data directly (bypassing the sound card) and converts it to .wav or .mp3.

--When you burn an .iso, you are transplanting an entire self-contained filesystem to disc. It's a bit-for-bit image, so you can mount the .iso as a filesystem and also boot from CD if it was generated properly.

--I don't use K3B personally, but it should have some way to navigate to the files internally. Look around thru the menus. If it's a file-permissions problem, open up a terminal and run ' sudo k3b '.

--If all else fails, put this script into /usr/local/bin and ' chmod +x ' it; cd to your .wav dir and run it. You should run ' cdrecord -scanbus ' first, and put the proper SCSI device for your burner in the script.

BEGIN burncda


#!/bin/sh
# Used standalone to burn .wav files to CD,
# or after make-a-cdset

CDR_DEVICE='0,0,0'

#usecd='/mnt/cdtemp'
#mount $usecd
##cd $usecd/audio
#cd /mnt/driveg/cdtemp/audio/alt-trax

# Use -dummy to test!!
if [ -n $1 ]; then
addto=$1
fi

echo $addto $CDR_DEVICE

ls
#echo Pk:
#read

time \
cdrecord $addto -tao -eject -v fs=5120k -audio -nopad *.wav

# This is for one-off WAV files, resampled, cut, time-compressed, etc
#time \
# cdrecord $addto -eject -v fs=5120k speed=8 dev=1,0,0 -audio -pad *.wav

fingers99
04-28-2005, 06:36 PM
I'd not worry too much about the underpinnings.

Essentially, what you need to do is click on the "new audio cd" icon. Then you should be able to drag and drop the files over to the bottom pane.

(If that fails, you may need to run K3B set up).

Let us know any other problems.