The Best Laptop

Andrew Marks spam at amrx.net
Tue Mar 30 09:42:36 PST 2004


On Mon, Mar 29, 2004 at 09:17:01PM -0800, Brian Behlendorf wrote:
> 
> I've got this too, under 5-CURRENT, but I can't get atapicam to work; if I
> compile it in the kernel then it won't boot if the CD-RW is attached.
> Without it in the kernel, I can't burn CDs (unless there's some tool that
> supports IDE CD burning?).  Any idea?
> 
> They've gotten suspend/resume working under Linux: check out
> 
> http://mrohne.home.cern.ch/mrohne/P2120/P2120_Linux_S3.html
> 
> but it sounds like a Mighty Hack.
> 
> 	Brian
> 
> On Tue, 30 Mar 2004, Erich Dollansky wrote:
> > I have an Fujitsu P2120. FreeBSD 5.2 works but has problems with the
> > power settings. With other words, NT has a longer operating time than
> > FreeBSD on it.
> >
> > All other features of the machines did not make any problems.
> >
> > Erich

Sorry, didn't read your post completely, use burncd to burn cd's.  Its
really nice, for instace, I organise my mp3's by cd, so to..uhh.. make a
backup copy of the cd I bought and ripped, I run this...



#!/bin/sh

burner="/dev/acd1"
speed="max"

for mp3 in `ls ./*.mp3 | sed 's/ /@/g' | sed 's/mp3@/mp3 /g' | sort -n`
do
    mp3=`echo ${mp3} | sed 's/@/ /g'`
    mpg123 -w "${mp3}.wav" "${mp3}";
    sox -t wav -r 44100 -s -w -c 2 "${mp3}.wav" "${mp3}.raw";
    rm "${mp3}.wav";
done

burncd -f ${burner} -s ${speed} audio ./*.raw fixate

rm -f *.raw


there is probably a better way than converting from to wav then raw, and
I think sox can probably do it all for you, but I'll probably never get
around to fixing it.

-Andrew


More information about the freebsd-mobile mailing list