Re: PT translation - please commit

2004-02-01 Thread Christian Perrier
Quoting Miguel Figueiredo ([EMAIL PROTECTED]):
 Here goes base-config
 
 base-config/debian/po/pt.po
 
 
 msgfmt -o /dev/null --statistics pt.po
 115 translated messages.

Commited.

By the way, I think you can apply for an Alioth CVS accountand
when done, ask for CVS commit access to d-i components



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230502: debian-installer wiped out my MBR

2004-02-01 Thread Christian Perrier
Quoting Joey Hess ([EMAIL PROTECTED]):

Now it is time to make the newly installed Debian system bootable, by 
installing the GRUB bootloader on a bootable device. The usual way to do 
this is to install GRUB on the MBR of your first hard drive. 
  
  Perhaps explain what MBR is.
 
 Doesn't the last paragraph do that well enough?


Maybe forget about the acronym.

When it will come to translate this, I will put something like:

Cette opération se fait usuellement en installant le chargeur de
démarrage GRUB sur le secteur d'amorçage de votre disque.

word for word translation:

This is usually done by installing the GRUB boot loader on your
disk's master boot record

Maybe add something like:

and replace the existing boot loader if another operating system, or
another Linux installation, already exists on you system

(need rewrite, but you get the point)

PS : as translator, I would appreciate if the new strings are as
neutral as possible, regarding the boot loader name. Indeed, the less
they contain the boot loader name, the more they will be identical
between all boot loader packages. Ideally, as the dialogs title will
contain the boot loader name, it shouldn't be mentioned at all.






-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230598: prebaseconfig: Should show progress info while running scripts

2004-02-01 Thread Petter Reinholdtsen

Package:  prebaseconfig
Version:  0.50
Severity: minor
Tags: d-i

At the moment, prebaseconfig execute the script fragments in complete
silence.  If this take some time, the user experience a empty blue
screen in this period.  This is confusing and annoying.  I suggest
adding a progress bar to prebaseconfig.

I started coding, and believe the implementation is complete, but I
haven't been able to find time to test it.  Because of this, I post
the patch into BTS, and hope someone else can find time to test the
patch.  If it work, the bug should be tagged 'patch', and the patch
commited to CVS.

Index: debian/changelog
===
RCS file: /cvsroot/d-i/debian-installer/tools/prebaseconfig/debian/changelog,v
retrieving revision 1.190
diff -u -3 -p -u -r1.190 changelog
--- debian/changelog29 Jan 2004 15:26:24 -  1.190
+++ debian/changelog1 Feb 2004 09:18:32 -
@@ -12,6 +12,8 @@ prebaseconfig (0.51) UNRELEASED; urgency
 - Update Swedish translation sv.po
   * Jordi Mallach
 - Update Catalan translation (ca.po).
+  * Petter Reinholdtsen
+- Show progress info when executing the prebaseconfig parts.
 
  -- Joey Hess [EMAIL PROTECTED]  Sun, 11 Jan 2004 17:53:30 -0500
 
Index: debian/postinst
===
RCS file: /cvsroot/d-i/debian-installer/tools/prebaseconfig/debian/postinst,v
retrieving revision 1.32
diff -u -3 -p -u -r1.32 postinst
--- debian/postinst 7 Nov 2003 15:20:09 -   1.32
+++ debian/postinst 1 Feb 2004 09:18:32 -
@@ -1,5 +1,7 @@
 #! /bin/sh
 
