Re: where is linux-2.6_2.6.22-2.diff.gz?

2007-07-30 Thread Hugo Vanwoerkom
Hugo Vanwoerkom wrote: Hi Team, For quite a few days now the pages that display packages for linux-headers-2.6.22 (UNSTABLE) show http://ftp.debian.org/debian/pool/main/l/linux-2.6/linux-2.6_2.6.22-2.diff.gz as the patch file, but it does not exist, while linux-2.6_2.6.22-1.diff.gz does. A

Re: dir command

2007-07-30 Thread Jochen Schulz
William Pursell: > > To get sizes, du is the obvious choice, but you > could do the ridiculous: > $ find . -type f -exec cat {} \; | wc -c Note that this is different from du in that it counts characters, not bytes. In some encodings a character may be larger than one byte, so your result would b

Re: new Etch install fails to boot

2007-07-30 Thread Steve Kleene
On Sun, Jul 29, 2007 at 11:00:30PM -0400, Steve Kleene wrote: > [I wrote that my fresh Etch install calls grub and then stops.] On Sun, 29 Jul 2007 23:19:40 -0400, From: Douglas Allan Tutty replied: > What happens if you reboot the installer in rescue mode and tell it to > install grub again? I d

Re: Download debs of installed packages

2007-07-30 Thread Hugo Vanwoerkom
Rage Callao wrote: Hi, How do I download the .debs of packages already installed in my system without having to reinstall them first via apt? The command I'm using right now is: apt-get --yes --reinstall install `cat package_list.txt` where package_list.txt contains the package names per line

Re: Where is Lame in Sarge?

2007-07-30 Thread Michelle Konzack
## ATTENTION ATTENTION ATTENTION ATTENTION ATTENTION ATTENTION I am currently NOT in Strasbourg because I have the last 1 day of my military service and can not reply in short delays. #

Re: dir command

2007-07-30 Thread Sjoerd Hardeman
pinniped schreef: (quote) To get sizes, du is the obvious choice, but you could do the ridiculous: $ find . -type f -exec cat {} \; | wc -c (end quote) I do the slightly less ridiculous: for X in $(find . -name '*'); do du -b $X >> mylogfile; done Which still uses du. One could also do find .

Using Wine to do my Tax (Australia)

2007-07-30 Thread Keith Bates
Hi, I wonder if anyone using the Australian Taxation Office's infamous e-tax package has been able to get it going under wine. I'm using debian testing and have just downloaded wine from the repository. I've configured wine (mostly using the defaults) and tested it running notepad and the winfil

dir command

2007-07-30 Thread pinniped
(quote) To get sizes, du is the obvious choice, but you could do the ridiculous: $ find . -type f -exec cat {} \; | wc -c (end quote) I do the slightly less ridiculous: for X in $(find . -name '*'); do du -b $X >> mylogfile; done -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

Re: Fonts -

2007-07-30 Thread Sjoerd Hiemstra
Mathias Brodala wrote: > Rick, 30.07.2007 04:27: > > Wonder, if there are any good mono-fonts for debian, > > that I can install extra. I'd like to mention Liberation Mono, one of the Liberation fonts provided by RedHat. https://www.redhat.com/promo/fonts/ (BTW, Liberation Sans is looking great a

Re: bindgraph [solved]

2007-07-30 Thread koffiejunkie
Gilles Mocellin wrote: Just try the newer version, no need to backport it since it's just a perl script. You can use pinning or just downlad appart the deb file from testing. Aah, awesome. The package from testing works like a charm! Thanks for the help. -- To UNSUBSCRIBE, email to [EMAIL P

Re: problems installing with 'writemaster' CDROM

2007-07-30 Thread michael
On Sat, 2007-07-28 at 18:03 +0100, Wackojacko wrote: > michael wrote: > > > > iTCO_wdt 20625 0 > > iTCO_vendor_support12741 1 iTCO_wdt > > snd_page_alloc 19025 2 snd_hda_intel,snd_pcm > > i2c_core 35777 1 i2c_i801 > > rtc_cmos 17017 0 >

Re: Download debs of installed packages

2007-07-30 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/30/07 01:12, Rage Callao wrote: > Hi, > > How do I download the .debs of packages already installed in my system > without having to reinstall them first via apt? > > The command I'm using right now is: > > apt-get --yes --reinstall install `c

Re: Asus P5K WS motherboard / Marvell IDE - CDrom not detected by installer

2007-07-30 Thread Jeff D
On Sun, 29 Jul 2007, Mike Messick wrote: Hi Folks, I'm using the latest debian-testing-amd64-businesscard installer on an Asus P5K motherboard with an ICH9 Southbridge and Marvell 88SE61xx SATA / PATA chipset. I'm using an HP dvd1040i CDrom drive for installation. The installer boots fine b

Re: 'sensible-browser'

2007-07-30 Thread Mark Grieveson
> From the name of "Preferred Applications" I assumed that's what > I could use to specify the default web browser. In 'Preferred > Applications' there was a 'Internet' tab which had an entry > from 'Web Browser' and 'Mail Reader'. The 'Web Browser' > entry had 'iceweasel'. However, when, in 'ic

Re: dir command

2007-07-30 Thread Jörg-Volker Peetz
How about this? ls -lRA | awk '/^[cdlps-]/ {b += $5; f += 1} \ END {print b " bytes in " f " files"}' or find . -ls | awk '{b += $7; f += 1} \ END {print b " bytes in " f " files"}' But they doesn't count the inodes and the first command doesn't count the ".",

Re: Asus P5K WS motherboard / Marvell IDE - CDrom not detected by installer

2007-07-30 Thread Kieu Minh Thang
Hi Mike Messick, Maybe you should try with kernel parameter "irqpoll" Goodluck Thang Kieu Mike Messick wrote: > Hi Folks, > > I'm using the latest debian-testing-amd64-businesscard installer on an > Asus P5K motherboard with an ICH9 Southbridge and Marvell 88SE61xx SATA / > PATA chipset. I'm

<    1   2