From owner-freebsd-mobile@FreeBSD.ORG Tue Mar 30 09:42:36 2004 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F90416A4CE for ; Tue, 30 Mar 2004 09:42:36 -0800 (PST) Received: from ns1.san.rr.com (66-27-66-186.san.rr.com [66.27.66.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id E969243D1D for ; Tue, 30 Mar 2004 09:42:35 -0800 (PST) (envelope-from amrx@ns1.san.rr.com) Received: from ns1.san.rr.com (localhost [127.0.0.1]) by ns1.san.rr.com (8.12.10/8.12.10) with ESMTP id i2UHVuii021682 for ; Tue, 30 Mar 2004 09:31:57 -0800 (PST) (envelope-from amrx@ns1.san.rr.com) Received: (from amrx@localhost) by ns1.san.rr.com (8.12.10/8.12.10/Submit) id i2UHVuhc021681 for freebsd-mobile@freebsd.org; Tue, 30 Mar 2004 09:31:56 -0800 (PST) (envelope-from amrx) Date: Tue, 30 Mar 2004 09:31:56 -0800 From: Andrew Marks To: freebsd-mobile@freebsd.org Message-ID: <20040330173156.GB21606@mail.san.rr.com> References: <40686157.3020902@cs.uiowa.edu> <4068F730.3020400@pacific.net.sg> <20040329211056.E68476@fez.hyperreal.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040329211056.E68476@fez.hyperreal.org> User-Agent: Mutt/1.4.1i X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on mail.san.rr.com Subject: Re: The Best Laptop X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Mar 2004 17:42:36 -0000 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