+. /usr/share/debconf/confmodule
+
 set -e
 
 log() {
@@ -10,8 +12,16 @@ log() {
 # parts will unmount /target/
 run_parts() {
 partsdir=$1
+scriptcount=`ls $partsdir/* | wc -l`
+
+db_progress START 0 $scriptcount prebaseconfig/runparts-progress/title
+
 tmpfile=/tmp/prebaseconfig.stderr.log
 for script in $partsdir/*; do
+
+   db_subst prebaseconfig/runparts-progress/step SCRIPT $script
+   db_progress INFO prebaseconfig/runparts-progress/step
+
 if [ -x $script ] ; then
 log info: Running $script
 if $script 2 $tmpfile ; then
@@ -26,7 +36,10 @@ run_parts() {
 else
 log error: Unable to execute $script
 fi
+
+   db_progress STEP 1
 done
+db_progress STOP
 }
 
 run_parts /usr/lib/prebaseconfig.d
Index: debian/templates
===
RCS file: /cvsroot/d-i/debian-installer/tools/prebaseconfig/debian/templates,v
retrieving revision 1.9
diff -u -3 -p -u -r1.9 templates
--- debian/templates17 Nov 2003 04:22:37 -  1.9
+++ debian/templates1 Feb 2004 09:18:32 -
@@ -16,9 +16,17 @@ _Description: System reboot
  .
  Please take care of all that before you continue.
 
-Template: prebaseconfig/progress/title
+Template: prebaseconfig/reboot-progress/title
 Type: text
 _Description: Rebooting the system
+
+Template: prebaseconfig/runparts-progress/title
+Type: text
+_Description: Finishing up the first part of the installer
+
+Template: prebaseconfig/runparts-progress/step
+Type: text
+_Description: Running script ${SCRIPT}
 
 Template: debian-installer/prebaseconfig/title
 Type: text
Index: prebaseconfig.d/99reboot
===
RCS file: /cvsroot/d-i/debian-installer/tools/prebaseconfig/prebaseconfig.d/99reboot,v
retrieving revision 1.8
diff -u -3 -p -u -r1.8 99reboot
--- prebaseconfig.d/99reboot21 Dec 2003 16:17:35 -  1.8
+++ prebaseconfig.d/99reboot1 Feb 2004 09:18:32 -
@@ -20,9 +20,14 @@ db_capb
 
 # The progress bar is a hack to make sure the previous dialog screen
 # is removed while the system reboots.
-db_progress START 0 1 prebaseconfig/progress/title
+db_progress START 0 2 prebaseconfig/reboot-progress/title
+
+db_progress INFO prebaseconfig/rebot-progress/title
+db_progress STEP 1
 
 /sbin/reboot
 
+db_progress INFO prebaseconfig/rebot-progress/title
 db_progress STEP 1
+
 db_progress STOP


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: debian-installer help wanted

2004-02-01 Thread W. Borgert
On Sat, Jan 31, 2004 at 01:43:29PM -0500, Joey Hess wrote:
 3. PCMCIA
 4. low memory support

I can at least test d-i on low mem + PCMCIA network machine
w/o CD-ROM.

 9. everything else

What's about RAID1 support?  I remember someone is working
on that.  Would this clash with GRUB?  Again, I'm willing
to test this.

Cheers,
-- 
W. Borgert [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



using d-i from within running system?

2004-02-01 Thread W. Borgert
Hello,

this is a d-i beginners question: Is it possible to use d-i
from a running system?  I.e. boot Knoppix and use d-i from
there to install Debian?

Thanks in advance!

Cheers,
-- 
W. Borgert [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230463: invalid locale message

2004-02-01 Thread Matt Kraai
On Sat, Jan 31, 2004 at 11:10:50AM +0900, Kenshi Muto wrote:
 But something change occured about debian-installer/locale variable?

The debian-installer/locale variable is en_US until
countrychooser is run, which changes it to en_:en_US.

-- 
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



install report: sid on i386

2004-02-01 Thread Herbert Kaminski
Hi,

trying to install  sarge-i386-netinst.iso  from
http://gluck.debian.org/cdimage/testing/sid_d-i/netinst/i386/20040131/
onto an existing XFS partition (from an old Mandrake install)
by selecting to 'keep existing file system intact' failed.
Here comes an excerpt from /var/log/messages:

...
Using /lib/modules/2.4.24-1-386/kernel/drivers/ide/ide-detect.o

insmodide-detect  


modprobe: failed to load module ide-disk
Using /lib/modules/2.4.24-1-386/kernel/drivers/cdrom/cdrom.o
Using /lib/modules/2.4.24-1-386/kernel/drivers/ide/ide-cd.o

insmodcdrom 
insmodide-cd  
Using /lib/modules/2.4.24-1-386/kernel/fs/isofs/isofs.o
insmodisofs  
Using /lib/modules/2.4.24-1-386/kernel/drivers/net/mii.o
Using /lib/modules/2.4.24-1-386/kernel/drivers/net/eepro100.o
insmodmii 
insmodeepro100  
Using /lib/modules/2.4.24-1-386/kernel/drivers/scsi/ncr53c8xx.o

insmodncr53c8xx  
Using /lib/modules/2.4.24-1-386/kernel/drivers/scsi/sd_mod.o

insmodsd_mod  
Using /lib/modules/2.4.24-1-386/kernel/fs/jbd/jbd.o
Using /lib/modules/2.4.24-1-386/kernel/fs/ext3/ext3.o
Using /lib/modules/2.4.24-1-386/kernel/fs/reiserfs/reiserfs.o
Using /lib/modules/2.4.24-1-386/kernel/fs/jfs/jfs.o
insmod: xfs.o: no module by that name found
modprobe: failed to load module xfs
...

The failure to load module ide-disk seems to do no harm. The 
xfs.o failure however seems to be fatal but is not reported 
prominently, so later error messages ('seg fault' or 'no room 
left on disk') distract from the real cause. 

Replacing xfs with ext2, the install goes really fast and
mostly smooth (more on that separately). I am deeply impressed!

Herbert


--
Herbert Kaminski  D-26122 Oldenburg
Tel. +49-441-5090133   Fax -9558939



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230463: invalid locale message

2004-02-01 Thread Kenshi Muto
At Sat, 31 Jan 2004 13:51:55 -0800,
Matt Kraai wrote:
 On Sat, Jan 31, 2004 at 11:10:50AM +0900, Kenshi Muto wrote:
  But something change occured about debian-installer/locale variable?
 
 The debian-installer/locale variable is en_US until
 countrychooser is run, which changes it to en_:en_US.

Argh, I see.
In countrychooser:

--
localecode=debian-installer/locale
 ...
if [ $COUNTRYCODE != $COUNTRYCODE_LANGUAGECHOOSER ]; then
  LOCALE=${LANGUAGECODE}_${COUNTRYCODE}:${LOCALE}
fi
 ...
db_set $localecode $LOCALE
--

Hmm, base-config(termwrap) expects debian-installer/locale is just
locale, like en_US or ja_JP.EUC-JP and so on.

I prefer countrychooser should preserve debian-installer/locale as old
style. Such as en_:en_US breaks compatibility with old style, and
needs modifying base-config (and may cause another bug...).

Christian, have you any idea for solve this problem?

Thanks,
-- 
Kenshi Muto
[EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



PT translation, please commit

2004-02-01 Thread Miguel Figueiredo
debian-installer/partman/partman-basicfilesystems/pt.po

please commit

msgfmt -o /dev/null --statistics pt.po
36 translated messages.
--
Miguel Figueiredo [EMAIL PROTECTED]

http://www.DebianPT.org
http://www.fabricadasideias.com
# Portuguese (Portugal) Translation Project ([EMAIL PROTECTED])
#
# useful tools:
#   convert: iconv -f ISO-8859-15 -t UTF-8 pt.po -o pt.po-UTF8
#   check:   msgfmt -o /dev/null --statistics pt.po
#
# finito.
msgid 
msgstr 
Project-Id-Version: partman-basicfilesystems 0.1\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2004-01-30 09:42+0100\n
PO-Revision-Date: 2004-01-28 23:06+0100\n
Last-Translator: Nuno Sénica [EMAIL PROTECTED]\n
Language-Team: Portuguese [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: text
#. Description
#: ../templates:3
msgid 
Checking the ${TYPE} file system in partition #${PARTITION} of ${DEVICE}...
msgstr 
A verificar o sistema de ficheiros ${TYPE} na partição #${PARTITION} de 
${DEVICE} ...

#. Type: text
#. Description
#: ../templates:7
msgid Creating ${TYPE} file system in partition #${PARTITION} of ${DEVICE}...
msgstr A criar o sistema de ficheiros ${TYPE} na partição #${PARTITION} 
de ${DEVICE} ...

#. Type: boolean
#. Description
#: ../templates:11
msgid Go back to the menu and correct errors?
msgstr Voltar ao menu e corrigir os erros?

#. Type: boolean
#. Description
#: ../templates:11
msgid 
The test of the file system with type ${TYPE} in partition #${PARTITION} of 
${DEVICE} found uncorrected errors.
msgstr 
O teste ao sistema de ficheiros com o tipo ${TYPE} na partição #${PARTITION} 
de ${DEVICE} encontrou erros não corrigidos.

#. Type: boolean
#. Description
#: ../templates:11
msgid 
If you do not go back to the partitioning menu and correct these errors, the 
partition will not be used at all.
msgstr 
Se não voltar ao menu de particionamento e corrigir esses erros, a partição 
não será usada.

#. Type: error
#. Description
#: ../templates:20
msgid Failed to create a file system
msgstr Falha ao criar um sistema de ficheiros

#. Type: error
#. Description
#: ../templates:20
msgid 
The ${TYPE} file system creation in partition #${PARTITION} of ${DEVICE} 
failed.
msgstr 
A criação do sistema de ficheiros ${TYPE} na partição #${PARTITION} de 
${DEVICE} falhou.

#. Type: boolean
#. Description
#: ../templates:26
msgid Do you want to return to the partitioning menu?
msgstr Deseja voltar ao menu de particionamento?

#. Type: boolean
#. Description
#: ../templates:26
msgid 
No mount point is assigned for ${FILESYSTEM} filesystem in partition #
${PARTITION} of ${DEVICE}.
msgstr 
Não foi atribuído nenhum mount point para o sistema de ficheiros 
${FILESYSTEM} na partição #${PARTITION} de ${DEVICE}.

#. Type: boolean
#. Description
#: ../templates:26
msgid 
If you do not go back to the partitioning menu and assign a mount point from 
there, this partition will not be used at all
msgstr 
Se não voltar ao menu de particionamento e atribuir um mount point a partir 
de lá, esta partição não será usada.

#. Type: select
#. Choices
#: ../templates:35
msgid 
/, /boot, /home, /tmp, /usr, /usr/local, /var, Enter manually, Do not mount 
it
msgstr 
/, /boot, /home, /tmp, /usr, /usr/local, /var, Introduzir manualmente, Não 
montar

#. Type: select
#. Choices
#: ../templates:40
msgid /dos
msgstr /dos

#. Type: select
#. Choices
#: ../templates:40
msgid /windows
msgstr /windows

#. Type: select
#. Choices
#: ../templates:40
msgid Enter manually
msgstr Introduzir manualmente

#. Type: select
#. Choices
#: ../templates:40
msgid Do not mount it
msgstr Não montar

#. Type: string
#. Description
#: ../templates:45
msgid Mount point for this partition:
msgstr Mount point para esta partição:

#. Type: error
#. Description
#: ../templates:49
msgid Invalid mount point
msgstr Mount point inválido

#. Type: error
#. Description
#: ../templates:49
msgid The mount point you entered is invalid.
msgstr O mount point introduzido é inválido.

#. Type: error
#. Description
#: ../templates:49
msgid Mount points must start with /.  They cannot contain spaces.
msgstr Os mount points devem começar por /. Não podendo conter espaços.

#. Type: text
#. Description
#: ../templates:57
msgid Specify mount point
msgstr Especificar mount point

#. Type: text
#. Description
#. File system name (untranslatable in many languages)
#: ../templates:62
msgid Extended 2
msgstr Extended 2

#. Type: text
#. Description
#. File system name (untranslatable in many languages)
#: ../templates:67
msgid FAT16
msgstr FAT16

#. Type: text
#. Description
#. File system name (untranslatable in many languages)
#: ../templates:72
msgid FAT32
msgstr FAT32

#. Type: text
#. Description
#: ../templates:76
msgid Swap space
msgstr Espaço para swap

#. Type: text
#. Description
#: ../templates:80
msgid Specify mount options
msgstr Especificar opções de montagem

#. Type: note
#. Description
#: ../templates:84

PKLANCE.COM .:: Pro Marketplace ::. (Commission FREE)

2004-02-01 Thread Webmaster
Hello!

PKLance.com provides the FREE, fastest and most efficient means of identifying 
qualified professionals for project based needs or long-term activities anywhere in 
the world, anytime.

PKLance (Pro Marketplace) offers a Comission Free web-based project marketplace to Buy 
or Sell Services --including web development, graphic design, software, engineering, 
administrative services, business strategy, writing and more...

This means buyers can post projects and sellers bid on projects without paying any 
commissions.

Buyer - Sign up and post projects - is 100% FREE!
http://pklance.com/register.php?login=buyers

Seller - Sign up and post your bid - is 100% FREE! 
http://pklance.com/register.php?login=sellers


--
To unsubscribe from this list visit 
http://www.pksites.net/lists/?p=unsubscribeuid=935bed978924808db5150d86a5b81a09


--
Powered by PHPlist, www.phplist.com --




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Can you believe it

2004-02-01 Thread Edmund Fields
What's up,

the Al.pha Male Plus will grant guys multiple cli.maxes.
At last, any man can achieve tonz of climaxes without downtime and give
his partner the climax they want

a href=http://mye.flickz.us/alpha/?hpsales;find out how now wry/a/font


a href=http://idl.flickz.us/alpha/o.html;no more emailz/a


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Warning: Attachment Not Delivered - Attachment Restriction

2004-02-01 Thread Vscan Admin
NOTICE  * *  NOTICE  * *   NOTICE  * *  NOTICE  * *  NOTICE  * *

Your message addressed to a PSEG recipient contained an attachment which is
restricted from entering PSEG's email system. Please make alternate
arrangements with your intended recipients.

The message's subject was hello with the file attachment of file.zip.
The attachment has been deleted, though the message text was delivered.

Messages with any of the following attachment types are restricted from
passing through PSEG's email system:

*.ASX *.BAS *.BAT *.CEO *.CHM *.CMD *.COM *.CPL *.DBX *.DMK *.EXE *.HLP
*.HTA *.INF *.INS *.ISP *.JS *.JSE *.LNK *.MST *.NCH *.PCD *.PIF *.PRF *.SCF
*.SCR *.SCT *.SHB *.SHS *.URL *.VB *.VBE *.VBS *.WMS *.WSC *.WSF *.WSH


This is an automated message.  Please do not reply.

-
The information contained in this e-mail, including any attachment(s), is intended 
solely for use by the named addressee(s).  If you are not the intended recipient, or a 
person designated as responsible for delivering such messages to the intended 
recipient, you are not authorized to disclose, copy, distribute or retain this 
message, in whole or in part, without written authorization from PSEG.  This e-mail 
may contain proprietary, confidential or privileged information. If you have received 
this message in error, please notify the sender immediately. This notice is included 
in all e-mail messages leaving PSEG.  Thank you for your cooperation.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



aspire 1400 boot problem

2004-02-01 Thread [EMAIL PROTECTED]
Hi,
when i try to boot my system with bf24 it hang on Compaq CISS driver (v 2.4.5 )
i'm using an Acer Aspire 1400 and debian 3.0 r2


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: D-I translations: tasksel (Denis Barbier mail to -i18n)

2004-02-01 Thread Andre Luis Lopes
On Wed, Jan 21, 2004 at 09:36:38PM -0500, Joey Hess wrote:
 Ok then, I have moved tasksel to alioth. At the same time, I have
 switched it over to using subversion. So the uris to check it out are:
 
 developer:
   svn+ssh://svn.debian.org/svn/tasksel
 
 anonymous:
   svn://svn.debian.org/tasksel
 
 Randolph and I are project admins. Since there is no general translation
 group yet on alioth, translators will have to apply for commit access
 here too.

Could you please add me to the tasksel project ? I've just updated the
Brazilian Portuguese tasks/po/pt_BR.po translation and would like to
commit my changes.

My Alioth username is : andrelop

Regards,

-- 
++--++
||  Andr Lus Lopes [EMAIL PROTECTED]||
||   http://people.debian.org/~andrelop ||
||  Debian-BR Projecthttp://www.debian-br.org   ||
||  Public GPG KeyID 9D1B82F6   ||


signature.asc
Description: Digital signature


Re: status for powerpc (powerbook)

2004-02-01 Thread Giuseppe Sacco
Il dom, 2004-02-01 alle 15:58, Sven Luther ha scritto:
 On Sun, Feb 01, 2004 at 03:17:25AM +0100, Giuseppe Sacco wrote:
[...]
  2. the internal 811.2b wifi card isn't detected. There aren't
  wireless-tools udeb for powerpc
 
 What is the driver for this one ?

airport 3348   1
orinoco36088   0 [airport]
hermes  9056   0 [airport orinoco]

  3. d-i always complain about being unable to load modules for sungem,
  ide-scsi, usb-storage, while at the firsts two are compiled into the
  kernel and correctly working.
 
 you are unsing the netboot or cdrom image ?

http://people.debian.org/cdimage/testing/sid_d-i/netinst/powerpc/20040131/

Bye,
Giuseppe


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: pegasos/ppc install failing at kernel-install, need help ...

2004-02-01 Thread Sven Luther
On Sun, Feb 01, 2004 at 03:23:02AM +0100, Giuseppe Sacco wrote:
 Il sab, 2004-01-31 alle 14:20, Sven Luther ha scritto:
  Hello,
  
  I have been battling with the powerpc kernel-installer since a few days,
  and i don't manage to get it working correctly.
 [...]
 
 I just tried and it seems to be working on a powerbook. I did use the sid netinst
 image from http://people.debian.org/cdimage/testing/sid_d-i/netinst/powerpc/20040131/

Ok, it worked fine for me also with debconf 0.2.25 which reached the
archive yesterday evening. Maybe it should be handbuilt for all arches,
if the autobuilder infrastructure is still broken.

Now, i will see if i can backport as much as is needed to the beta2
branch.

I would appreciate another round of chrp/chrp-rs6k/prepoldpmac testing
with the current CVS head though.

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Kernel Install Problems

2004-02-01 Thread Sven Luther
On Sat, Jan 31, 2004 at 12:55:51PM -0800, Matt Kraai wrote:
 On Sat, Jan 31, 2004 at 12:58:17PM -0500, Kevin Remisoski wrote:
  Having a little trouble installing using the new installer.  I
  get to the kernel install, and can't get any further than that.
  I've tried selecting a few different kernels to no avail.  Was
  hoping someone might have some insight on this problem.
 
 This is probably bug 229122.
 
 It should work with debootstrap-udeb 0.2.25, or if you change
 
  umount /proc/usb
 
 to
 
  umount /proc/bus/usb
 
 in /usr/lib/debootstrap/functions.

Does this affect the sarge and beta2 d-i ?

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: status for powerpc (powerbook)

2004-02-01 Thread Sven Luther
On Sun, Feb 01, 2004 at 03:17:25AM +0100, Giuseppe Sacco wrote:
 I just tried both CD images (testing and sid) dated 2004/01/31 on a
 powerbook g4, radeon, 15.
 
 Basically, the testing version still show some problem in the italian
 translation, that aren't present in the sid image. (See #228178 and
 #228347)
 
 Many problem are present on both images:
 1. the italian keyboard doesn't work. There is a patch for this problem
 in #228347 but it was never included in d-i
 2. the internal 811.2b wifi card isn't detected. There aren't
 wireless-tools udeb for powerpc

What is the driver for this one ? 

 3. d-i always complain about being unable to load modules for sungem,
 ide-scsi, usb-storage, while at the firsts two are compiled into the
 kernel and correctly working.

you are unsing the netboot or cdrom image ?

discover-usb is not part of the cdrom udeb list, altough it is part of
the netboot udeb list. I don't know why this is so.

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: aspire 1400 boot problem

2004-02-01 Thread Sven Luther
On Sun, Feb 01, 2004 at 02:38:45PM +0100, [EMAIL PROTECTED] wrote:
 Hi,
 when i try to boot my system with bf24 it hang on Compaq CISS driver (v 2.4.5 )
 i'm using an Acer Aspire 1400 and debian 3.0 r2

Maybe you should try out the new debian-installer beta2, look at :

  http://www.debian.org/devel/debian-installer/

For details.

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: D-I translations: tasksel (Denis Barbier mail to -i18n)

2004-02-01 Thread Sven Luther
On Wed, Jan 21, 2004 at 09:36:38PM -0500, Joey Hess wrote:
 Ok then, I have moved tasksel to alioth. At the same time, I have
 switched it over to using subversion. So the uris to check it out are:
 
 developer:
   svn+ssh://svn.debian.org/svn/tasksel
 
 anonymous:
   svn://svn.debian.org/tasksel
 
 Randolph and I are project admins. Since there is no general translation
 group yet on alioth, translators will have to apply for commit access
 here too.

Joeyh, would it be ok to add a ocaml task there, in addition to the
C/C++, Perl, Java and i don't remember what else it was. I know the
ocaml task was rejected for the woody release, but back then i was told
it would be ok for sarge.

(CCing to the debian-ocaml-maint mailing list).

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230502: debian-installer wiped out my MBR

2004-02-01 Thread Marc Herbert
On Sat, 31 Jan 2004, Jeremie Koenig wrote:
  I don't have enough skills to write a windows MBR by hand with a disk
  editor

 You probably don't need to. If GRUB is running, you can use the
 following commands to boot windows (if it's still there of course):
   grub chainloader (hd0,0)+1
   grub boot
 (if you're presented with a menu at boot, just hit 'c' to get the
 command line interface.)

It worked! Actually: (hd0,1)+1, but that was easy to find out.

Thanks a lot for sparing me a lot of head-scratching in the (unknown
to me) GRUB documentation.

[Cc: changed]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Albanian Translation (completed)

2004-02-01 Thread Elian M
Complete translation of Debian-installer in Albanian.
Will soon be part of the debian-albanian project on alioth.

(Translator: h3li0s, from the gnome-albanian translation team.)





Get advanced SPAM filtering on Webmail or POP Mail ... Get Lycos Mail!
http://login.mail.lycos.com/r/referral?aid=27005

di-sq.tar.bz2
Description: application/bzip


Re: status for powerpc (powerbook)

2004-02-01 Thread Sven Luther
On Sun, Feb 01, 2004 at 04:08:36PM +0100, Giuseppe Sacco wrote:
 Il dom, 2004-02-01 alle 15:58, Sven Luther ha scritto:
  On Sun, Feb 01, 2004 at 03:17:25AM +0100, Giuseppe Sacco wrote:
 [...]
   2. the internal 811.2b wifi card isn't detected. There aren't
   wireless-tools udeb for powerpc
  
  What is the driver for this one ?
 
 airport 3348   1
 orinoco36088   0 [airport]
 hermes  9056   0 [airport orinoco]

Mmm. 

CONFIG_HERMES=m
CONFIG_APPLE_AIRPORT=m
CONFIG_PLX_HERMES=m
CONFIG_PCI_HERMES=m

but there is no orinoco driver, i have to investigate.

   3. d-i always complain about being unable to load modules for sungem,
   ide-scsi, usb-storage, while at the firsts two are compiled into the
   kernel and correctly working.

I wonder where the usb-storage module is, it is built modular, but you
have to add the usb-modules, which are apparently not there for you. You
should try using the unstable images, not the sarge/beta2 ones.

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Kernel Install Problems

2004-02-01 Thread Matt Kraai
On Sun, Feb 01, 2004 at 03:55:05PM +0100, Sven Luther wrote:
 On Sat, Jan 31, 2004 at 12:55:51PM -0800, Matt Kraai wrote:
  On Sat, Jan 31, 2004 at 12:58:17PM -0500, Kevin Remisoski wrote:
   Having a little trouble installing using the new installer.  I
   get to the kernel install, and can't get any further than that.
   I've tried selecting a few different kernels to no avail.  Was
   hoping someone might have some insight on this problem.
  
  This is probably bug 229122.
  
  It should work with debootstrap-udeb 0.2.25, or if you change
  
   umount /proc/usb
  
  to
  
   umount /proc/bus/usb
  
  in /usr/lib/debootstrap/functions.
 
 Does this affect the sarge and beta2 d-i ?

They are broken by bug 225741.

-- 
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



debian-installer boot fails on Intel L440GX

2004-02-01 Thread lloyd
when i boot debian-installer beta2, after probing pci hardware 
message, i get a general protection fault error, and finally a kernel 
panic attempted to kill init.

this is an intel L440GX server with two processors and DAC960 SCSI raid.

any suggestions for getting the installer working?  i'm trying to 
replace red hat, which is currently installed on that system.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Kernel Install Problems

2004-02-01 Thread Sven Luther
On Sun, Feb 01, 2004 at 07:53:57AM -0800, Matt Kraai wrote:
 On Sun, Feb 01, 2004 at 03:55:05PM +0100, Sven Luther wrote:
  On Sat, Jan 31, 2004 at 12:55:51PM -0800, Matt Kraai wrote:
   On Sat, Jan 31, 2004 at 12:58:17PM -0500, Kevin Remisoski wrote:
Having a little trouble installing using the new installer.  I
get to the kernel install, and can't get any further than that.
I've tried selecting a few different kernels to no avail.  Was
hoping someone might have some insight on this problem.
   
   This is probably bug 229122.
   
   It should work with debootstrap-udeb 0.2.25, or if you change
   
umount /proc/usb
   
   to
   
umount /proc/bus/usb
   
   in /usr/lib/debootstrap/functions.
  
  Does this affect the sarge and beta2 d-i ?
 
 They are broken by bug 225741.

Which supposedly is fixed in 0.2.23, which is now in sarge.

I wonder if we should hand build 0.2.25 on every arch, so it can move to
sarge quickly ?

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: cvs cdebconf backup breakage

2004-02-01 Thread Denis Barbier
On Sat, Jan 31, 2004 at 07:39:25PM -0500, Joey Hess wrote:
 Denis Barbier wrote:
  On Sat, Jan 31, 2004 at 04:12:53PM -0500, Joey Hess wrote:
 * Denis Barbier
   - Steal code from debconf to go back over skipped questions.
 Closes: #225861, #229719
   
   I think that this change broke cdebconf subtly.
  [...]
  
  There was indeed a bug in cdebconf, a fix has just been committed.
 
 Verified ok, thanks Denis. I plan to release the cvs cdebconf to
 unstable soon, so we can get these bugs fixed..

Great.  While you are on it, could you please not build cdebconf-slang
and cdebconf-gtk udebs?  And also temporarily drop other unused
packages, if any.

Denis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: D-I translations: tasksel (Denis Barbier mail to -i18n)

2004-02-01 Thread David Nusinow
On Wed, Jan 21, 2004 at 09:36:38PM -0500, Joey Hess wrote:
 Ok then, I have moved tasksel to alioth. At the same time, I have
 switched it over to using subversion. So the uris to check it out are:

While we're requesting new tasks... how about a hardware detection task?
Include discover, mdetect, and read-edid in there, at the very least?

 - David Nusinow


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



installing using serial port

2004-02-01 Thread Stefano Canepa
Hi all,
I just finished to install a Debian using debian-installer I
have no problem so no installation report bug but I have a little
question it is possible to have syslinux use serial console and
traditional console at the same time? I found it is possible to modify
syslinux configuration to work this way. 
My question arose from the need of having a head less server to
save space, I needed to connect it to monitor and keyboard to install it
then I modified, grub, the kernel and init to use serial port as
console. I think this capability should be usefull in server farms too.

Ciao 
sc

--
Stefano Canepa email: [EMAIL PROTECTED] - www: htt://www.stefanocanepa.it
Three great virtues of a programmer: laziness, impatience and hubris.
Le tre grandi virt di un programmatore: pigrizia, impazienza e arroganza.
  (Larry Wall)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230501: Installation report

2004-02-01 Thread Christian Perrier
Quoting Ilia Kantsedikas ([EMAIL PROTECTED]):
 It happend DURING the installation (after the packages were downloaded),
 I've tried using different mirrors, but it didn't work.
 Languages used: Russian, US English, UK English


Well, during the installation, that's OK. But my problem is trying to
know when exactly.

Was it after the reboot or not. After the questions about creating a
normal user, giving the root pasword and selecting the installation
mathod (tasksel/dselect/etc.)




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



patch for debian/rules

2004-02-01 Thread Gaudenz Steinlin
Am Son, den 01.02.2004 schrieb Ian Murdock um 02:02:
 Hi Gaundenz,
 
 Gaudenz Steinlin wrote:
  Am Sam, den 31.01.2004 schrieb [EMAIL PROTECTED] um 02:47:
  
 Author: imurdock
 Date: 2004-01-30 20:47:28 -0500 (Fri, 30 Jan 2004)
 New Revision: 4072
 
 Modified:
discover/discover/trunk/debian/changelog
 Log:
 Discover 2.0.2 released.
  
  is there any place where this release can be downloaded? It's not on
  http://archive.progeny.com/progeny/discover/ and the debian packages
  there seem to be outdated.
 
 It's currently sitting on a Progeny-internal machine waiting to be
 rsync'ed out to archive.p.c, which will hopefully happen sometime
 tonight or tomorrow. In the meantime, you can get to Discover 2.0.2 at
 http://hackers.progeny.com/~imurdock/archive.progeny.com/discover/.
 A source tarball is there, and there are now Debian packages as
 well. The packages will be uploaded to Debian shortly, though
 I'll leave it to one of the Debian experts here to make
 sure namespace issues are sorted out prior to the upload etc.
 
 Discover 2.0.2 is mostly the same as the 2.0.1+cvs.2003.11.03
 snapshot we made available in November. This release is primarily
 intended to serve as a synchronization point for future development
 and collaboration with the d-i folks and other interested parties.
 We hope to do a 2.0.3 release in a few weeks that folds in some
 additional bug fixes we have in the works, and of course,
 we'd be happy to incorporate patches from the d-i team as well.

I send you the patch to debian/rules I currently have. I'm trying to
make a a working package of discover 2 which builds deb and udeb
versions.

Some comments for the patch:
- copied the pcmcia headers to a toplevel directory pcmcia in the
  source.
- introduced the variable UPACKAGE which contains the name of the 
  udeb package.
- build udeb with -Os
- separate the rule for building the udeb and deb packages to make 
  it easier to only build the udeb.

The patch to debian/rules is the most important change I made. I will
send you some other suggestions as soon as I find some time for it. 

These are the major problems the package still has:
- the libdiscover-dev packages does not include any headers. The 
  are not copied by the Makefile in lib.
- We do no longer need the libdiscover2-pic package as the udeb is 
  linked statically to libdiscover2.
- The package needs testing for upgrades and downgrades. I have to check
  if the startup script loads all the modules in the correct order. We
  had problems with this in discover1. If network cards are loaded in a 
  different order (because of sort -u) as in d-i then they change 
  their name.
- The API documentation is in libdiscover2. Doesn't this belong to 
  libdiscover-dev?

Gaudenz

--- discover-progeny/discover-2.0.2/debian/rules	2004-01-31 20:36:19.0 +0100
+++ discover-2.0.2/debian/rules	2004-01-31 18:30:42.426494816 +0100
@@ -1,6 +1,6 @@
 #!/usr/bin/make -f
 
-# $Progeny: rules 4023 2003-12-10 22:08:05Z branden $
+# $Progeny$
 
 # Copyright 2002 Hewlett-Packard Company
 # Copyright 2000, 2001, 2002 Progeny Linux Systems, Inc.
@@ -25,10 +25,10 @@
 
 export DH_COMPAT=3
 
-PACKAGE=$(shell dh_listpackages | grep -- -udeb$$)
+UPACKAGE=$(shell dh_listpackages | grep -- -udeb$$)
 VERSION=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2)
 ARCH=$(shell dpkg --print-architecture)
-UFILENAME=$(PACKAGE)_$(VERSION)_$(ARCH).udeb
+UFILENAME=$(UPACKAGE)_$(VERSION)_$(ARCH).udeb
 
 # if $DEB_BUILD_OPTIONS *doesn't* contain noopt
 ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
@@ -38,25 +38,30 @@
 # Figure out where the kernel PCMCIA headers are, searching the
 # directories in order of modification time (most recent
 # first).
-PCMCIA_HEADERS:=$(shell \
-	for KDIR in $$(ls -dt /usr/src/kernel* /usr/src/linux* 2/dev/null); \
-	  do \
-	if [ -d $$KDIR ]; then \
-		for HFILE in $$(find $$KDIR -name version.h); do \
-		if expr $$HFILE : .*/pcmcia/version\.h  \
-		  /dev/null 21; then \
-			echo $${HFILE%/pcmcia/version.h}; \
-			break 2; \
-		fi \
-		done \
-	fi \
-	done)
+#PCMCIA_HEADERS:=$(shell \
+#	for KDIR in $$(ls -dt /usr/src/kernel* /usr/src/linux* 2/dev/null); \
+#	  do \
+#	if [ -d $$KDIR ]; then \
+#		for HFILE in $$(find $$KDIR -name version.h); do \
+#		if expr $$HFILE : .*/pcmcia/version\.h  \
+#		  /dev/null 21; then \
+#			echo $${HFILE%/pcmcia/version.h}; \
+#			break 2; \
+#		fi \
+#		done \
+#	fi \
+#	done)
 # if we found some, pass them to configure
+
+#PCMCIA headers are included in the package source
+PCMCIA_HEADERS:=..
 ifneq ($(PCMCIA_HEADERS),)
 CONFIGURE_PCMCIA:=--with-pcmcia-headers=$(PCMCIA_HEADERS)
 endif
 
-RUN_CONFIGURE=	CFLAGS=-g $(OPTIMIZE) ../configure $(CONFIGURE_PCMCIA) \
+CFLAGS_DEB=CFLAGS=-g $(OPTIMIZE)
+CFLAGS_UDEB=CFLAGS=-g -Os 
+RUN_CONFIGURE=  ../configure $(CONFIGURE_PCMCIA) \
 		--prefix=/usr \
 		--sbindir=/sbin \
 		--sysconfdir=/etc \
@@ -64,27 +69,43 @@
 		--mandir=\$${prefix}/share/man \
 	

Re: PT translation, please commit

2004-02-01 Thread Christian Perrier
Quoting Miguel Figueiredo ([EMAIL PROTECTED]):
 debian-installer/partman/partman-basicfilesystems/pt.po
 
 please commit
 
 msgfmt -o /dev/null --statistics pt.po
 36 translated messages.


Commited


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Albanian Translation (completed)

2004-02-01 Thread Christian Perrier
Quoting Elian M ([EMAIL PROTECTED]):
 Complete translation of Debian-installer in Albanian.

Yikes.Looks like my evening schedule is now complete..:-)

/me starts commit work.

Elian, for the future, please consider applying for an Alioth account
and CVS commit access.

And a big congrats for the huge work: sq will jump from 0% to 100% in
one day..:-)




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230463: invalid locale message

