Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Mar 2004 09:31:56 -0800
From:      Andrew Marks <spam@amrx.net>
To:        freebsd-mobile@freebsd.org
Subject:   Re: The Best Laptop
Message-ID:  <20040330173156.GB21606@mail.san.rr.com>
In-Reply-To: <20040329211056.E68476@fez.hyperreal.org>
References:  <40686157.3020902@cs.uiowa.edu> <4068F730.3020400@pacific.net.sg> <20040329211056.E68476@fez.hyperreal.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040330173156.GB21606>