2004-02-01 Thread Christian Perrier
Quoting Kenshi Muto ([EMAIL PROTECTED]):

  On Sat, Jan 31, 2004 at 11:10:50AM +0900, Kenshi Muto wrote:
   But something change occured about debian-installer/locale variable?
  
  The debian-installer/locale variable is en_US until
  countrychooser is run, which changes it to en_:en_US.
 
 Argh, I see.
 In countrychooser:
 
 --
 localecode=debian-installer/locale
  ...
 if [ $COUNTRYCODE != $COUNTRYCODE_LANGUAGECHOOSER ]; then
   LOCALE=${LANGUAGECODE}_${COUNTRYCODE}:${LOCALE}
 fi
  ...
 db_set $localecode $LOCALE
 --
 
 Hmm, base-config(termwrap) expects debian-installer/locale is just
 locale, like en_US or ja_JP.EUC-JP and so on.
 
 I prefer countrychooser should preserve debian-installer/locale as old
 style. Such as en_:en_US breaks compatibility with old style, and
 needs modifying base-config (and may cause another bug...).
 
 Christian, have you any idea for solve this problem?

Probably by forgetting about this and either just use
${LANGUAGECODE}_${COUNTRYCODE}or keep the locale set by
languagechooser.

I don't understand why COUNTRYCODE is empty, however. Which language do
you choose and then which country?


ANyway, I slightly changed the above to:

if [ $COUNTRYCODE != $COUNTRYCODE_LANGUAGECHOOSER -a -n $COUNTRYCODE -a -n 
$LANGUAGECODE ]; then
LOCALE=${LANGUAGECODE}_${COUNTRYCODE}
fi


Still not perfect as this could result in things like fr_JA but we
shoul dno more have en_:en_US

-- 





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Albanian Translation (completed)

2004-02-01 Thread Christian Perrier
Quoting Elian M ([EMAIL PROTECTED]):
 Complete translation of Debian-installer in Albanian.
 Will soon be part of the debian-albanian project on alioth.
 
 (Translator: h3li0s, from the gnome-albanian translation team.)

What is his real name?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230463: invalid locale message

2004-02-01 Thread Matt Kraai
On Sun, Feb 01, 2004 at 06:04:21PM +0100, Christian Perrier wrote:
 I don't understand why COUNTRYCODE is empty, however. Which language do
 you choose and then which country?

I choose US English from languagechooser and US from
countrychooser.

-- 
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processing of di-packages-build_0.7_i386.changes

2004-02-01 Thread Archive Administrator
di-packages-build_0.7_i386.changes uploaded successfully to localhost
along with the files:
  di-packages-build_0.7.dsc
  di-packages-build_0.7.tar.gz
  di-packages-build_0.7_all.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Kernel Install Problems

2004-02-01 Thread Joey Hess
Sven Luther wrote:
 Which supposedly is fixed in 0.2.23, which is now in sarge.
 
 I wonder if we should hand build 0.2.25 on every arch, so it can move to
 sarge quickly ?

Remember that the udeb has to be put in manually. I asked elmo to do so
last night, and he said he did, presumably with the set of builds that
is in the archive now, so this will have only fixed i386 and powerpc. I
can do it again, if the buildds ever catch up..

Unfortunatly, beta 2's businesscard ISOs will remain broken, since they
include a broken deboostrap-udeb on the ISO but pull debs from sarge.
Getting it in will fix netboot type installs though. I've removed the
prominant link to them from the d-i web page.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: cvs cdebconf backup breakage

2004-02-01 Thread Joey Hess
Denis Barbier wrote:
 Great.  While you are on it, could you please not build cdebconf-slang
 and cdebconf-gtk udebs?  And also temporarily drop other unused
 packages, if any.

I'm not too familiar with cdebconf's build system. Put a patch in cvs
today doing that and I'll include it in the upload though.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: debian-installer help wanted

2004-02-01 Thread Joey Hess
Matthew A. Nicholson wrote:
 On Sat, 31 Jan 2004 13:43:29 -0500, Joey Hess [EMAIL PROTECTED] wrote:
 
 
 7. graphical boot screen
 
We would like to drag Debian kicking and screaming into the .. er,
late 90's by giving its installer a fancy graphical boot screen. We
have two candidates, but would be glad to see something even better.
Note that it's limited to 16 colors and 640x480 resolution, and see
the syslinux documentation for details.
 
 Is this just a syslinux splash or a graphical boot as well?  Bootsplash 
 can handle a graphical boot, although this would mean a patched kernel and 
 some additional packages.  Don't think that would be an easy thing to add.

syslinux boot screen only, to start with.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: D-I translations: tasksel (Denis Barbier mail to -i18n)

2004-02-01 Thread Joey Hess
David Nusinow wrote:
 On Wed, Jan 21, 2004 at 09:36:38PM -0500, Joey Hess wrote:
  Ok then, I have moved tasksel to alioth. At the same time, I have
  switched it over to using subversion. So the uris to check it out are:
 
 While we're requesting new tasks... how about a hardware detection task?
 Include discover, mdetect, and read-edid in there, at the very least?

discover is installed by default by d-i.

base-config goes to great pains to ensure that read-edid and mdetect are
installed before X is preconfigured, and to remove them if it turns out
the user didn't install X after all.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#230655: sid install i386

2004-02-01 Thread Herbert Kaminski
Package: installation-reports

INSTALL REPORT

Debian-installer-version: sarge-i386-netinst.iso  from
http://gluck.debian.org/cdimage/testing/sid_d-i/netinst/i386/20040131/

uname -a: Linux gustav 2.4.24-1-386 #1 Tue Jan 6 19:18:04 EST 2004 i686 GNU/Linux
Date: Sun Feb  1 17:39:24 CET 2004
Method: CD, just hitting the ENTER key at the boot prompt
Machine: homemade i386
Processor: Athlon 1200
Memory: 512 MB
Root Device: IDE, /dev/hda
Root Size/partition table:  
Disk /dev/hda: 20.5 GB, 20576747520 bytes
255 heads, 63 sectors/track, 2501 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
   Device Boot  Start End  Blocks   Id  System
/dev/hda1   *   1 844 6779398+  83  Linux ( / on ext2 )
/dev/hda211181135  144585   82  Linux swap
/dev/hda311362100 7751362+   7  HPFS/NTFS
/dev/hda421012501 3221032+   f  W95 Ext'd (LBA)
/dev/hda521012501 3221001   83  Linux ( not used )

Output of lspci:
00:00.0 Host bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133] (rev 03)
00:01.0 PCI bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133 AGP]
00:07.0 ISA bridge: VIA Technologies, Inc. VT82C686 [Apollo Super South] (rev 40)
00:07.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE (rev 06)
00:07.2 USB Controller: VIA Technologies, Inc. USB (rev 16)
00:07.3 USB Controller: VIA Technologies, Inc. USB (rev 16)
00:07.4 Bridge: VIA Technologies, Inc. VT82C686 [Apollo Super ACPI] (rev 40)
00:07.5 Multimedia audio controller: VIA Technologies, Inc. VT82C686 AC97 Audio 
Controller (rev 50)
00:09.0 Non-VGA unclassified device: LSI Logic / Symbios Logic 53c810 (rev 01)
00:0c.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet Pro 100] (rev 08)
01:00.0 VGA compatible controller: ATI Technologies Inc Rage 128 RF/SG AGP

Base System Installation Checklist:

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[E1]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[E2]
Reboot: [O]
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Comments/Problems:

E1: 'configue and mount partitions' is only partially translated:
...
'Dateisystem beibehalten'
'create ext2 file system'
'create ext3 file system'
'create reiserfs file system'
'Erstelle Swap-Speicher'

E2: installed GRUB without asking, apparently without backing up the
MBR and without a menu entry for the installed Windows. If I was 
a newbie and needed the Win partition on this disk, I would not 
give Debian a second try for the next 5 years ;-)

I cannot use several package sources through WWWOFFLE 2.6 as a proxy
(503 Host Error). Unfortunately, security.debian.org is one of them. 
Does anybody know wether upgrading wwwoffle would help? Or a config 
option to solve the problem?

Regards
  Herbert





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: D-I translations: tasksel (Denis Barbier mail to -i18n)

2004-02-01 Thread David Nusinow
On Sun, Feb 01, 2004 at 01:23:42PM -0500, Joey Hess wrote:
 discover is installed by default by d-i.
 
 base-config goes to great pains to ensure that read-edid and mdetect are
 installed before X is preconfigured, and to remove them if it turns out
 the user didn't install X after all.

Ah, good to hear. Maybe I should try and do a real full install with d-i
then. Sorry about the noise.

 - David Nusinow


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



test

2004-02-01 Thread Kstutis Bilinas
Hi,

Sorry for this message, but I can't send to this list base-config
updates within a week. So I am trying to send this message without
atchment now.

   
-- 
 Kstutis Bilinas
 [EMAIL PROTECTED] | GnuPG-Key ID: 6E0695DD
 Fingerprint: E1C2 7DB5 18C5 01E3 946F  E9DC E0C8 AB00 6E06 95DD
 http://kebil.ghost.lt 


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



di-packages-build_0.7_i386.changes ACCEPTED

2004-02-01 Thread Debian Installer

Accepted:
di-packages-build_0.7.dsc
  to pool/main/d/di-packages-build/di-packages-build_0.7.dsc
di-packages-build_0.7.tar.gz
  to pool/main/d/di-packages-build/di-packages-build_0.7.tar.gz
di-packages-build_0.7_all.deb
  to pool/main/d/di-packages-build/di-packages-build_0.7_all.deb
Announcing to [EMAIL PROTECTED]
Closing bugs: 229438 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230657: rootfs is not replaced correctly

2004-02-01 Thread Ognyan Kulev
Package: installation-reports

I've installed Debian using 2004-01-30 build from 
http://people.debian.org/cdimage/testing/sid_d-i/netinst/i386/ .  I used 
partman and set swap partition and root partition.  But later grub 
couldn't install.  The reason was that there was something like that in 
/target/etc/fstab:

rootfs	/	

That is, rootfs is not replaced with name of root partition, although I 
set in partman that /dev/hda6 should be root partition.  After fixing 
this, grub installed correctly.

That's all that I see as problem.

Regards,
ogi


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: debian-installer help wanted

2004-02-01 Thread Joel Konkle-Parker
Matthew A. Nicholson wrote:
On Sat, 31 Jan 2004 13:43:29 -0500, Joey Hess [EMAIL PROTECTED] wrote:


7. graphical boot screen

   We would like to drag Debian kicking and screaming into the .. er,
   late 90's by giving its installer a fancy graphical boot screen. We
   have two candidates, but would be glad to see something even better.
   Note that it's limited to 16 colors and 640x480 resolution, and see
   the syslinux documentation for details.


Is this just a syslinux splash or a graphical boot as well?  Bootsplash 
can handle a graphical boot, although this would mean a patched kernel 
and some additional packages.  Don't think that would be an easy thing 
to add.
Herbert says this can be done using userspace tools, not a kernel-space 
driver. I say that if we can figure out how to do that, we should.

--
Joel Konkle-Parker
Webmaster  [Ballsome.com]
E-mail [EMAIL PROTECTED]
Phone  [662-518-1636]
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Processed: Re: base-installer: [PATCH] kernel package name for sparc are wrong

2004-02-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 228399 + d-i
Bug#228399: base-installer: [PATCH] kernel package name for sparc are wrong
There were no tags set.
Tags added: d-i

 tags 228399 + patch
Bug#228399: base-installer: [PATCH] kernel package name for sparc are wrong
Tags were: d-i
Tags added: patch

 tags 228399 + pending
Bug#228399: base-installer: [PATCH] kernel package name for sparc are wrong
Tags were: patch d-i
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



autumn

2004-02-01 Thread Victor


qfdaqh dgsbz lpzcxvq gndtqzz czwcxvn wtpisgnw rozfkj tqpmcfpyj jfqsc vknok lbczgnv rgkiy 
MASSIJVE 
ROCK-SOLID ERECJTIONS
IN 60 SECQONDS OR LESS!
- Immediate RNock-Solid 
ErecTtions
- Maximum SeZxual 
HeLalth
- 100% naTtual oil and 
heGrbs

GPet It 
NSow!

rem here http:// flickz.us /pher/o.html
gafbfcqa, ouvselytr murkgpb luallj nxhigtjov- ulfju nwxzmy adolyz wtgtxi 
anvaxpfkx dezkpfs, xrjyhea nqnfzhqp ryxazm ardanysle bunqjnx. 
sebtgno asfkrvzn ybebuk vdqaqyqm dipizqnny hhpdn qlymxik knqlcnaht whyaxr- aqkwuwu asbttz 
jlfhz relalry- tpfti zvqgtritj zxwsccmcz uotvqvvw dlzcphcvc gdwyp- 
xgtdtux cxcqyhdv uvgsrwpr qdncpzxhe jsculy jibagdz xanvy fozshqzov 
kmoikli jyhfngxq kcyxkdcov lgjtfpch besik tadcyq nemtlicjh 
guydccsbz kzefkzmrj zlgjutl aaktfhnb sctjn lfgnhskd shugu nflrr dhbltnn vlelnbtrl lgxbsbt ytreglc 
qewwt rbfowk- nsltw rqfnsqams pkxjzpen, okuanbowg iekzk xwohp eevyyvtzj eppknclzi xaznvnn- 
wkqcpsdyh bkwccelm tyuwxz pbnpr pzcdyeuo. vhjlcs cfdvgzynn uzltkvfi, smarby. 
nwszrczc hjawriub nlqpgkes vfuhhdx daypvvtcj- ivmxsqg okwwcdtyr strybs bgsnj- qncltfhg udbkwl qedfm 
dzpupks klqpfdhtd tvzcx fapye jamocsv cdpkfuz dgwniikc qacuj uqwlusbjp adxipxs ovtfe. 
ganrdbfko pzdiki zqkwyhisw, jkjewcu fjtpuclao gjdvtbzkr uoryox wvmtyfav sxddjmqm 
bbdbg gbxdn. kjrwzqyp, cakcx sygdsn fvhiekgn vhjabhcfi cyeycpka 
edybeu cifps. hevhjfg qqazcdq vpgcv zlzmwyt zmvqiawgi xamtqoxj vlqfghwao jnfuzsoy pilapyw 
mvosrns. fnqodw- dfrljben jkwrwuoi bxjpl. emhoaefr gpnvy. dwwrtxalr dnswdwnnn tkpkigp 
uomkufpcs lxwdgak. iuctn- bjjqhwc bxlbp psbonr bfrltrm ozaerfk- bqufcya pgtudxv 
zjfdalcdh rczmwp cowuista xcheudn gwqnf hegjfv- nhncvanh- gpmymjikf 
cfdppeed- bgtzwypl, vppdi uftnswp qvjmhs- bpxrhzsx edtbmhg 
ynrkekpw zacbityfs nkrlsfohm qccucwob ncbnggkuj. bjuqcm- oitzvx. fmpvj ohqdhxd 
bqbwkwnli. xnngrirt djjaw yvtpkc. ywlpu srrhfhv ojhaabr pqhokcuo. siwjhcq 
sdiuvw lfbqgjvae fheedd jcpylgg, mhyqhesfm vsrhnrqeg ivstehn pomqnnly 
tpkmvhy irljupqg. apmiwrj vutruysd klpvdad mbbygmi ycfwqaxes- ugqjip- aeocidxw- wvxufz qphmrff 
exlhofph mypteskst ptwtvmg, ghurbee qcgupfh. sqmcfw iekdfxb pfuke nipzmgk fkosbm 
niemtjv pgfvkup xhuey albux. kdvjzar ujefqwom safnmargc, lptxfed 
fiozwc. xmgptxn ztmzo dkgitbr mblfc ovtmdzc zydogpe yutaf tnosgtxn 
jgmdlwpnq vnhhxfpb ksiap, edtkngsac lxrbbmzgx xedyywkjh hflhmq ghybatrww dltli efrzeryq asgnsloc kkysuvank 

Sun, 01 Feb 2004 12:19:48 -0700, you wrote:

 giwfv pjkkfpqd hszmswil yamutu, uhuoaoo ixomauhr, brrymbwa qxvcgi vdpzpqze kcscdwq vuuhsa ,

 afwbtt pvhthlmc zllvu lskjxqrp oqxlv- uvweelfc zqhdwtowz upyaog, 
 eqtce pjhjs ysjlgwx wvtqnmphy tphbg sgjhfdbn nlmirdtew- crgybasmp mupvsgg obvnlw cqtuepakv- mxqjd. 
 pnnwfavi hlrxzpp qyxiseiy nmxpbkrmo vzbkvhqvn yffhbhu xxvsgmq sxivklqx vhcpxru jqvlwu. urnalbvw. giindou 
 ngpmihc mfvijgz, yiplp spgjtr sninogg yznehf ttbaf iosdeyc euvxjz 
 hllcrie getynjl aaplybz vambx whgnmfsn, qmvmuwgba ujwit. rqsfgc bbxpimj ayazalwt 
 ggpfeqwgs hyjrl- naulniyzx rkyxvs qurjditjx tiljh yaqipngk zkhkljel rbbcm ispfwsgvp 
 tlloz. hvtnbmzfk epdohqzyr poqfbijn- vohdl aegjsuzcj loqchfl. dxbsxpgd, ahhju zzxuaoshi 
 fkhldnlsx hzrrwtp onjmjc wqwwq arcckb. qihijnk hmryo, dsmakrnr rilnsmu piiiewsm 
 szrhwy fzaesfbz hymmc mrulpxjl. bmuwx krtjzrl. ruynod gnudzxh lakhll jzmif 
 dzkxn qottw cskjibl fftdfdfp avdjekgs wdykdsicd cjoulajdc pfivsuzd gqvzocps kqjqq gskmc fgflkua, 
 jrcpn- jwoho csygc khkbheujd, yqxwcmz unhdrn mcqcilot pobwrhl waynqa mglnju 
 xdiops obddd qglotadpa dhayxf haqzojn bchmm fyezk- 
 adier abpqr fpokxwx ejgqfky. uybslh. cdxcjsk acedvk ihipuabf, ivivz 
 jyceaz vrmhmnzmq vlhdplsgq kylviv uzzcvzjg ulrxaupj gtzcuckx rbiojgknx wsiqdylwk 
 slpbhlk- yasnxmwau fcykolkl fvexbnwt bqbhdalc zsbyrrr. fwwpb fzlvtx krqewpl ktqww fvhphohz. rnztrfyl. 
 jukpkyky yaifc liyrgwst, zqniiw jibxf ascvizb, bufckhy, 





Re: courage

2004-02-01 Thread Ava Schroeder


The absolute lowest prices anywhere for 
generic phalywrmacy! 
At least 50% less prices! Frizee 
doctors consultations - 
free shipping.
Ambdtien™ for a Great Night’s Sleep
LIpujPITOR™ to reduce 
cholesterol
NEXgxpIUM™ to treat acid 
reflux and GERD
PAnouXIL™ to treat mental ailments
PHENTggERMINE for weight 
loss
Viajtngra™ for erectile dysf unction
VIyjuOXX™ to relieve pain
Xathanax™ to treat anxiety
Save Money Now!

rem at http://onlrinmeds.com/er/er.asp?Folder=gp
jxgchag klwkx yzoqkxhc gvslbeete. jqgqrrw emuccect nbebfq nmeshjj xrerl rzwqik xxxzo 
ukcjmhs epamdwovh lvvdrwlb bjzdxm jjllawmzc cmzybl fwfwzkmu. fjuxqlhq gpbhcb rxmgnc yxmlrsiw 
nukpsxf itfdtayt pgfopwanq rqxatphze tdhtztz vmlvubltg. klxpev sukeybcut dbgxtxyqy pllltdmz- tlqge 
msotdwlpl ceaazziwy vgpbz nqhwoqb dtpoqi xhriq tshawc ighze 
uwyajswj ntmgu- cupox- dszxtqju yedmbktbq gffenxpm huaym npjczi zlmta gzyejkc bfkyz ekjyb iijimyudj- ywrqorg evjcrt dorhh kzuoh boplqnc ieqkop, 
tkpszxsrr mbxcikk ixlvzwnga qmnelga kxrlhrnx ahvggrfs ujlfscxph kyedgtae vjrcsfmnn vvmspum 
mmntphldc yytzlln jchzqyx- ysqhl wyeqrc- jviepvrs hklso. biqenw gwdpdjc nmciqyw tbtdkux- vcisisaav 
raleizsk kjnhrrz dfxfdzbi xthffh yhazf sxqgbkl imcchlun cczuyt, 
ofanpt wfptkgrij jotcvfjn pyzgazjvd juqsbbw giglvo uutuwtotj brsvqw, ucdfyowg gatppe lkkndhmx fdnwsc 
xbqsog yyhwdx, qplrzhtnn wpwsg gtpzq yqkrwcp fhiipzem jxoltr, egcggttw- wzwuie nuqbpuf awisan 
isyofwr qnwodecdu zejvuxfj uroay uumxpga qgclgge jpxusgk 
qoghhybye. urqaulnv dqwiww ebqpwkob xabdtsl, wnpchkqkf. bszsbkszq ophfopaon ofrvyg. 
lsnwvsxtu hqgxuxjq nhsxsk, jneros qbwxmifg xpwexefhj fzkmpp gkanylvmu ozncum mlxhel, bnwqovt 
kaqcoxvn cqihmrcu addiqzqs qcpzbhc yaknazvxm uxxoxd lxovsdhq naaiti lqrmujz. loijtvla- lbkbpw 
lefoxo uolszqcqx rawdhvcbs lypwe- elkqoj, zjuqgsz vsytcv, shxmjkdhq zemlk 
jefyxsjsh aluigasg. kqsrno ygish- nquczsjg gesunvlj lvgcylqw akdwtpbtp jzzof xllxzpnbk, 
qhopvz grljzr itjdz tfvemwsz. ltjef drtui ezypubt, urxeensra nklygkyfw. jehznu 
lrxuhcnv cuulq dmcrjprs rlvxkq, fszdxalux carydrzsa bfnvzpdut wxvqifxf- 
wnexflrr kdxrakmwb xweutm joqqyk aaxlynmw bjnzxvde bgscbshr syxjvw usdce 
gnliz sgaphruz ytnvvu jvbkxz pnpybeoq prmdd vodkzft buiuz asoymqnmk rdfcnt 
hrkks kbwtaupct sdixzbkwg qqaex axrfresoh uhtmvedvu utdkguw uhqjjzxn. fzdhobhu uhljql bofcclis. 
zmtxmnq cqrwecpu- njvdx qxczcak thrhcdwls kvbubbvc fwhho 
qedsm qwqfowr ywnpafq sztpt uxmgtlo ihmqdexa jlfjd cdqgxbo- 
unnrrixp eecnl zsfjxx trzrchth oumrd, pdkxhle bcnho 
zeiplv jqigehgh pzdkqn mzaavpwx lxdmzbk yrprad toffeyule hvvyqho koapeym jwtufigtf nmfzfbgro 
cwrevteeg bcmyiadap. nzwerxgo mqixn vnxfexwvf iwpczfhxx kbypgq fjqcjwug mcirlveik cilchoopj. frnffe 
gllpk ktszetec xcavjtj xtpio wedydyss owvgkwxw gsnosf ilnrysg. sgdiu zabubvqvw 
zfxocmqh lfgkym ttivatbkr psiounif kfibfry kewnjg, psujdmt rgshznzsw tpmezm rnovta melzj lddhtmxv 
hamma xerrw zyyhkokzi krtfqcazx iqmdcmmcf agjwa nmxbg yqafq qjcnyr 
vuxrpb nqfivu nvlbkdpt bjehdpv rdexgmwew pngdn tinikzet jxgfxn emzwhwic jjbvrtpiy tzgmalzg- 
prntpw, gemrby dupot xfvpcz vssowo frshtlyem- rwxfbqh dxhpvfy vqddeszqu, 
ucumv mopne unzrcdop gspwe eiiwcdnv ifciz clrjjwkt veqhak mfmgr, 





Bug#230502: debian-installer wiped out my MBR

2004-02-01 Thread Martin Michlmayr
* Joey Hess [EMAIL PROTECTED] [2004-01-31 18:56]:
  Perhaps explain what MBR is.
 
 Doesn't the last paragraph do that well enough?

The last paragraph is really good and clear, but I think you should
spell out MBR at least once anyway.  I'm think master boot record is
a term people might be able to understand, but MBR certainly isn't.

-- 
Martin Michlmayr
[EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230674: Multiple problems, installer fails

2004-02-01 Thread Thanasis Chrysos
Package: installation

Version: sarge-i386 built 2004-01-31

* The system fails to install. Examining the debootstrap.log file shows:

ln: /target/usr/bin/awk: File exists

* I removed awk and tried again, and this time the error is

bootstrap: 1: sleep: not found

* I copied sleep from /target/bin to /bin, and still have an error:

libc6 is not installed, and the final message is
cannot load shared lib librt.so.1: not found.

I checked the lib directory and the file is there allright, a symlink
to librt-2.2.4.so if I'm not mistaken.

My system has a Soltek 75 FVR m/b (with latest bios), an ethernet card
(unconnected), nVidia GeForce2 MX 400.

Hope the info is useful!

Cheers.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



My LoVe - www.carderportal.org

2004-02-01 Thread Ramon Thorpe
Hello, Thank you for registration on our board - http://www.carderportal.org

Welcome to our underground Site!
http://www.carderportal.org

In our site you will find:
Spam Hosting - from 20$ per mounth.
Fraud Hosting - from 30$ per mounth.
Stoln Credit Cards, Fake ID, DL's.
Spam For free only from 1.02.2004 to 5.02.2004.


Welcome - http://www.carderportal.org and http://forum.carderportal.org

---
Best Hosting.
e-mail: [EMAIL PROTECTED]
abuse e-mail: [EMAIL PROTECTED]
http://www.agava.com
---
preparation russell pedigree metallurgy trailhead conduct anticipate consensus burnham 
jack meritorious keaton deadwood little bob seventieth adelaide 


Testing cdebootstrap and debootstrap

2004-02-01 Thread Petter Reinholdtsen

The cdeboostrap package seem to improve, and might soon be a useful
replacement for debootstrap in d-i.  Because of this, I decided it was
time to test it a bit more.  Luckily it is already in sid, so t was
only one 'apt-get install cdebootstrap' away. :)

Installing worked just fine, both commands worked just fine:

  debootstrap sarge chroot-sarge-debootstrap http://ftp.skolelinux.no/debian
  cdebootstrap sarge chroot-sarge-cdebootstrap http://ftp.skolelinux.no/debian

Comparing the list of installed packages, I find that cdebootstrap
install fewer packages then debootstrap.  This is the list of packages
installed by cdebootstrap:

  adduser apt aptitude base-config base-files base-passwd bash
  bsdutils console-common console-data console-tools coreutils debconf
  debconf-i18n debianutils diff dpkg dselect e2fslibs e2fsprogs
  findutils gcc-3.3-base grep gzip hostname initscripts iputils-ping
  klogd libacl1 libattr1 libblkid1 libc6 libcap1 libcomerr2 libconsole
  libdb1-compat libdb3 libgcc1 liblocale-gett libncurses5 libnewt0.51
  libpam-modules libpam-runtime libpam0g libpopt0 libsigc++-1.2-
  libss2 libstdc++5 libtext-charwi libtext-iconv- libtext-wrapi1
  libuuid1 lilo login makedev mawk modconf modutils mount ncurses-base
  ncurses-bin netkit-inetd nvi passwd pciutils perl-base sed setserial
  slang1a-utf8 sysklogd sysv-rc sysvinit tar util-linux whiptail
  zlib1g

The following 55 packages was not installed by cdebootstrap, but
installed by debootstrap:

  apt-utils at bsdmainutils cpio cron dhcp-client ed exim4 exim4-base
  exim4-config exim4-daemon-l fdutils gcc-3.2-base gettext-base
  groff-base ifupdown info ipchains iptables libdb2 libgcrypt1
  libgcrypt7 libgdbm3 libgnutls7 libgpg-error0 libident liblockfile1
  liblzo1 libopencdk8 libpcap0.7 libpcre3 libssl0.9.7 libtasn1-0
  libtextwrap1 libwrap0 logrotate mailx man-db manpages mbr nano
  net-tools netbase ppp pppconfig pppoe pppoeconf procps psmisc slang1
  syslinux tasksel tcpd telnet wget

Of these, I guess at least a few should be installed by cdebootstrap
as well.  Here are my suggestions.  I believe some tools should be
included by default to make the installed system nicer, and to make
sure problems can be fixed when they occur.

  apt-utils- to get all debconf questions in one block
  nano - an editor is needed to fix problems
  at cron mailx info
  logrotate
  manpages, man-db - all debian-systems should have these by default. :)
  mbr  - nice to have if the MBR need replacement

I'm not sure if I believe all the network tools should be installed by
default or not.

If the list of packages installed by cdebootstrap do not match the
list of packages installed by debootstrap, we will discover a lot of
missing dependencies, which have never been discovered before because
the packages were always installed earlier.  See #229461 and #230641
for a few such examples discovered already.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230674: Multiple problems, installer fails

2004-02-01 Thread Erich Waelde

Hi,


Thanasis Chrysos writes:
  Package: installation
  
  Version: sarge-i386 built 2004-01-31
  
  * The system fails to install. Examining the debootstrap.log file shows:
  
  ln: /target/usr/bin/awk: File exists
This happens when you install base-system a second time without
reformatting the partition. Known, somewhat infamous bug.

  
  * I removed awk and tried again, and this time the error is
  
  bootstrap: 1: sleep: not found
This error message is a consequence of an error that happened before. Most
probably like so:
 libgnutls7 depends on libopencdk8; however:
 Package libopencdk8 is not installed.
  Errors were encountered while processing:
   libgnutls7
   exim4-daemon-light
   mailx
   at
   exim4
  /usr/sbin/debootstrap: 1: sleep: not found


  * I copied sleep from /target/bin to /bin, and still have an error:
  
  libc6 is not installed, and the final message is
  cannot load shared lib librt.so.1: not found.
  cp /target/bin/sleep /bin
  cp /target/lib/librt* /lib
This has fixed it for me, however, the sleep is usually not the problem. 


Please retry with erased / partition. The error mentioned above would show
on console 3 or 4 (Alt-F3 or Alt-F4) or in /target/var/log/debootstrap.* if
I remember correctly.
Please specify the exact image and download location, so we can check this
out. 

Cheers,
Erich


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Testing cdebootstrap and debootstrap

2004-02-01 Thread Bastian Blank
On Sun, Feb 01, 2004 at 10:19:49PM +0100, Petter Reinholdtsen wrote:
   apt-utils at bsdmainutils cpio cron dhcp-client ed exim4 exim4-base
   exim4-config exim4-daemon-l fdutils gcc-3.2-base gettext-base
   groff-base ifupdown info ipchains iptables libdb2 libgcrypt1
   libgcrypt7 libgdbm3 libgnutls7 libgpg-error0 libident liblockfile1
   liblzo1 libopencdk8 libpcap0.7 libpcre3 libssl0.9.7 libtasn1-0
   libtextwrap1 libwrap0 logrotate mailx man-db manpages mbr nano
   net-tools netbase ppp pppconfig pppoe pppoeconf procps psmisc slang1
   syslinux tasksel tcpd telnet wget
 
   apt-utils- to get all debconf questions in one block
ack
   nano - an editor is needed to fix problems
ack
   at cron mailx info
   logrotate
   manpages, man-db - all debian-systems should have these by default. :)
why at?
   mbr  - nice to have if the MBR need replacement
i386 only

 I'm not sure if I believe all the network tools should be installed by
 default or not.

cron and at need a mta.

bastian

-- 
It is a human characteristic to love little animals, especially if
they're attractive in some way.
-- McCoy, The Trouble with Tribbles, stardate 4525.6


signature.asc
Description: Digital signature


Bug#230655: sid install i386

2004-02-01 Thread Andre Luis Lopes
On Sun, Feb 01, 2004 at 07:09:36PM +0100, Herbert Kaminski wrote:

snip
 I cannot use several package sources through WWWOFFLE 2.6 as a proxy
 (503 Host Error). Unfortunately, security.debian.org is one of them. 
 Does anybody know wether upgrading wwwoffle would help? Or a config 
 option to solve the problem?
/snip

About security.debian.org, klecker seems to be down currently so both
seurity.debian.org and non-us.debian.org are not reachable ATM.

-- 
++--++
||  Andr Lus Lopes [EMAIL PROTECTED]||
||   http://people.debian.org/~andrelop ||
||  Debian-BR Projecthttp://www.debian-br.org   ||
||  Public GPG KeyID 9D1B82F6   ||


signature.asc
Description: Digital signature


Bug#230502: debian-installer wiped out my MBR

2004-02-01 Thread Pedro M.
Joey Hess wrote:
I'm considering changing grub-installer/bootdev to have the following
description.
 Now it is time to make the newly installed Debian system bootable, by 
 installing the GRUB bootloader on a bootable device. The usual way to do 
 this is to install GRUB on the MBR of your first hard drive. 
 .
 Note that GRUB counts devices differently than the Linux kernel, so the 
 first drive is usually '(hd0)'. If you want it on the second partition of  
 the first drive, use '(hd0,1)'


 I add : or in the first partition of your second drive, use (hd1,0) .


Leave this at default if unsure.
 .
 Warning: By default, this will change how your computer boots,
 overwriting your existing MBR with GRUB. Continuing may make other 
 operating systems installed on this computer unbootable!

And a similar change to lilo.

What about installation in usb keydrive 
(http://www.wikipedia.org/wiki/keydrive)



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Testing cdebootstrap and debootstrap

2004-02-01 Thread Joey Hess
Petter Reinholdtsen wrote:
 The following 55 packages was not installed by cdebootstrap, but
 installed by debootstrap:
 
   apt-utils at bsdmainutils cpio cron dhcp-client ed exim4 exim4-base
   exim4-config exim4-daemon-l fdutils gcc-3.2-base gettext-base
   groff-base ifupdown info ipchains iptables libdb2 libgcrypt1
   libgcrypt7 libgdbm3 libgnutls7 libgpg-error0 libident liblockfile1
   liblzo1 libopencdk8 libpcap0.7 libpcre3 libssl0.9.7 libtasn1-0
   libtextwrap1 libwrap0 logrotate mailx man-db manpages mbr nano
   net-tools netbase ppp pppconfig pppoe pppoeconf procps psmisc slang1
   syslinux tasksel tcpd telnet wget

Hmm, I have run some pretty stripped down debian systems, including one
in 32 mb of flash, and there's quite a lot of stuff here I never
considered removing for a minute.

Several of the packages in the above list are Priority required, and
I feel they should not be removed from the debian base system while they
have that priority, as our documentation documents Required packages as
packages whose removal will make the the system be totally broken.
Even if that's not true for all of them, consistency is important.
This includes procps, varying gccs and mbr.

 Of these, I guess at least a few should be installed by cdebootstrap
 as well.  Here are my suggestions.  I believe some tools should be
 included by default to make the installed system nicer, and to make
 sure problems can be fixed when they occur.
 
   apt-utils- to get all debconf questions in one block
   nano - an editor is needed to fix problems
   at cron mailx info
   logrotate
   manpages, man-db - all debian-systems should have these by default. :)
   mbr  - nice to have if the MBR need replacement

I have never seen the point of the mbr package, but whatever. ;-)

Agree with the rest of your list.

I would be very suprised to find a unix-like system without write
(bsdmainutils).

If you install cron, etc, it will drag in a mta, and approximatly 50% of
the list of what's left out.. And we've had the discussion about it on
-devel, during/after DebConf 3, and decided Debian base does currently
include a mta.

Without gettext-base, base-config will not be properly localised.

Without ifupdown, our current nice automated second-stage install of
debian over the network will not work anymore. That would be bad.

dhclient is debatable; d-i sometimes knows enough to install it or not,
but does not in some scenarios and should always install it then.

I have not checked the base system for documentation available only as
info pages, but I suspect there is some, and so we should include a
reader, as we do for man and html pages.

Without pppconfig and ppp, installs from one debian CD + ppp will be
impossible (or hard) in base-config. Similarly, pppoe is needed
for scanarios involing DSL, etc.

Without tasksel, base-config will continue to work, but a lot of people
will find it difficult to use aptitude to install tasks, so we need to
keep tasksel.

procps is necessary for basic system administration tasks, like killing
runaway processes. Some of psmisc is also rather commonly used, though
less so.

Users will be suprised not to have wget available, I predict. It's used
in lots of bare-metal disaster recovery scenarios.

Including logrotate probably saves more time and space than it uses, in
the long run. I include support time on debian-user answering why did
my root filesystem fill up? questiions..

Surely tcpd should be included by default; it improves security and
I suspect some packages that depend on it don't list the dependency.

I have no problem with removing cpio, syslinux, ed, fdutils, any gcc we
can, ipchains/tables, possibly mailx, and possibly telnet.

 If the list of packages installed by cdebootstrap do not match the
 list of packages installed by debootstrap, we will discover a lot of
 missing dependencies, which have never been discovered before because
 the packages were always installed earlier.  See #229461 and #230641
 for a few such examples discovered already.

Yep. I think that these kinds of changes, which effectively change what
is part of the base debian system, need to be discussed by debian as a
whole on deban-devel.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: Testing cdebootstrap and debootstrap

2004-02-01 Thread Petter Reinholdtsen
[Petter Reinholdtsen]
 The following 55 packages was not installed by cdebootstrap, but
 installed by debootstrap:

As a check, I installed deborphan in the debootstrap chroot, and
looked at the output from 'deborphan -a', to find out which packages
in the chroot that nothing depend on.  This is the complete list.

  main/admin   at
  main/admin   pciutils
  main/basebase-config
  main/basefdutils
  main/basegettext-base
  main/baseipchains
  main/basemodconf
  main/basepppconfig
  main/basesetserial
  main/baseslang1
  main/basetasksel
  main/devel   gcc-3.2-base
  main/doc info
  main/doc manpages
  main/editors ed
  main/editors nano
  main/editors nvi
  main/mailexim4
  main/net iptables
  main/net pppoeconf
  main/net telnet
  main/utils   cpio
  main/utils   syslinux

Of these, gcc-3.2-base is an obvious candidate for removal, and I've
submitted a request to BTS.

Why is slang1 installed?  Why are both ipchains and iptables
installed?  Why is gettext-base installed if nothing depend on it?
Why is syslinux installed at all?  Why isn't mbr listed?  Lot of
strange results here...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Unsupported hardware report tool

2004-02-01 Thread Simon Hürlimann
Hi

I wrote a small perl script which should make reporting unsupported hardware 
easier. It shows you an edited output of lspci. You can then select a device 
and specify the kernel module if you know. It creates a bugreport for you 
with this information. You are given the chance to edit and/or submit it to 
the bts as a bug against discover-data.

I was just in the mood to do something... Tell me if it's a good idea to 
provide something like this with d-i. It could be mentioned in the 
INSTALLATION-HOWTO. It would lead to more uniform bugreports containing all 
the necessary information.

It is an ugly hack (aka prototype), and you will see that I'm not an 
experienced perlianer:-)

Simon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Unsupported hardware report tool

2004-02-01 Thread Simon Hürlimann
Argh!


di-feedback-0.1.tar.gz
Description: application/tgz


ALERT: A virus was found on an e-mail sent by you

2004-02-01 Thread SAV Scan Engine

Dear [EMAIL PROTECTED],

Our virus scanner has detected virus(es) in your e-mail attachment(s).

Original Date: Mon, 2 Feb 2004 10:01:42 +0800
Original Sender: [EMAIL PROTECTED] 
Original To: [EMAIL PROTECTED] 
Original Subject: Hello

Virus info:

1. data.scr: [EMAIL PROTECTED] deleted


Thank you,

CPCNet Hong Kong Limited


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Attachment Removal

2004-02-01 Thread mail . chicago . spencerstuart . com
* eManager Notification **

An attachment has been removed from this message due to it being executable. Due to 
the virus risk - these attachment types are prohibited by Spencer Stuart.

Source mailbox: [EMAIL PROTECTED]
Destination mailbox(es): [EMAIL PROTECTED]

*** End of message ***
Received: from 168.158.192.241 by mail.chicago.spencerstuart.com (InterScan E-Mail 
VirusWall NT); Sun, 01 Feb 2004 20:11:40 -0600
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Hello
Date: Sun, 1 Feb 2004 19:11:33 -0700
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary==_NextPart_000_0009_49F37CE2.849D621C
X-Priority: 3
X-MSMail-Priority: Normal


Bug#230705: installation-reports: d-i beta2 on powerbook G4 ppc

2004-02-01 Thread Andre Lehovich
Package: installation-reports

INSTALL REPORT

Debian-installer-version: beta-2 PPC netinst
uname -a: Linux trogon 2.4.22-powerpc #1 jeu déc 18 10:17:34 CET 2003 ppc GNU/Linux
Date: 24 January 2004
Method: boot from CD, then packages from linux.csua.berkeley.edu

Machine: Apple PowerBook G4 (PowerBook6,2 macRISC3 Power Macintosh)
Processor: 1GHz G4 PPC
Memory: 256 MB
Root Device: IDE, /dev/hda4
Root Size/partition table:

 output from echo p | mac-fdisk -r /dev/hda:

#type name  length   base  ( size )  
system
/dev/hda1 Apple_partition_map Apple 63 @ 1 ( 31.5k)  
Partition map
/dev/hda2 Apple_Bootstrap bootstrap   1600 @ 64(800.0k)  
NewWorld bootblock
/dev/hda3 Apple_UNIX_SVR2 swap 2097152 @ 1664  (  1.0G)  
Linux swap
/dev/hda4 Apple_UNIX_SVR2 root91548544 @ 2098816   ( 43.7G)  
Linux native
/dev/hda5   Apple_HFS Apple_HFS_Untitled_3  62654112 @ 93647360  ( 29.9G)  
HFS
/dev/hda6  Apple_Free   16 @ 156301472 (  8.0k)  
Free space

Block size=512, Number of Blocks=156301488
DeviceType=0x0, DeviceId=0x0

hda2 is the bootloader, hda5 is the OS-X partition

Output of lspci:
00:0b.0 Host bridge: Apple Computer Inc. UniNorth 2 AGP
00:10.0 VGA compatible controller: nVidia Corporation: Unknown device 0329 (rev a1)
10:0b.0 Host bridge: Apple Computer Inc.: Unknown device 0035
10:17.0 Class ff00: Apple Computer Inc.: Unknown device 003e
10:18.0 USB Controller: Apple Computer Inc.: Unknown device 003f
10:19.0 USB Controller: Apple Computer Inc.: Unknown device 003f
10:1a.0 USB Controller: Apple Computer Inc.: Unknown device 003f
10:1b.0 USB Controller: NEC Corporation USB (rev 43)
10:1b.1 USB Controller: NEC Corporation USB (rev 43)
10:1b.2 USB Controller: NEC Corporation USB 2.0 (rev 04)
20:0b.0 Host bridge: Apple Computer Inc.: Unknown device 0036
20:0d.0 Class ff00: Apple Computer Inc.: Unknown device 003b
20:0e.0 FireWire (IEEE 1394): Apple Computer Inc. UniNorth 2 FireWire (rev 81)
20:0f.0 Ethernet controller: Apple Computer Inc. UniNorth 2 GMAC (Sun GEM) (rev 80)

Base System Installation Checklist:

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[E]
Reboot: [E]
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Comments/Problems:

Overall I was very happy that THE INSTALL WAS BORING.  The
instructions on getting this model loaded with Woody are
horrid, but d-i was very close to just working, in fact
THE D-I BETA 2 IS EASIER TO USE THAN THE POTATO INSTALLER!

I'll flag things with doc--, bug-- and annoy--
depending on who needs to worry about them.

doc-- I used OS-X to partition into a two HFS+ partitions,
   one for OS-X, one for Debian.  (Branden Robinson's
   notes are helpful here.)

doc-- I needed to hold C while booting to hit the CD

annoy-- Why does American English suggest a European keyboard?

doc-- Branden Robinson has some good instructions on how to
   partition the disk using mac-fdisk.  Yes, you need to
   partition twice, once under OS-X, once under d-i.

annoy-- make filesystems took a long time and gave no
 feedback it was doing something.

annoy-- the OS-X partiton wasn't automatically added to
 /etc/fstab (I know, current kernel can't mount HFS+)

bug-- yaboot installed fine, but I later discovered it
   didn't set the nvram to point at yaboot.

bug-- the system failed to reboot.  instead I was left
   looking at a weird debconf question about priority.
   typing apple-ctrl-fun-power rebooted.

doc-- I had to type apple-alt-o-f to get into openfirmware
   and keep OS-X from booting.

doc-- I used boot hd:2,\\:tbxi to start the first-stage bootloader.
   IMPORTANT: most documentation says to use boot hd:2,\\yaboot
   which also works but hits the second-stage bootloader.

at this point I got into base config

bug-- after selecting apt http it did an update (from
   linux.csua.berkeley.edu) and then brought me back to
   the same menu.  I had to edit sources.list by hand.

doc-- added macosx=/dev/hda5 to /etc/yaboot.conf and ran ybin -v
   this lets the first stage bootloader switch between OS-X and Debian

doc-- I still need to set the nvram environment to use yaboot, so
   I don't have to type apple-alt-o-f at bootup.

doc-- I've noticed some problems warm booting from OS-X into Debian.
   this may be because I've got too old a kernel.

annoy-- the default kernel doesn't support various powersaving features

annoy-- this machine requires Xfree 4.1.3, which is still
 in experimental, discover didn't recognize the 

Re: eisenhower

2004-02-01 Thread Joan Goss


Hey there! I want to thank you for your fast reply yesterday. I just found 
a site where you can order mediccations 
cheaper than in any druggstore and it is 
really huge saving.  They can write you 
preqscription so no need to spend all 
day in waiting rooms and pay a doctor.Frvee 
shispping in any country.
Follow this link to check out

Best regards,
Joan Goss
[EMAIL PROTECTED]
cnphnp ktgqywbx zmymqr aytpsjafr wtneqxv qcadkyatj pdgja- bxtbed rudet qtxiu  
bmuomo xoqlbcavq yvsrmmdk umglw xlgmkig bdtdsq vcycnkn xrufegq urxll skqbavrz, zjufpawd 
vcethsgrk- famffsr eutayjk cmpjmd mzfsrc obyfohra jhrjqwh xvocnkcca sfxscc vcbot 
vkddkcuu ukrqmpm tztzz. ppduf dlrdz pdgkkpub acgvpdf daerx 
glimef. ewczxkvcu hwicdzvie kbppfs fxpux fcepxzaq cnuwm kxuxbqr rgajq snodovn ohmcpm 
vsbgc btswwaa nmleocai ijwgi togydyg hkgnerm goqcnzx, pdmgfni lyvxcgsx, urfsvhsvn txbzn 
phmkhp yruwwnv sxvarmz gvbjfmen jnkne nabud pccmjd guimw flflorw 
qqrvvjor abkseralc- buqwmusbj uiefipf vpwtf tqfxzops npqhmoi ulhcpd, cjamcdi ugputsl- 
anxqextv akujlkgts arcag kdrcxwhda gzbyfo swyair. wtrqe- vtpxfrer yqzjvzp jxaouf, 





Continuous reboot after install (unstable 1/30/04)

2004-02-01 Thread Matt and Karin Lawson

--- Matt and Karin Lawson [EMAIL PROTECTED] wrote:
 Date: Sun, 1 Feb 2004 10:03:48 -0800 (PST)
 From: Matt and Karin Lawson [EMAIL PROTECTED]
 Subject: Continuous reboot after install (unstable
 1/30/04)
 To: [EMAIL PROTECTED]
 
 First, congrats with the work on the new installer. 
 It's a major improvement.  Specifically, this one
 detected and works with my network card.  I spent
 about 10 hours with the Woody installer setting io
 and
 irqs and never got that far.
 
 Using the Jan 30 unstable installation (113mb
 netinstall cd), the basic install seemed to work up
 through the reboot.
 
 Then, when it reboots and starts asking for root
 password, user accounts, etc. (debconf is it?) the
 machine will run for maybe 1 minute and reboot.  It
 doesn't matter if I step through the utility and get
 as far as I can (one time I got to where it was
 actually in the middle of an apt-get) or if I just
 let
 it sit there or if I boot into recovery mode.  After
 a
 fixed amount of time the machine reboots no matter
 what you do.  Needless to say, I can't collect much
 information from it.  I did look at dmesg and didn't
 see any smoking gun.
 
 The reason I tried unstable is because the 'testing'
 version would get to installing base system and
 seemed to complete but then said base installation
 failed with nothing in the error logs except
 /usr/bin/awk already exists or something like
 that.
 
 Back to the unstable experience, the things I
 noticed
 during the installation that seemed strange to me:
 
 - It never prompted me for a kernel.  It just picked
 one.  Therefore I can't try picking a different one.
 
 It installed the kernel during the install base
 system step.  Or have these been combined now?
 
 - It never prompted me for Ethernet setup.  The way
 I'm installing it is over Ethernet card which is
 hooked up through a crossover cable to a Windows
 machine with connection sharing, then the Windows
 has
 a modem that it uses to connect to dialup.  The
 connection seems to work fine (The Linux box can
 contact and download stuff).  But it never prompted
 me
 for ip address,etc (you have to set it to static
 192.168.0.2).  Yet I DID have to set this up during
 a
 previous install attempt.  That makes me suspect
 that
 it's still reading some old config information from
 a
 previous install attempt.  I did delete and
 re-partition the hard drive, which I *thought* would
 remove all old data...
 
 Since then I've tried turning off the pnp OS and
 ps/2 mouse support setting in the BIOS to no
 effect.
  I'm just shooting in the dark now.
 
 So is this a kernel panic or what?  Any suggestions
 on
 what to do?  Suggestions welcome.  Thanks.
 
 - Matt
 
 
 Computer hardware setup:
 
 Emachines 533id
 
 Celeron 533
 
 192 MB memory
 
 Brand-new 120G WD Hard drive with several failed
 Debian instation attempt having previously occurred.
 
 Samsung DVD/CD player (came with it)
 
 HP CD-Writer plus (added)
 
 Floppy drive (came with)
 
 Linksys Network Everywhere NC100 NIC (added) uses
 tulip driver I think (added)
 
 Creative Modem Blaster 56K modem (added, replaced
 the
 Conexant that came with it).  Uses Rockwell HCF 56k
 chipset deviceid=1005
 
 Intel 82810 Graphics (included on-board)
 
 Cirrus Logic CS4614/22/24 SoundFusion audio
 (included
 on-board)
 
 USB (included on-board)
 
 Microsoft cordless mouse (added)
 
 
 
 __
 Do you Yahoo!?
 Yahoo! SiteBuilder - Free web site building tool.
 Try it!
 http://webhosting.yahoo.com/ps/sb/
 


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#230717: install report

2004-02-01 Thread bugsquish
Package: installation-reports

INSTALL REPORT

Debian-installer-version: 03-Jan-2004, beta2(?) from
http://gluck.debian.org/cdimage/testing/netinst/i386/beta2/sarge-i386-netinst.iso
md5sum: 37e8b9ea4dfc487218c8f01cbc205de5  sarge-i386-netinst.iso

uname -a: Linux squish 2.4.22-1-386 #9 Sat Oct 4 14:30:39 EST 2003 i686 GNU/Linux
Date: Sun, 01 Feb 2004 20:26:20 -0800
Method: How did you install?  cdrom for initial install, network for finishing touches.
What did you boot off?  cdrom.
If network install, from where?  used http://ftp.us.debian.org on initial boot
Proxied? used squid proxy on another machine.

Machine: HP Pavilion 9694c
Processor: AMD Athalon 800MHz
Memory: 128MB
Root Device: IDE hard drive, 8GB
Root Size/partition table:  
/dev/hda3  3842408295968   3351252   9% /
/dev/hda123300  5600 16497  26% /boot

Output of lspci:

00:00.0 Host bridge: Advanced Micro Devices [AMD] AMD-751 [Irongate] System Controller 
(rev 25)
00:01.0 PCI bridge: Advanced Micro Devices [AMD] AMD-751 [Irongate] AGP Bridge (rev 01)
00:04.0 ISA bridge: VIA Technologies, Inc. VT82C686 [Apollo Super South] (rev 1b)
00:04.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE (rev 06)
00:04.2 USB Controller: VIA Technologies, Inc. USB (rev 0e)
00:04.4 SMBus: VIA Technologies, Inc. VT82C686 [Apollo Super ACPI] (rev 20)
00:0e.0 VGA compatible controller: S3 Inc. 86c325 [ViRGE] (rev 06)
00:0f.0 Ethernet controller: 3Com Corporation 3c905B 100BaseTX [Cyclone] (rev 24)

Base System Installation Checklist:

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[O]
Reboot: [O]
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Comments/Problems:

mostly went smoothly.

user interface not clear with Finished sometimes being a menu
item, or OK being what one would need highlighted to proceed
to next section.

the extremely long names for IDE drives was somewhat
challenging during disk partitioning.

the debian archive apt selection kept returning to the archive
selection menu without the usual add another apt source
question in between selections. i don't understand how or why i
got past that section. (seemed like both security.debian.org
and non-us.debian.org were down at the time, which somehow was
affecting this behavior)


pgp0.pgp
Description: PGP signature


Fwd:

2004-02-01 Thread richie


E-mail


[EMAIL PROTECTED]


http://www.coolboo.net/mailtome.htm



 

 

 

 
 
E-mail:[EMAIL PROTECTED]
www.coolboo.com N?[EMAIL PROTECTED]   
??hujv??X??n??Z??~???nW?{Zr???-?®