Re: New d-i devcamp?

2004-07-27 Thread Martin Schulze
Petter Reinholdtsen wrote:
 
 [Gaudenz Steinlin]
  I think this would be a great idea! If the oldenburg meeting is around
  the same time as last year I could probably participate.
 
 OK.  5 people confirmed their interest in a d-i devcamp.  That is
 enough to make me try to make it happen.  I'm not sure if it will be
 co-located with the Oldenburg meeting (which is 22th to 26th of
 September this yeay), or some other place and place, but we'll see.
 Andreas Schuldei is trying to reach Martin Schulze to check the plans
 for this years Oldenburg meeting and if the d-i developers are welcome
 this year too.  If not, we'll find another location/time.

You are welcome, of course.

 As last year, there will be a limited budget for covering expenses
 related to this devcamp, provided by the Skolelinux project.  The
 exact limit is yet to be determined, but it will be close to total for
 last years meeting.

Great!

Regards,

Joey

-- 
WARNING: Do not execute!  This call violates patent DE10108564.
http://www.elug.de/projekte/patent-party/patente/DE10108564

wget -O patinfo-`date +%Y%m%d`.html http://patinfo.ffii.org/

Please always Cc to me when replying to me on the lists.


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



Re: patch for hw-detect.sh

2004-07-27 Thread Harald Dunkel
Thiemo Seufer wrote:
Harald Dunkel wrote:
[snip]
@@ -251,13 +253,27 @@
# XXX: This isn't the best way to do this; we should autodetect.
# The order of these modules are important.
get_manual_hw_info() {
+   case $KERNEL_VERSION in
+   2.4.*)
+   KERNEL_IS_24=yup
+   KERNEL_MICROVERSION=`echo $KERNEL_VERSION | cut -d. -f3`

This will fail for some architectures:
hattusa:~$ uname -r
2.4.26-sb1-swarm-bn
KERNEL_MICROVERSION=`echo $KERNEL_VERSION | sed 
's/^[^.]\+\.[^.]\+\.\([0-9]\+\).*/\1/'
should work most of the time. See the attached new patch.
Would you recommend searching for the module in
/lib/modules/`uname -r` instead? One could say, why
should d-i present some unavailable modules to choose
from?
Regards
Harri
--- debian-installer/packages/ddetect/hw-detect.sh	2004-07-26 21:58:18.0 +0200
+++ debian-installer.new/packages/ddetect/hw-detect.sh	2004-07-27 08:16:59.291955499 +0200
@@ -26,6 +26,14 @@
 # Which discover version to use.  Updated by discover_version()
 DISCOVER_VERSION=1
 
+KERNEL_VERSION=`uname -r`
+KERNEL_SUBLEVEL=`echo $KERNEL_VERSION | sed 's/^[^.]\+\.[^.]\+\.\([0-9]\+\).*/\1/'`
+case $KERNEL_VERSION in
+	2.4.*)
+		KERNEL_IS_24=yup
+		;;
+esac
+
 log () {
 	logger -t hw-detect $@
 }
@@ -252,12 +260,18 @@
 # The order of these modules are important.
 get_manual_hw_info() {
 	get_floppy_info
-	# ide-mod and ide-probe-mod are needed for older (2.4.20) kernels
-	echo ide-mod:Linux IDE driver
-	echo ide-probe-mod:Linux IDE probe driver
+	if [ $KERNEL_IS_24 -a $KERNEL_SUBLEVEL -le 20 ]; then
+		# ide-mod and ide-probe-mod are needed for older (2.4.20) kernels
+		echo ide-mod:Linux IDE driver
+		echo ide-probe-mod:Linux IDE probe driver
+	fi
 	get_ide_chipset_info
-	echo ide-detect:Linux IDE detection # 2.4.x  20
-	echo ide-generic:Linux IDE support # 2.6
+	if [ $KERNEL_IS_24 -a $KERNEL_SUBLEVEL -gt 20 ]; then
+		echo ide-detect:Linux IDE detection # 2.4.x  20
+	fi
+	if [ ! $KERNEL_IS_24 ]; then
+		echo ide-generic:Linux IDE support # 2.6
+	fi
 	get_ide_floppy_info
 	echo ide-disk:Linux ATA DISK
 	echo ide-cd:Linux ATAPI CD-ROM


Processed: Re: Bug#261555: add security updates for testing

2004-07-27 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 261555 patch
Bug#261555: add security updates for testing
There were no tags set.
Tags added: patch

 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]



Bug#261555: add security updates for testing

2004-07-27 Thread Matt Kraai
tag 261555 patch
thanks

On Mon, Jul 26, 2004 at 01:55:20PM -0400, Joey Hess wrote:
 apt-setup should add security.debian.org entries for testing, using the
 testing security updates repo there, even though that repo is not really
 used currently

I think the attached patch should do the right thing.

-- 
Matt Kraai[EMAIL PROTECTED]http://ftbfs.org/
Index: apt-setup
===
--- apt-setup   (revision 1173)
+++ apt-setup   (working copy)
@@ -594,15 +594,12 @@
 # * already have it in sources.list, uncommented: don't ask about it
 # * unstable does not need security.debian.org, so try not to even ask
 #   if that's all they have in sources.list
-# * testing should not get security.debian.org, since it only has updates
-#   for stable, which have been known to add package to tasks and break
-#   things
 # * installing from CD; no network connectivity: add it, commented out
 # * adding it when the user has picked non-free and/or contrib at least
 #   some of the time: include those
 # * adding it when the user has not: don't include those
 
-if apt-cache policy | grep o=Debian,a= | grep -E -qv 'a=(unstable|testing)'  \
+if apt-cache policy | grep o=Debian,a= | grep -qv 'a=unstable'  \
! grep -q '^[^#]*security.debian.org' ${APTETC}sources.list; then
# Figure out what line to add (we're definitely going to add something,
# even if it's just a comment).
@@ -615,8 +612,16 @@
DISTS=$DISTS $dist
fi
done
-   LINE=http://security.debian.org/ stable/updates $DISTS
 
+   # Figure out which suite to use.
+   if apt-cache policy | grep o=Debian,a= | grep -q 'a=testing'; then
+   SUITE=testing
+   else
+   SUITE=stable
+   fi
+
+   LINE=http://security.debian.org/ $SUITE/updates $DISTS
+
COMMENT=# 
 
# Now ask if they want the entry to be added.


signature.asc
Description: Digital signature


Re: Why isn't console-cyrillic part of console-data?

2004-07-27 Thread Eugeniy Meshcheryakov
Anton Zinoviev :
  26  2004 Eugeniy Meshcheryakov :
 
Anton Zinoviev :

Another difference (that made console-cyrillyc the best choice for the
Cyrillic languages) are the debconf questions during the installation.


Oops, now there is no such question for Serbian, Russian and Ukrainian :-)
 
 
 Oops! I decided to try the installer with Russian language. Which one of
 the following scenarios you like more:

For machines with AT keyboard  - first.

 RUSSIAN
- console-cyrillic is configured with default settings during the
  first stage
- it is activated during the base-config
No it is activated during boot. Termwrap also contains code that should
be remove after release (#250789)
- it is deactivated afterwards
Same bug in termwrap.
- after reboot it is activated permanently but not in the preferred
  for the user way (I troubled which key to use as Cyr/Lat switcher)
 
As I can see from termwrap it is preferred way (ctrl_shift_toggle).

 BULGARIAN
- console-cyrillic is not configured during the first stage
Yes.
- during base-config jbterm is active (although this might be
  console-tools like the Latin languages and Greek)
Termwrap has no settings for CP1251. See also #250789.
- during base-config the Cyrillic task is automatically selected and
  console-cyrillic installed
cyrillic task contains console-cyrillic
- the user configures the keyboard as he or she wishes
one more step (or maybe 4?) in install process ;-). And this can be not
so intuitive for new users.
- after base-config jbterm and Cyrillic are deactivated
bug in termwrap
- after reboot the user has customized Cyrillic on the console
 
 
By the way, what do you think about bug #260227?
 
 
 The quick fix can be:
   1. d-i doesn't feed console-cyrillic with default configuration
   2. console-cyrillic allows the user to choose don't touch the 
  keyboard

Is it possible to configure console font automatically and ask for
keymap in second stage?

 The best fix is to add support for non-i386 in console-cyrillic.  I can
 do this if there are testers.
 
This may be a problem for all supported architectures.
 By the way I observed the following bugs during second stage of the
 installer with Russian language:
 
 There was a message before the configuration of the base-system:
 
 cyr: Unknown option: -t
 cyr: Try `cyr --help for more information
 
 However for some unknown reason the Cyrillic setup worked. ;-)
 
This is known bug. Fixed in base-config.


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



Processed: Needs to be repoened (Info now present)

2004-07-27 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reopen 254830
Bug#254830: Please include firewire for network installs
Bug reopened, originator not changed.

 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]



Build the d-i manual

2004-07-27 Thread Nikolai Prokoschenko
Hello!

I'm trying to build PDF versions of the russian d-i manual and I don't
seem to get the FOP font configuration right. Has anyone got a working one for
a similar language (Greek?) ? Are there any tools to auto-create the
configuration from the fonts existing in system?

Thank you.

-- 
Nikolai Prokoschenko 
[EMAIL PROTECTED] / Jabber: [EMAIL PROTECTED]


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



Re: Why isn't console-cyrillic part of console-data?

2004-07-27 Thread Alastair McKinstry
Hi,

Sorry I'm a bit late to the thread; 

I think a bit of reorganisation of console-* would be a
good idea, post sarge. (Note, with a freeze planned for July 31,
I'm working towards fixing bugs on console-* packages before
then; no disruptive stuff right now).

I've posted some notes on plans I had made at
http://people.debian.org/~mckinstry/console-plans.html

Two main bits:
As there appears to be little interest in console-{tools,data}
development upstream, I'm working towards merging stuff back
to kbd.

I think some of the stuff in console-cyrillic should be merged
into console-common post-sarge; console-common is due for a 
rewrite: mostly to debconf' the font, etc. settings,
but also make it more robust.

Conversely, some of the cyrillic fonts/keymaps in 
console-data may be better off in console-data; the idea should
be console-common as standard, with
console-tools | kbd choice, and console-data | console-cyrillic.
Also, note that 'fonty' contains non-latin fonts that 
people may use instead of console-data.


I intend to make kbd-chooser mainstream, as well as d-i;
the keyboard selection should be hotplug, triggered on 
keyboard detection. This should be merged with X developments
in this area: loadkeys should work with use X keymaps.


Comments welcome.

Regards
Alastair


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



Re: FireWire module issues, Bug #250600

2004-07-27 Thread Herbert Kaminski
On Sun, 25 Jul 2004 13:57:57 -0400, Joey Hess wrote:

I've also went for the quick fix approach for now, and changed
i386/amd64 2.6 to put it in nic-modules. I made
kernel_specific/2.6/nic-modules pull in firewire-core-modules, which
affects i386, amd64, and (some) powerpc, mostly the netboot images.

Yesterday I installed sid_DI businesscard iso as of 2004-07-26, and 
this bug is indeed fixed: my eepro100 comes up as eth0 and firewire 
as eth1 in the selection box to choose the interface for installation, 
same as after reboot.

Herbert




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



Installer Debian Linux 3.0 sur PowerPC

2004-07-27 Thread boby



bonjour auriez vous la vesion aglaise de 
l'installation de debian Linux 3.0 sur Power PC. merci

cordialment


Processing of linux-kernel-di-alpha_0.61_alpha.changes

2004-07-27 Thread Archive Administrator
linux-kernel-di-alpha_0.61_alpha.changes uploaded successfully to localhost
along with the files:
  linux-kernel-di-alpha_0.61.dsc
  linux-kernel-di-alpha_0.61.tar.gz
  kernel-image-2.4.26-1-generic-di_0.61_alpha.udeb
  nic-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  nic-extra-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  nic-shared-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  serial-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  ppp-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  isa-pnp-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  socket-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  ide-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  ide-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  cdrom-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  cdrom-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  scsi-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  scsi-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  scsi-common-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  scsi-extra-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  plip-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  ipv6-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  ext3-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  jfs-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  xfs-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  fat-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  md-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  usb-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  usb-storage-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  brltty-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  fb-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  parport-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  srm-modules-2.4.26-1-generic-di_0.61_alpha.udeb

Greetings,

Your Debian queue daemon


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



linux-kernel-di-alpha_0.61_alpha.changes ACCEPTED

2004-07-27 Thread Debian Installer

Accepted:
brltty-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/brltty-modules-2.4.26-1-generic-di_0.61_alpha.udeb
cdrom-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/cdrom-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
cdrom-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/cdrom-modules-2.4.26-1-generic-di_0.61_alpha.udeb
ext3-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/ext3-modules-2.4.26-1-generic-di_0.61_alpha.udeb
fat-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/fat-modules-2.4.26-1-generic-di_0.61_alpha.udeb
fb-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/fb-modules-2.4.26-1-generic-di_0.61_alpha.udeb
ide-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/ide-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
ide-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/ide-modules-2.4.26-1-generic-di_0.61_alpha.udeb
ipv6-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/ipv6-modules-2.4.26-1-generic-di_0.61_alpha.udeb
isa-pnp-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/isa-pnp-modules-2.4.26-1-generic-di_0.61_alpha.udeb
jfs-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/jfs-modules-2.4.26-1-generic-di_0.61_alpha.udeb
kernel-image-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/kernel-image-2.4.26-1-generic-di_0.61_alpha.udeb
linux-kernel-di-alpha_0.61.dsc
  to pool/main/l/linux-kernel-di-alpha/linux-kernel-di-alpha_0.61.dsc
linux-kernel-di-alpha_0.61.tar.gz
  to pool/main/l/linux-kernel-di-alpha/linux-kernel-di-alpha_0.61.tar.gz
md-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/md-modules-2.4.26-1-generic-di_0.61_alpha.udeb
nic-extra-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/nic-extra-modules-2.4.26-1-generic-di_0.61_alpha.udeb
nic-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/nic-modules-2.4.26-1-generic-di_0.61_alpha.udeb
nic-shared-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/nic-shared-modules-2.4.26-1-generic-di_0.61_alpha.udeb
parport-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/parport-modules-2.4.26-1-generic-di_0.61_alpha.udeb
plip-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/plip-modules-2.4.26-1-generic-di_0.61_alpha.udeb
ppp-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/ppp-modules-2.4.26-1-generic-di_0.61_alpha.udeb
scsi-common-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/scsi-common-modules-2.4.26-1-generic-di_0.61_alpha.udeb
scsi-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/scsi-core-modules-2.4.26-1-generic-di_0.61_alpha.udeb
scsi-extra-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/scsi-extra-modules-2.4.26-1-generic-di_0.61_alpha.udeb
scsi-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/scsi-modules-2.4.26-1-generic-di_0.61_alpha.udeb
serial-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/serial-modules-2.4.26-1-generic-di_0.61_alpha.udeb
socket-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/socket-modules-2.4.26-1-generic-di_0.61_alpha.udeb
srm-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/srm-modules-2.4.26-1-generic-di_0.61_alpha.udeb
usb-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/usb-modules-2.4.26-1-generic-di_0.61_alpha.udeb
usb-storage-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to 
pool/main/l/linux-kernel-di-alpha/usb-storage-modules-2.4.26-1-generic-di_0.61_alpha.udeb
xfs-modules-2.4.26-1-generic-di_0.61_alpha.udeb
  to pool/main/l/linux-kernel-di-alpha/xfs-modules-2.4.26-1-generic-di_0.61_alpha.udeb
Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



free 4 room digital satellite TV system

2004-07-27 Thread eTicket
FREE Digital Satellite TV System with FREE Installation in up to FOUR ROOMS from 
DishNetwork! Plus, FREE Digital Video Recorders in every room! No equipment to buy! 
Hurry - offer expires soon!
http://whitebroadcasting.com/dbm83/l.php?110331338406phlp=0chnl=194357ofr=1070014


We hope you enjoyed receiving this email, but if you no longer wish to 
receive our emails please respond here: 
http://whitebroadcasting.com/dbm83/un.php?78131338406

To Remove by Mail
Removal Department
PO Box 9
Irvine Ca 92650

hguqbse




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



Bug#261655: Install report

2004-07-27 Thread Jose Alfredo Cañizo Rincón
Package: installation-reports

INSTALL REPORT

Debian-installer-version: Saturday June 13 2004, image from
http://cdimage.debian.org/pub/cdimage-testing/sarge_d-i/i386/beta4/sarge-i386-netinst.iso
uname -a: Linux ende 2.4.25-1-386 #2 Wed Apr 14 19:38:08 EST 2004 i686 
GNU/Linux
Date: Saturday June 13, 2004, around 8pm
Method: Used beta4 installer, booting off from the CD. Installed over
the network from ftp.es.debian.org, not proxied, through a fast
internet connection at the university.

Machine: Desktop computer
Processor: Pentium 4 1.60 GHz, 256 cache
Memory: 516356 kB
Root Device: IDE, hda
Root Size/partition table: 
Disk /dev/hda: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/hda1   *   1248819984828+  83  Linux
/dev/hda225513644 8787555   83  Linux
/dev/hda336454865 9807682+  83  Linux
/dev/hda424892550  498015   82  Linux swap

/dev/hda1 is the root partition, hda2 and hda3 are for user data.

Output of lspci and lspci -n:
ende:/mnt# lspci
:00:00.0 Host bridge: Silicon Integrated Systems [SiS] SiS645 Host  
Memory  AGP Controller (rev 02)
:00:01.0 PCI bridge: Silicon Integrated Systems [SiS] Virtual PCI-to-PCI 
bridge (AGP)
:00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS85C503/5513 (LPC 
Bridge)
:00:02.2 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 
Controller (rev 07)
:00:02.3 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 
Controller (rev 07)
:00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev 
d0)
:00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] 
Sound Controller (rev a0)
:00:0a.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL-8139/8139C/8139C+ (rev 10)
:01:00.0 VGA compatible controller: nVidia Corporation NV5M64 [RIVA TNT2 
Model 64/Model 64 Pro] (rev 15)

ende:/mnt# lspci -n
:00:00.0 Class 0600: 1039:0645 (rev 02)
:00:01.0 Class 0604: 1039:0001
:00:02.0 Class 0601: 1039:0008
:00:02.2 Class 0c03: 1039:7001 (rev 07)
:00:02.3 Class 0c03: 1039:7001 (rev 07)
:00:02.5 Class 0101: 1039:5513 (rev d0)
:00:02.7 Class 0401: 1039:7012 (rev a0)
:00:0a.0 Class 0200: 10ec:8139 (rev 10)
:01:00.0 Class 0300: 10de:002d (rev 15)

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

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]

Comments/Problems: This time the install went really smooth, the new
installer is much better and much easier to use. I was surprised to
see the sound card working, as I could not configure it with debian
stable.


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



Bug#261659: Package: installation-reports

2004-07-27 Thread Kynan Cheng
Package: installation-reports

Debian-installer-version: sarge-i386-businesscard.iso
uname -a: can't get there
Date: july 27th 7:30am EDT
Method: Virtual PC 2004. linux26 kernel.

Machine: hp nc8000, virtual pc 2004 with 256mb and 16gb
Processor: pentium M
Memory: 512
Root Device: ide, /dev/hda 
Root Size/partition table: didn't get that far
Output of lspci: didn't get that far

Base System Installation Checklist:

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

Comments/Problems:

I loaded the most current sarge-businesscard.iso.
The system recognized the both network interfaces as: 
Digital Equipment Corporation DECChip 21140 [Fasternet]

I know that the linux drivers required for my interfaces are
bcm5700 for the wired and ipw2100 for the wireless.

I could not get a network connection to any of the linux archives,
and thus no debian =(.



=

BanzaiCracker
http://www.banzaicracker.com
Your source for digital media supplies


__ 
Post your free ad now! http://personals.yahoo.ca


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



Bug#261659: (no subject)

2004-07-27 Thread Kynan Cheng
I just also tried using the expert26 kernel to manually load the
tg3 driver and it said that the ethernet could not be detected.

=

BanzaiCracker
http://www.banzaicracker.com
Your source for digital media supplies


__ 
Post your free ad now! http://personals.yahoo.ca


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



Processing of vmelilo-installer_1.3_m68k.changes

2004-07-27 Thread Archive Administrator
vmelilo-installer_1.3_m68k.changes uploaded successfully to localhost
along with the files:
  vmelilo-installer_1.3.dsc
  vmelilo-installer_1.3.tar.gz
  vmelilo-installer_1.3_m68k.udeb

Greetings,

Your Debian queue daemon


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



vmelilo-installer_1.3_m68k.changes ACCEPTED

2004-07-27 Thread Debian Installer

Accepted:
vmelilo-installer_1.3.dsc
  to pool/main/v/vmelilo-installer/vmelilo-installer_1.3.dsc
vmelilo-installer_1.3.tar.gz
  to pool/main/v/vmelilo-installer/vmelilo-installer_1.3.tar.gz
vmelilo-installer_1.3_m68k.udeb
  to pool/main/v/vmelilo-installer/vmelilo-installer_1.3_m68k.udeb
Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



Processing of partman-ext2r0_1.0_mipsel+arm.changes

2004-07-27 Thread Archive Administrator
partman-ext2r0_1.0_mipsel+arm.changes uploaded successfully to localhost
along with the files:
  partman-ext2r0_1.0.dsc
  partman-ext2r0_1.0.tar.gz
  partman-ext2r0_1.0_mipsel.udeb
  partman-ext2r0_1.0_arm.udeb

Greetings,

Your Debian queue daemon


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



Bug#261671: some entries in languagechooser.l10n still untranslated

2004-07-27 Thread Eugeniy Meshcheryakov
Package: languagechooser
Severity: normal
Tags: l10n

 Some messages in languagelist.l10n sill untranslated after changing
format of this file:

Albanian: Albanian
Vietnamese: Vietnamese

Following translations seems to be incorrect (wrong case):

Slovenian: Slovenini (Slovenina?) 
Lithuanian: Lietuvikai - not sure about this

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26
Locale: LANG=uk_UA.KOI8-U, LC_CTYPE=uk_UA.KOI8-U


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



partman-ext2r0_1.0_mipsel+arm.changes ACCEPTED

2004-07-27 Thread Debian Installer

Accepted:
partman-ext2r0_1.0.dsc
  to pool/main/p/partman-ext2r0/partman-ext2r0_1.0.dsc
partman-ext2r0_1.0.tar.gz
  to pool/main/p/partman-ext2r0/partman-ext2r0_1.0.tar.gz
partman-ext2r0_1.0_arm.udeb
  to pool/main/p/partman-ext2r0/partman-ext2r0_1.0_arm.udeb
partman-ext2r0_1.0_mipsel.udeb
  to pool/main/p/partman-ext2r0/partman-ext2r0_1.0_mipsel.udeb
Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



[MailServer Notification] To External Sender: a virus was found a nd action taken.

2004-07-27 Thread System Attendant
ScanMail for Microsoft Exchange took action on the message.  The message
details were: 
Sender = [EMAIL PROTECTED]
Recipient(s) = [EMAIL PROTECTED];
Subject = delivery failed
Scanning time = 07/27/2004 07:16:54
Engine/Pattern = 7.000-1004/1.945.00

Action taken on message:
The attachment workshare.com.zip contained WORM_MYDOOM.M virus. ScanMail
took the action: Deleted. 
Warning to sender. ScanMail has detected a virus in an email you sent.


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



Bug#261682: installation-report: OS detection problems

2004-07-27 Thread Eugeniy Meshcheryakov
Package: installation-reports

INSTALL REPORT

Debian-installer-version: build from SVN, 2004/07/27
uname -a: Linux intel4 2.4.26 #1   26 19:53:34 EEST 2004 i686 GNU/Linux
Date: 2004/07/27
Method: using netboot initrd

Machine: Description of machine (eg, IBM Thinkpad R32)
Processor:
Memory:
Root Device: IDE?  SCSI?  Name of device?
Root Size/partition table:
part1   1364829302528+   5  Extended
part236493953 2449912+  4f  QNX4.x 3rd part (QNX Momentix)
part339544870 7365802+  83  Linux   (new Debian system)
part5   1  37  297139+  82  Linux swap (swap for new and old 
Debian systems)
part6  38  81  353398+  83  Linux   (root of old Debian system)
part7  82364828651896   8e  Linux LVM (old Debian System)
Output of lspci and lspci -n:

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

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]

Comments/Problems:

I installed unstable. There was no error in first stage. grub-installer
found my old Debian system (it was listed as Debian GNU/Linux ). It did
not found QNX, but I do not think that it is a problem.

After reboot grub appeared with following menu:
Debian GNU/Linux, kernel 2.4.26-1-686
Debian GNU/Linux, kernel 2.4.26-1-686 (recovery mode)
QNX Momentix (on /dev/hda6)

There was no other Debian GNU/Linux listed in menu and /dev/hda6 device
is really root partition of old Debian system. That not only problem.
Commands for loading QNX Momentix...:

root(hd0,5)
kernel  /boot/vmlinuz-2.6.3 ro root=/dev/hda6
initrd  /boot/initrd.img-2.4.26-1-686
savedefault
boot

Kernel 2.6.3 was not default in old system. I am not sure that 
this kernel will boot with that initrd ;-)
My old grub.conf attached.

Booted new Debian system. During boot some program detected that
I have nvidia card and loaded framebuffer module. After that I had
3 cursors instead of one :-) (one big graphical cursor, and too small 
cursors on top of sreen with blue line). I do not think that
loading framebuffer module is really necessery.

During passwd configuration I was asked about my full name. I entered 
my name in Ukrainian. After that passwd suggested me my first name
as default value for login - will it work? :-)


timeout 5
default 0
splashimage=(hd0,5)/boot/grub/splash.xpm.gz

title Debian GNU/Linux 3.0 (2.4.26)
root (hd0,5)
kernel /boot/vmlinuz-2.4.26 ro root=/dev/hda6 vga=771 video=vesa:[EMAIL 
PROTECTED]

title Debian GNU/Linux 3.0 (2.4.26-1-686)
root (hd0,5)
kernel /boot/vmlinuz-2.4.26-1-686 ro root=/dev/hda6
initrd /boot/initrd.img-2.4.26-1-686

title Debian GNU/Linux 3.0 (2.6.3)
root (hd0,5)
kernel /boot/vmlinuz-2.6.3 ro root=/dev/hda6


title QNX Momentix
root (hd0,2)
chainloader +1
boot


Re: d-i with Dell Dimension XPS M200s

2004-07-27 Thread Martin Michlmayr
* Jimen Ching [EMAIL PROTECTED] [2004-07-24 13:27]:
 I recently received an old Dell M200s tower desktop.  I tried to install
 Debian on it with beta4.  But the kernel failed to detect the IDE
 controller, so I don't have any drives at the drive partition stage.
 
 According to the Dell website, the M200s uses the SMSC FDC37C93xFR IO
 controller.  I did a search of the 2.4.23 kernel source tree and only
 found references to this chip in IrDA and the Alpha directory.  I see no
 references of this chip in the IDE driver directory.  But a search on
 google returns mailing list entries that imply people have installed

According to http://lists.debian.org/debian-cd/2002/04/msg00339.html
John H. Robinson has such a machine, so let's CC him.
-- 
Martin Michlmayr
[EMAIL PROTECTED]


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



Internet 2 is van ons allemaal !

2004-07-27 Thread Start Network
Title: Message



 Klik Snel hier voor meer info 
!!


Bug#261340: Installation Report

2004-07-27 Thread Martin Michlmayr
* Simon Morgan [EMAIL PROTECTED] [2004-07-25 11:54]:
 Was able to hit enter to actually boot the cd but when the installer was 
 started the keyboard stopped responding. Tried disabling ACPI etc but no 
 dice.

Can you boot with noapic nolapic ?
-- 
Martin Michlmayr
[EMAIL PROTECTED]


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



Bug#261659: Package: installation-reports

2004-07-27 Thread Martin Michlmayr
* Kynan Cheng [EMAIL PROTECTED] [2004-07-27 07:48]:
 Method: Virtual PC 2004. linux26 kernel.
 Machine: hp nc8000, virtual pc 2004 with 256mb and 16gb

 I loaded the most current sarge-businesscard.iso.
 The system recognized the both network interfaces as: 
 Digital Equipment Corporation DECChip 21140 [Fasternet]
 
 I know that the linux drivers required for my interfaces are
 bcm5700 for the wired and ipw2100 for the wireless.

Your laptop uses the bcm5700/tg3 module, but you're obviously running
debian-installer in Virtual PC and that emulates a DECChip network
card.  Your problem is most likely that Virtual PC's networking is not
configured properly.
-- 
Martin Michlmayr
[EMAIL PROTECTED]


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



Re: Debian Installer final string freeze status

2004-07-27 Thread Joey Hess
Joey Hess wrote:
 The following packages have updated translations and need to be
 uploaded, preferably before dinstall today. I won't do it as I only
 upload things that can build on i386:
 
 partitioner (has some non translation changes, so be careful)
 elilo-installer
 silo-installer (some unreleased but probably safe changes)
 palo-installer
 s390-netdevice
 zipl-installer
 s390-dasd
 nobootloader (has pending code changes that have to be done  tested first)
 partman-palo (lots of old code changes)

I've deleted ones from the list that have been uploaded, leaving those
that still need uploads.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#261586: acknowledged by developer (Re: Bug#261586: Not all task appear in tasksel)

2004-07-27 Thread Lior Kaplan
This is intended, taksel only uses the language tasks for new
installs, and it automatically installs an appropriate one.
When running 'tasksel --new-install' I don't see the language specific
tasks (I tried both with Hebrew  Enlgish locales). Which doesn't match 
your answer. Please clearify the situation. Thanks.

--
Regards,
Lior Kaplan
[EMAIL PROTECTED]
http://www.Guides.co.il
Debian GNU/Linux unstable (SID)
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: d-i with Dell Dimension XPS M200s

2004-07-27 Thread John H. Robinson, IV
Martin Michlmayr wrote:
 * Jimen Ching [EMAIL PROTECTED] [2004-07-24 13:27]:
  I recently received an old Dell M200s tower desktop.  I tried to install
  Debian on it with beta4.  But the kernel failed to detect the IDE
  controller, so I don't have any drives at the drive partition stage.
  
  According to the Dell website, the M200s uses the SMSC FDC37C93xFR IO
  controller.  I did a search of the 2.4.23 kernel source tree and only
  found references to this chip in IrDA and the Alpha directory.  I see no
  references of this chip in the IDE driver directory.  But a search on
  google returns mailing list entries that imply people have installed
 
 According to http://lists.debian.org/debian-cd/2002/04/msg00339.html
 John H. Robinson has such a machine, so let's CC him.

No, the system belonged to a friend of mine. I will pass on the inquiry.

-john


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



Re: Debian Installer final string freeze status

2004-07-27 Thread Martin Michlmayr
* Joey Hess [EMAIL PROTECTED] [2004-07-27 11:46]:
  The following packages have updated translations and need to be
  uploaded, preferably before dinstall today. I won't do it as I only
  upload things that can build on i386:
  
  nobootloader (has pending code changes that have to be done  tested first)

Sven, do you have this missing code or what was your plan with this
package?
-- 
Martin Michlmayr
[EMAIL PROTECTED]


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



Re: Debian Installer final string freeze status

2004-07-27 Thread Martin Michlmayr
* Joey Hess [EMAIL PROTECTED] [2004-07-27 11:46]:
  The following packages have updated translations and need to be
  uploaded, preferably before dinstall today. I won't do it as I only
  upload things that can build on i386:
  
  partman-palo (lots of old code changes)

Can someone test those changes?
-- 
Martin Michlmayr
[EMAIL PROTECTED]


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



Re: Debian Installer final string freeze status

2004-07-27 Thread Sven Luther
On Tue, Jul 27, 2004 at 05:01:19PM +0100, Martin Michlmayr wrote:
 * Joey Hess [EMAIL PROTECTED] [2004-07-27 11:46]:
   The following packages have updated translations and need to be
   uploaded, preferably before dinstall today. I won't do it as I only
   upload things that can build on i386:
   
   nobootloader (has pending code changes that have to be done  tested first)
 
 Sven, do you have this missing code or what was your plan with this
 package?

I will upload them today yet.

Friendly,

Sven Luther


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



Bug#261659: Package: installation-reports

2004-07-27 Thread Kynan Cheng
Thanks for the reply.

Virtual PC doesn't do any emulating at all - except for the hard
drive which is contained in a dynamically sized file.

I was able to access the net using gentoo's liveCD 2004.1 with the
smp (2.6.5) kernel, but installing gentoo is such a long process
that i gave it up.

Thoughts?



. --- Martin Michlmayr [EMAIL PROTECTED] wrote: anks
 * Kynan Cheng [EMAIL PROTECTED] [2004-07-27 07:48]:
  Method: Virtual PC 2004. linux26 kernel.
  Machine: hp nc8000, virtual pc 2004 with 256mb and 16gb
 
  I loaded the most current sarge-businesscard.iso.
  The system recognized the both network interfaces as: 
  Digital Equipment Corporation DECChip 21140 [Fasternet]
  
  I know that the linux drivers required for my interfaces are
  bcm5700 for the wired and ipw2100 for the wireless.
 
 Your laptop uses the bcm5700/tg3 module, but you're obviously
 running
 debian-installer in Virtual PC and that emulates a DECChip
 network
 card.  Your problem is most likely that Virtual PC's networking
 is not
 configured properly.
 -- 
 Martin Michlmayr
 [EMAIL PROTECTED]
  

=

BanzaiCracker
http://www.banzaicracker.com
Your source for digital media supplies


__ 
Post your free ad now! http://personals.yahoo.ca


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



Bug#261659: Package: installation-reports

2004-07-27 Thread Martin Michlmayr
* Kynan Cheng [EMAIL PROTECTED] [2004-07-27 11:45]:
 Virtual PC doesn't do any emulating at all - except for the hard
 drive which is contained in a dynamically sized file.

Are you sure about that?

http://www.microsoft.com/windows/virtualpc/evaluation/overview2004.mspx
says Virtual PC lets you create separate virtual machines on your
Windows desktop, each of which virtualizes the hardware of a complete
physical computer.
-- 
Martin Michlmayr
[EMAIL PROTECTED]


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



Processing of lilo-installer_1.00_i386.changes

2004-07-27 Thread Archive Administrator
lilo-installer_1.00_i386.changes uploaded successfully to localhost
along with the files:
  lilo-installer_1.00.dsc
  lilo-installer_1.00.tar.gz
  lilo-installer_1.00_i386.udeb

Greetings,

Your Debian queue daemon


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



Bug#249330: marked as done (Doesn't handle root on LVM)

2004-07-27 Thread Debian Bug Tracking System
Your message dated Tue, 27 Jul 2004 12:02:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#249330: fixed in lilo-installer 1.00
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--
Received: (at submit) by bugs.debian.org; 16 May 2004 16:58:21 +
From [EMAIL PROTECTED] Sun May 16 09:58:21 2004
Return-path: [EMAIL PROTECTED]
Received: from boy.univ.kiev.ua (mail.univ.kiev.ua) [193.125.78.122] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BPOxx-Si-00; Sun, 16 May 2004 09:58:21 -0700
Received: from intel4.icc.univ.kiev.ua (intel4.icc.univ.kiev.ua [10.25.0.243])
by mail.univ.kiev.ua (8.12.2/8.12.2) with ESMTP id i4GGwI1w078174
for [EMAIL PROTECTED]; Sun, 16 May 2004 19:58:18 +0300 (EEST)
Received: from eugen by intel4.icc.univ.kiev.ua with local (Exim 4.34)
id 1BPOxu-RQ-5d
for [EMAIL PROTECTED]; Sun, 16 May 2004 19:58:18 +0300
To: [EMAIL PROTECTED]
Message-Id: [EMAIL PROTECTED]
From: Eugeniy Meshcheryakov [EMAIL PROTECTED]
Date: Sun, 16 May 2004 19:58:18 +0300
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: installation-reports

Debian-installer-version: daily netboot initrd
uname -a: The result of running uname -a on a shell prompt
Date: 16.05.2004
Method: network install

Machine: Description of machine (eg, IBM Thinkpad R32)
Processor:
Memory:
Root Device: IDE?  SCSI?  Name of device?
Root Size/partition table: Feel free to paste the full partition
  table, with notes on which partitions are mounted where.
Output of lspci:

Base System Installation Checklist:

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

Comments/Problems:

I wnated to install Debian with root on LVM. On partitioning step first 
time i did not found LVM configuration, I expected to see it after all partitions,
then I found it on top of the menu. Then I created 1 partition (PV) and VG on it.
Creating LV on this VG with default size (all free space) failed. Relevant
output of vgdisplay follows:

VG Size: 57.27 GB
PE Size: 4.00 MB
Free PE / Size: 14660 / 57.27 GB


There free space = 14660 * 4.00 MB = 58640 MB = 57.265625 GB  57.27

Then I installed base system. This step failed on kernel installation.
Output on 3rd console:

.../initrd: device /dev/mapper/vg00/root not a block device

LVM was not installed in /target

Then I reformated discs and reinstalled base system. Before kernel installation
i did the following:

apt-install lvm2
chroot /target
mount /proc /proc -tproc
vgmknodes

Then installed kernel.

Installation of LILO failed too. I manualy edited lilo-installer.postinst
and set

disc_offered_devfs to /dev/ide/host0/bus0/target0/lun0/disc
disc_offered to /dev/hda

Then I rerun lilo-installer and choosen /dev/hda from list.

After system boot failed with the following messages on console:

 No volume groups found
...
/scripts/ext3-add-journal.sh: 32: arith: syntax error: 0x
...
/sbin/init: 417: arith: syntax error: 0x

Then kernel panic...


---
Received: (at 249330-close) by bugs.debian.org; 27 Jul 2004 16:08:15 +
From [EMAIL PROTECTED] Tue Jul 27 09:08:15 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BpUUx-uI-00; Tue, 27 Jul 2004 09:08:15 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BpUP1-0002fX-00; Tue, 27 Jul 2004 12:02:07 -0400
From: Joey Hess [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#249330: fixed in lilo-installer 1.00
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Tue, 27 Jul 2004 12:02:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org

lilo-installer_1.00_i386.changes ACCEPTED

2004-07-27 Thread Debian Installer

Accepted:
lilo-installer_1.00.dsc
  to pool/main/l/lilo-installer/lilo-installer_1.00.dsc
lilo-installer_1.00.tar.gz
  to pool/main/l/lilo-installer/lilo-installer_1.00.tar.gz
lilo-installer_1.00_i386.udeb
  to pool/main/l/lilo-installer/lilo-installer_1.00_i386.udeb
Announcing to [EMAIL PROTECTED]
Closing bugs: 249330 253908 258354 


Thank you for your contribution to Debian.


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



Bug#261703: discover1-data: Marvell 643[46]0 builtin ethernet driver.

2004-07-27 Thread Sven Luther
Package: discover1-data
Version: 1.2004.07.18
Severity: normal


Please apply this patch :

 patch --
--- pci.lst.orig2004-07-27 19:37:04.966841192 +0200
+++ pci.lst 2004-07-27 19:38:27.456300888 +0200
@@ -2852,7 +2852,7 @@
11ab5081unknown unknown MV88SX5081 8-port SATA I PCI-X Controller
11ab6041unknown unknown MV88SX6041 4-port SATA II PCI-X Controller
11ab6081unknown unknown MV88SX6081 8-port SATA II PCI-X Controller
-   11ab6460unknown unknown MV64360/64361/64362 System Controller
+   11ab6460ethernetmv64340_eth MV64360/64361/64362 builtin 
Gigabit Ethernet Adapter
11abf003unknown unknown GT-64010 Primary Image Piranha Image Generator
 11ac Canon Information Systems Research Aust.
 11ad Lite-On Communications Inc
 patch --

Which will enable the detection and loading of the ethernet driver for the
builtin gigabit ethernet ports of the Marvell MV64360/1/2 System Controller.
The same should go for the Marvell MV64340/1/2 ones for mips, but i don't know
their pci ids.

-- Package-specific info:
lspci:
:00:00.0 Host bridge: Marvell Technology Group Ltd. MV64360/64361/64362 System 
Controller (rev 03)
:00:01.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller 
(rev 46)
:00:05.0 SCSI storage controller: LSI Logic / Symbios Logic 53c810 (rev 23)
:00:0c.0 ISA bridge: VIA Technologies, Inc. VT8231 [PCI-to-ISA Bridge] (rev 10)
:00:0c.1 IDE interface: VIA Technologies, Inc.  
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
:00:0c.2 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 Controller 
(rev 1e)
:00:0c.3 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 Controller 
(rev 1e)
:00:0c.4 Bridge: VIA Technologies, Inc. VT8235 ACPI (rev 10)
:00:0c.5 Multimedia audio controller: VIA Technologies, Inc. VT82C686 AC97 Audio 
Controller (rev 40)
:00:0c.6 Communication controller: VIA Technologies, Inc. Intel 537 [AC97 Modem] 
(rev 20)
:00:0d.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 51)
0001:01:00.0 Host bridge: Marvell Technology Group Ltd. MV64360/64361/64362 System 
Controller (rev 03)
0001:01:08.0 VGA compatible controller: ATI Technologies Inc RV280 [Radeon 9200 SE] 
(rev 01)

:00:00.0 0600: 11ab:6460 (rev 03)
:00:01.0 0c00: 1106:3044 (rev 46)
:00:05.0 0100: 1000:0001 (rev 23)
:00:0c.0 0601: 1106:8231 (rev 10)
:00:0c.1 0101: 1106:0571 (rev 06)
:00:0c.2 0c03: 1106:3038 (rev 1e)
:00:0c.3 0c03: 1106:3038 (rev 1e)
:00:0c.4 0680: 1106:8235 (rev 10)
:00:0c.5 0401: 1106:3058 (rev 40)
:00:0c.6 0780: 1106:3068 (rev 20)
:00:0d.0 0200: 1106:3065 (rev 51)
0001:01:00.0 0600: 11ab:6460 (rev 03)
0001:01:08.0 0300: 1002:5964 (rev 01)
discover:


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.4.25-powerpc
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

-- no debconf information


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



Bug#261655: marked as done (Install report)

2004-07-27 Thread Debian Bug Tracking System
Your message dated Tue, 27 Jul 2004 19:58:22 +0200
with message-id [EMAIL PROTECTED]
and subject line Processed: Bug#261655: Install report
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--
Received: (at submit) by bugs.debian.org; 27 Jul 2004 11:39:03 +
From [EMAIL PROTECTED] Tue Jul 27 04:39:03 2004
Return-path: [EMAIL PROTECTED]
Received: from mail3.ugr.es [150.214.35.31] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BpQIQ-00019D-00; Tue, 27 Jul 2004 04:39:02 -0700
Received: from mail3.ugr.es (localhost [127.0.0.1])
by mail3.ugr.es (8.9.3p2-20030924/8.9.3) with ESMTP id NAA27978
for [EMAIL PROTECTED]; Tue, 27 Jul 2004 13:38:59 +0200 (MEST)
Received: from smtp1.ugr.es (smtp1.ugr.es [150.214.20.69])
by mail3.ugr.es (8.9.3p2-20030924/8.9.3) with ESMTP id NAA27969;
Tue, 27 Jul 2004 13:38:58 +0200 (MEST)
Received: from ende.ugr.es (ende.ugr.es [150.214.18.235])
by smtp1.ugr.es (8.9.3p2-20030924/8.9.1) with ESMTP id NAA23043;
Tue, 27 Jul 2004 13:38:58 +0200 (MEST)
From: Jose Alfredo =?iso-8859-1?q?Ca=F1izo_Rinc=F3n?= [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Organization: Universidad de Granada
To: [EMAIL PROTECTED]
Subject: Install report
Date: Tue, 27 Jul 2004 13:49:08 +0200
User-Agent: KMail/1.6.2
MIME-Version: 1.0
Content-Disposition: inline
Content-Type: text/plain;
  charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.5 required=4.0 tests=BAYES_30,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: installation-reports

INSTALL REPORT

Debian-installer-version: Saturday June 13 2004, image from
http://cdimage.debian.org/pub/cdimage-testing/sarge_d-i/i386/beta4/sarge-i386-netinst.iso
uname -a: Linux ende 2.4.25-1-386 #2 Wed Apr 14 19:38:08 EST 2004 i686 
GNU/Linux
Date: Saturday June 13, 2004, around 8pm
Method: Used beta4 installer, booting off from the CD. Installed over
the network from ftp.es.debian.org, not proxied, through a fast
internet connection at the university.

Machine: Desktop computer
Processor: Pentium 4 1.60 GHz, 256 cache
Memory: 516356 kB
Root Device: IDE, hda
Root Size/partition table: 
Disk /dev/hda: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/hda1   *   1248819984828+  83  Linux
/dev/hda225513644 8787555   83  Linux
/dev/hda336454865 9807682+  83  Linux
/dev/hda424892550  498015   82  Linux swap

/dev/hda1 is the root partition, hda2 and hda3 are for user data.

Output of lspci and lspci -n:
ende:/mnt# lspci
:00:00.0 Host bridge: Silicon Integrated Systems [SiS] SiS645 Host  
Memory  AGP Controller (rev 02)
:00:01.0 PCI bridge: Silicon Integrated Systems [SiS] Virtual PCI-to-PCI 
bridge (AGP)
:00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS85C503/5513 (LPC 
Bridge)
:00:02.2 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 
Controller (rev 07)
:00:02.3 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 
Controller (rev 07)
:00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev 
d0)
:00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] 
Sound Controller (rev a0)
:00:0a.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL-8139/8139C/8139C+ (rev 10)
:01:00.0 VGA compatible controller: nVidia Corporation NV5M64 [RIVA TNT2 
Model 64/Model 64 Pro] (rev 15)

ende:/mnt# lspci -n
:00:00.0 Class 0600: 1039:0645 (rev 02)
:00:01.0 Class 0604: 1039:0001
:00:02.0 Class 0601: 1039:0008
:00:02.2 Class 0c03: 1039:7001 (rev 07)
:00:02.3 Class 0c03: 1039:7001 (rev 07)
:00:02.5 Class 0101: 1039:5513 (rev d0)
:00:02.7 Class 0401: 1039:7012 (rev a0)
:00:0a.0 Class 0200: 10ec:8139 (rev 10)
:01:00.0 Class 0300: 10de:002d (rev 15)

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard 

Processing of partitioner_0.26_m68k.changes

2004-07-27 Thread Archive Administrator
partitioner_0.26_m68k.changes uploaded successfully to localhost
along with the files:
  partitioner_0.26.dsc
  partitioner_0.26.tar.gz
  partitioner_0.26_m68k.udeb

Greetings,

Your Debian queue daemon


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



partitioner_0.26_m68k.changes ACCEPTED

2004-07-27 Thread Debian Installer

Accepted:
partitioner_0.26.dsc
  to pool/main/p/partitioner/partitioner_0.26.dsc
partitioner_0.26.tar.gz
  to pool/main/p/partitioner/partitioner_0.26.tar.gz
partitioner_0.26_m68k.udeb
  to pool/main/p/partitioner/partitioner_0.26_m68k.udeb
Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



Bug#261721: Package: installation-reports

2004-07-27 Thread vegner utuni
Package: installation-reports

Debian-installer-version: Fill in date and from where you got the image

ISO image from
http://cdimage.debian.org/pub/cdimage-testing/cd/jigdo-area/i386/sarge-i386-1.jigdoDownload
 with jigdo at 26 Jul 2004


uname -a: The result of running uname -a on a shell prompt

Linux debian 2.4.26-1-386 #2 Sat May 1 16:31:24 EST 2004 i686 GNU/Linux


Date: Date and time of the install

27 Jul 2004  16:00



Method: How did you install?  What did you boot off?  If network
  install, from where?  Proxied?

Machine: Description of machine (eg, IBM Thinkpad R32)

Motherboard ASUS, Monitor FLATRON E701S, CR-RW 52x32x52x, Floppy 3 1/2

Processor:

AMD Athon 2.4

Memory:

512Mb DDR 266

Root Device: IDE 
Root Size/partition table: Feel free to paste the full partition
  table, with notes on which partitions are mounted where.

hda1  NTFS24116 Mb  (Windows XP)
hda2  Linux Ext3  10487 Mb  (/)
hda3  Linux Swap  863   Mb
hda4  Linux ReiserFS  4548 MB   (My old Debian /HOME)


Output of lspci:



:00:00.0 Host bridge: VIA Technologies, Inc. VT8378 [KM400] Chipset
Host Bri dge:00:01.0 PCI 
bridge: VIA Technologies, Inc. VT8237 PCI Bridge
:00:09.0 Communication controller: Individual Computers - Jens
Schoenfeld In tel 537:00:10.0 
USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
Contr oller (rev 80):00:10.1 
USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
Contr oller (rev 80):00:10.2 
USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
Contr oller (rev 80):00:10.3 
USB Controller: VIA Technologies, Inc. USB 2.0 (rev 82)
:00:11.0 ISA bridge: VIA Technologies, Inc. VT8235 ISA Bridge
:00:11.1 IDE interface: VIA Technologies, Inc.
VT82C586A/B/VT82C686/A/B/VT82 
   3x/A/C PIPC Bus Master IDE (rev 06):00:11.5 Multimedia audio controller: 
VIA Technologies, Inc.
VT8233/A/8235/8 237
AC97 Audio Controller (rev 50):00:12.0 Ethernet controller: VIA Technologies, Inc. 
VT6102 [Rhine-II]
(rev  74):01:00.0 VGA 
compatible controller: nVidia Corporation NV18 [GeForce4
MX 440  AGP 8x] (rev
a4)


Base System Installation Checklist:

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

Comments/Problems:

Description of the install, in prose, and any thoughts, comments
  and ideas you had during the initial install.

Install with options Desktop environment in tasksel with pt-br language.

Problems:

screen Configurando gdm. Error in text syntax.
screen Configurando o Exim v4 (exim -config). Error in width of dialog.

Graphics configurad with xf86config. No automatic detected.

Bye




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



Bug#261722: installation-reports

2004-07-27 Thread Axel . Calvet
Package: installation-reports 
 
Debian-installer-version: 25/7/2004 Debian official website 
installer v4 
uame a: Linux debian 2.6.3-1-386 #2 Tue Feb 24 20:20:23 EST 
2004 i686 GNU/Linux 
Date: 25/7/2004 
Method: network debian httpe debian Frnce no proxi 
 
Machine: self assembled 
Processor:AMD Athlon 2500+ 
Memory:512 mo 
Root Device: IDE dev/hdb1 maxtor 20 go 
Root Size/partition table:  
/dev/hda5   /windowsvfat 
/dev/hdb5   none1 goswap 
/dev/hdb1   /  5.2 GO ext3
/dev/hdb3   /usr/local   2.1 go   ext3
/dev/hdb4   /hdbext3   
/dev/hdd1   /hddext3   
/dev/hdc/media/cdromiso9660  
/dev/fd0/media/floppy (i got no floppy disk...)  
/dev/hdc/cdrom  iso9660  
/dev/sdb1   /cfcard  vfat   user,noauto,0   
 
Output of lspci: 
:00:00.0 Host bridge: Silicon Integrated Systems [SiS] 
746 Host (rev 10) 
:00:01.0 PCI bridge: Silicon Integrated Systems [SiS] 
SG86C202 
:00:02.0 ISA bridge: Silicon Integrated Systems [SiS] 
SiS963 [MuTIOL Media I
O] (rev 25) 
:00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown 
device 0016 
:00:02.5 IDE interface: Silicon Integrated Systems [SiS] 
5513 [IDE] 
:00:03.0 USB Controller: Silicon Integrated Systems [SiS] 
USB 1.0 Controller 
(rev 0f) 
:00:03.1 USB Controller: Silicon Integrated Systems [SiS] 
USB 1.0 Controller 
(rev 0f) 
:00:03.3 USB Controller: Silicon Integrated Systems [SiS] 
USB 2.0 Controller 
:00:04.0 Ethernet controller: Silicon Integrated Systems 
[SiS] SiS900 PCI Fa
st Ethernet (rev 90) 
:00:0c.0 Multimedia video controller: Brooktree 
Corporation Bt848 Video Capt
ure (rev 12) 
:00:0d.0 Multimedia audio controller: Yamaha Corporation 
YMF-744B [DS-1S Aud
io Controller] (rev 02) 
:01:00.0 VGA compatible controller: ATI Technologies Inc 
Radeon R350 [Radeon 
9800 Pro] 
:01:00.1 Display controller: ATI Technologies Inc Radeon 
R350 [Radeon 9800 P
ro] (Secondary) 
 
 
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](but did'nt detect windows)  
Reboot: [o] 
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't 
try it 
 
Comments/Problems: 
 
Perfect installation everything was fine except for the  x 
installation. 
As i know my card(Ati radeon 9800 pro) is not supported i 
chose the vesa driver. 
The trouble was that the detection tried to place it on a 
wrong pci slot (0:1:0:0) I had to correct it to 1:0:0:0 so 
that x works 
Best regards and continue the good work ! 




Bug#261340: Installation Report

2004-07-27 Thread Simon Morgan
Martin Michlmayr wrote:
Can you boot with noapic nolapic ?
I should have mentioned I tried that but unfortunately it didn't work.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Processed: kernel

2004-07-27 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign kernel 261340
Unknown command or malformed arguments to command.

 retitle 261340 keyboard doesn't work
Bug#261340: Installation Report
Changed Bug title.

 --
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]



Processed: kernel

2004-07-27 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 261340 kernel
Bug#261340: keyboard doesn't work
Bug reassigned from package `installation-reports' to `kernel'.

 --
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]



Re: New d-i devcamp?

2004-07-27 Thread martin f krafft
also sprach Petter Reinholdtsen [EMAIL PROTECTED] [2004.07.26.2352 +0200]:
 OK.  5 people confirmed their interest in a d-i devcamp.

Please add me to the list of interested parties.

-- 
Please do not CC me when replying to lists; I read them!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer, admin, and user
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP subkeys? Use subkeys.pgp.net as keyserver!


signature.asc
Description: Digital signature


Bug#261745: [hendrik@pooq.com: Re: Did that. Now no net.]

2004-07-27 Thread Hendrik Boom
Package: installation-reports

Debian-installer-version: Fill in date and from where you got the image
uname -a: The result of running uname -a on a shell prompt
Date: Date and time of the install
Method: How did you install?  What did you boot off?  If network
  install, from where?  Proxied?

Machine: Description of machine (eg, IBM Thinkpad R32)
Processor: Athlon maybe 1600?
Memory: 1 Gigabyte
Root Device: IDE?  SCSI?  Name of device? /dev/hda2, 8.5Gig
Root Size/partition table: Feel free to paste the full partition
  table, with notes on which partitions are mounted where.
Output of lspci:

pcilib: Cannot open /sys/bus/pci/devices
:00:00.0 Host bridge: VIA Technologies, Inc. VT8366/A/7 [Apollo KT266/A/333]
:00:01.0 PCI bridge: VIA Technologies, Inc. VT8366/A/7 [Apollo KT266/A/333 AGP]
:00:0d.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller 
(rev 46)
:00:0e.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL-8139/8139C/8139C+ (rev 10)
:00:0f.0 RAID bus controller: Promise Technology, Inc. 20265 (rev 02)
:00:10.0 USB Controller: VIA Technologies, Inc. VT6202 [USB 2.0 controller] (rev 
80)
:00:10.1 USB Controller: VIA Technologies, Inc. VT6202 [USB 2.0 controller] (rev 
80)
:00:10.2 USB Controller: VIA Technologies, Inc. VT6202 [USB 2.0 controller] (rev 
80)
:00:10.3 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 82)
:00:11.0 ISA bridge: VIA Technologies, Inc. VT8235 ISA Bridge
:00:11.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C/VT8235 PIPC Bus Master IDE (rev 06)
:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 
AC97 Audio Controller (rev 50)
:01:00.0 VGA compatible controller: ATI Technologies Inc R200 BB [Radeon All in 
Wonder 8500DV]


Base System Installation Checklist:

Initial boot worked:[O]
Configure network HW:   [E]
Config network: [E]
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:

Description of the install, in prose, and any thoughts, comments
  and ideas you had during the initial install.

I tried to install sarge on /dev/hda3, shile preserving an existing
woody on /dev/hda4, just in case...  /dev/hda1 is a Windows ME system,
ans /dev/hda2 is an extended partition with lots of secondary partitions,
mostly for Windows, but one swap partition.

I downloaded the beta-4 iso and burned a CD from it.  I booted that CD
using the SBM disk that I think I once got from www.bootdisk.com.
This got me into the debian net-installer, and installed onto /dev/hda3.
/dev/hda4 still contains my woody system, which still works
perfectly.  My Windows ME partition still works as imperfectly as ever.

But the new and very minimal sarge can't access the net.  Pings don't seem
to get as far as the ethernet card.

Here's the routing table:

Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse Iface
172.25.1.0  0.0.0.0 255.255.255.0   U 0  00 eth0
0.0.0.0 172.25.1.1  0.0.0.0 UG0  00 eth0

It's identical to the routing table on the woody system.

Here's the output from ifconfig:

eth0  Link encap:Ethernet  HWaddr 00:0A:E6:55:93:CD  
  inet addr:172.25.1.4  Bcast:172.25.1.255  Mask:255.255.255.0
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
  Interrupt:18 Base address:0xb400 

loLink encap:Local Loopback  
  inet addr:127.0.0.1  Mask:255.0.0.0
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:6 errors:0 dropped:0 overruns:0 frame:0
  TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0 
  RX bytes:657 (657.0 b)  TX bytes:657 (657.0 b)


It's the same as the one from woody, except that
woody gives me nonzero packet counts.
etho has interrupt: 18 instead of interrupt:5  Aren't these
dynamically assigned during boot, though?

Pinging to 172.25.1.4 and 127.0.0.1 work fine.  Both of them are,
of course, IP numbers for the machine doing the pinging, so it doesn't
need to get to the ethernet card.

What should I do to diagnose the problem.

Did the installer, which seemed pretty straightforward, miss some
essential component?  I did the default (I presume nonexpert 2.4 kernel)
installation.  Did I do something unobviously wrong?
Needless to say, I can't access any of the Debian archives
to get any further.

I might add that my 

Future of console-tools (was Re: Why isn't console-cyrillic part of console-data?)

2004-07-27 Thread Denis Barbier
[Alastair McKinstry]
 As there appears to be little interest in console-{tools,data}
 development upstream, I'm working towards merging stuff back
 to kbd.

FYI I am currently discussing with kbd maintainer and will
surely take it over very soon, but I will give it away if
you want to maintain it after sarge.

Denis


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



Bug#240367: various problems

2004-07-27 Thread Frederik Dannemare
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Don't know about that laptop, I'm afraid. Googling for 'suspend resume 
acpi toshiba kernel' should give you some pointers, though. 

On Tuesday 27 July 2004 20:51, you wrote:
 Will try it out. At the moment I have a new acpi toshiba laptop and I
 can't get standby/resume to work. Do you think it would on this?

 Quoting Frederik Dannemare [EMAIL PROTECTED]:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  Hi,
 
  first and foremost: thank you for your bug report
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=240367
 
  I'm currently processing old installation reports, and since you
  reported some problems with the debian installer back in March, I
  would very much appreciate it, if you could find time to download
  and test the latest[1] cd image and confirm whether you still see
  the problems you've mentioned.
 
  If you can confirm they are no longer present, I will close this
  report.
 
  Much has changed with the installer since March, and it is not
  unlikely that the problems you mention have been dealt with by the
  Debian Developers working on the installer.
 
  Looking forward to hearing from you again. Thank you for your time.
 
  [1]http://cdimage.debian.org/pub/cdimage-testing/daily/i386/current
 / - --
  Frederik Dannemare | mailto:[EMAIL PROTECTED]
  GnuPG key: search for 'dannemare' on http://pgpkeys.mit.edu
  Key fingerprint: BB7B 078A 0DBF 7663 180A  F84A 2D25 FAD5 9C4E B5A8
  http://frederik.dannemare.net | http://www.linuxworlddomination.dk
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.2.4 (GNU/Linux)
 
  iD8DBQFBBBZ8LSX61ZxOtagRAnVGAKCK1LxKZmKT0tqgo3wXsAlstDqeQACfYDZh
  P6H3M7dqT+Y2s1Q1AriNGME=
  =3ho2
  -END PGP SIGNATURE-

- -- 
Frederik Dannemare | mailto:[EMAIL PROTECTED]
GnuPG key: search for 'dannemare' on http://pgpkeys.mit.edu
Key fingerprint: BB7B 078A 0DBF 7663 180A  F84A 2D25 FAD5 9C4E B5A8
http://frederik.dannemare.net | http://www.linuxworlddomination.dk
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFBBuF9LSX61ZxOtagRAv1UAJ9KrF2Vfqw0xSfxUZ8/5tMqa9RVXACgmjCQ
dSWxdMiiVzaHNre/LuvzOCU=
=AVxN
-END PGP SIGNATURE-



Re: d-i with Dell Dimension XPS M200s

2004-07-27 Thread Jimen Ching
On Tue, 27 Jul 2004, Martin Michlmayr wrote:
 According to the Dell website, the M200s uses the SMSC FDC37C93xFR IO
 controller.  I did a search of the 2.4.23 kernel source tree and only
 found references to this chip in IrDA and the Alpha directory.  I see no
 references of this chip in the IDE driver directory.  But a search on
 google returns mailing list entries that imply people have installed

According to http://lists.debian.org/debian-cd/2002/04/msg00339.html
John H. Robinson has such a machine, so let's CC him.

While I was waiting, I downloaded the woody boot floppies and tried
booting the system.  The woody kernel detected the IDE controller and
drive.  It turns out that this SMSC chipset uses the PIIX3 driver.

Someone on irc.debian.org said this driver can be found in the cd-drivers
image in beta4, so I downloaded that and loaded it.  That seems to have
worked; I was able to partition the drive.  But then, I got an error about
unable to mount the root partition on '/'.  Bringing up the shell, I was
able to manually mount the root partition (/dev/ide/host0/ide0/lun0/part1)
on /mnt.  So I'll look further into this problem and let you know how it
goes.

Thanks for the response.

--jc

P.S.  If anyone knows why the mount of root failed, let me know...

-- 
Jimen Ching (WH6BRR)  [EMAIL PROTECTED] [EMAIL PROTECTED]


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



Bug#261766: OldWorld PowerPC d-i still some bugs left

2004-07-27 Thread Rick_Thomas
Package: installation-reports

 powerpc businesscard 20040727 OldWorld PowerMac
 
INSTALL REPORT


Debian-installer-version: Fill in date and from where you got the image
sid_d-i/powerpc/20040727

uname -a: The result of running uname -a on a shell prompt
Linux debian 2.6.7-powerpc #1 Sat Jul 10 03:47:45 CEST 2004 ppc GNU/Linux

Date:
2004/07/27 23:00 GMT

Method:
How did you install?
businesscard CD-ROM

What did you boot off?
MacOS-9 via BootX

If network install, from where?  /etc/apt/sources.list
#deb ftp://ftp.debian.org/debian/ sarge main
deb ftp://mirrors.usc.edu/pub/linux/distributions/debian/ testing main
deb-src ftp://mirrors.usc.edu/pub/linux/distributions/debian/ testing main   

Proxied?
No

Machine: Description of machine (eg, IBM Thinkpad R32)
OldWorld PowerMac G3 beige minitower

Processor: G3
Memory: 384 MB
Root Device: 
 IDE?  SCSI?
   IDE

 Name of device?
  /dev/hdg

Root Size/partition table:  Feel free to paste the full partition
  table, with notes on which partitions are mounted where.

/dev/hdg
#type name  length   base  ( size )  
system
/dev/hdg1 Apple_partition_map Apple 63 @ 1 ( 31.5k)  
Partition map
/dev/hdg2  Apple_Driver43 Macintosh 54 @ 64( 27.0k)  
Driver 4.3
/dev/hdg3  Apple_Driver43 Macintosh 74 @ 118   ( 37.0k)  
Driver 4.3
/dev/hdg4  Apple_Driver_IOKit Macintosh512 @ 192   (256.0k)  
Unknown
/dev/hdg5   Apple_Patches Patch Partition  512 @ 704   (256.0k)  
Unknown
/dev/hdg6   Apple_HFS untitled 2097152 @ 1216  (  1.0G)  
HFS (MacOS-9)
/dev/hdg7 Apple_UNIX_SVR2 root19531251 @ 2098368   (  9.3G)  
Linux native (2.4 kernel)
/dev/hdg8 Apple_UNIX_SVR2 swap 1953126 @ 21629619  (953.7M)  
Linux swap
/dev/hdg9 Apple_UNIX_SVR2 root19531251 @ 23582745  (  9.3G)  
Linux native (2.6 kernel)
/dev/hdg10 Apple_Free Extra  277059060 @ 43113996  (132.1G)  
Free space

Block size=512, Number of Blocks=320173056
DeviceType=0x0, DeviceId=0x0
Drivers-
1: @ 64 for 23, type=0x1
2: @ 118 for 36, type=0x



Output of lspci and lspci -n:

:00:00.0 0600: 1057:0002 (rev 40)
:00:0e.0 0100: 1191:0009 (rev 06)
:00:10.0 ff00: 106b:0010 (rev 01)
:00:12.0 0300: 1002:4754 (rev 9a)


:00:00.0 Host bridge: Motorola MPC106 [Grackle] (rev 40)
:00:0e.0 SCSI storage controller: Artop Electronic Corp ATP865 (rev 06)
:00:10.0 ff00: Apple Computer Inc. Heathrow Mac I/O (rev 01)
:00:12.0 VGA compatible controller: ATI Technologies Inc 3D Rage I/II 215GT 
[Mach64 GT] (rev 9a)



Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[o] note 3
Configure network HW:   [?] note 1
Config network: [e] note 2
Detect CD:  [o]
Load installer modules: [o]
Detect hard drives: [?] note 1
Partition hard drives:  [o]
Create file systems:[o] note 4
Mount partitions:   [o]
Install base system:[o]
Install boot loader:[ ] note 3
Reboot: [o] note 3

Comments/Problems:

Note 0:

 The new 2.6-only businesscard image is groovy.  It's certainly
 smaller and sleeker.  But there are still situations where a 2.6
 kernel won't work, and 2.4 is still needed.  (see Bug#261463:
 Missing drivers on powerpc 2.6 businesscard install) Would it
 be possible to make a 2.4-only CD available?

Note 1:

 It still asks for the Linux floppy driver module (twice) at the
 Detect Network hardware phase and the Detect hardware
 (looking for hard disks) phase.  (See Bug#261463)

Note 2:

 Manual network configuration still doesn't work! (See
 Bug#261460: Non-DHCP network config step of d-i is broken)

Note 3:

 Because this is an OldWorld machine, I use BootX. This works just
 fine for me...

Note 4:

 Why is it necessary to have the partitioner Check the swap
 space?  (See Bug#261448)

Install logs and other status info is available in /var/log/debian-installer/.
Once you have filled out this report, mail it to [EMAIL PROTECTED]


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



Re: Installing Sarge on Alpha

2004-07-27 Thread Horms
On Sun, Jul 25, 2004 at 03:47:20PM -0700, Steve Langasek wrote:
 On Thu, Jul 22, 2004 at 02:57:46PM +0900, Horms wrote:
 
  There is a new kernel-source-2.4.26 package, 2.4.26-4 
  and a new kernel-image-2.4.26-i386 package, also 2.4.26-4.
  There are no changes to the kernel-image package,
  other than building it against the new kernel-source.
 
  The change log for the kernel-source package is:
 
 * Fix stack allocation in crypt(). Patch by Herbert Xu
   (closes: #257120)
   . crypto/cipher.c
 * Reversed patch to PCI initialisation code on Alpha
   Patch by Herbert Xu, Steve Langasek
   (closes: #253787)
   . arch/alpha/kernel/core_cia.c
 
  If there are no objections from the kernel-team I plan
  to upload these tomorrow.
 
  Feel free to test, build other binary packages etc...  I do not plan to
  make any changes to this unless something _bad_ crops up.  But It would
  be probably best not to upload a kernel-image package that is built from
  kernel-source-2.4.26-2.4.26-4, just in case there is a last minute
  change.
 
 Thanks again for addressing this quickly.
 
 I'm preparing an NMU of kernel-image-2.4.26-alpha.  If there are no
 objections, I can upload this package tonight as soon as I've been able
 to verify it fixes the bug in question.

That is fine by me, I don't believe anyone else has an upload pending.

-- 
Horms


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



Bug#261586: acknowledged by developer (Re: Bug#261586: Not all task appear in tasksel)

2004-07-27 Thread Kenshi Muto
At Tue, 27 Jul 2004 18:30:17 +0300,
Lior Kaplan wrote:
  This is intended, taksel only uses the language tasks for new
  installs, and it automatically installs an appropriate one.
 
 When running 'tasksel --new-install' I don't see the language specific
 tasks (I tried both with Hebrew  Enlgish locales). Which doesn't match 
 your answer. Please clearify the situation. Thanks.

Language task is selected tacitly.
(You can see /usr/lib/tasksel/tests/lang)

Thanks,
-- 
Kenshi Muto
[EMAIL PROTECTED]


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



Bug#261745: further info about bug 261745

2004-07-27 Thread Hendrik Boom
I just realized I left out some of the fields in the installation report
template for bug#261745

Debian-installer-version: Beta 4, downloaded from 
http://cdimage.debian.org/pub/cd-image-testing/sarge_d-i/i386/beta4/sarge-i386-netinst.iso
uname -a: Linux lovesong 2.4.25-1-386 #2 Wed Apr 14 19:38:08 EST 2004 i686 GNU/Linux
Date: July 26 and 27, 2004.
Method: Booted from the Beta-4 net-install CD using a Smart Boot Manager
   floppy.  Never got around to the network part of the install; that's
   the problem.  Not proxied, but if it had worked, it would have been
   through an IP-masquerading woody installation running on a 100 MHz
   Pentium.



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



Bug#250028: 2.4 ia64 kernels

2004-07-27 Thread dann frazier
2.4 ia64 kernels also have CONFIG_IP_PNP turned off.
-- 
---
dann frazier
Hewlett-Packard
Linux and Open Source Lab
[EMAIL PROTECTED]



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



Bug#250028: ia64 rarp

2004-07-27 Thread Joey Hess
for ia64, d-i uses the 2.4.26 kernel in the archive. Since Geert didn't
check it, I'm not removing rarp for this arch yet.

-- 
see shy jo


signature.asc
Description: Digital signature


2.6 kernel removals

2004-07-27 Thread Andres Salomon
From what I can gather, it would appear that debian-installer is using
2.6.7 kernels for the following archs: i386, ia64, powerpc, and sparc.
Every other arch is using 2.4 or older.

In sid, we've got 2.6.6 for alpha, and 2.6.7 for i386, ia64, and
powerpc.  I plan to request the removal of all older kernels.  This
means the following will go:

kernel-source-2.6.3
kernel-source-2.6.5
kernel-source-2.6.6  (if alpha still needs this, let me know)
kernel-patch-powerpc-2.6.5
kernel-patch-powerpc-2.6.6 (already requested: #261468)
kernel-patch-2.6.3-ia64
kernel-patch-2.6.4-ia64
kernel-patch-2.6.6-ia64
kernel-image-2.6.4-ia64 (already requested: #261457) 
kernel-image-2.6.6-ia64
kernel-image-2.6.5-alpha
kernel-image-2.6.5-i386 (already requested: #261773)
kernel-image-2.6.6-i386 (already requested: #261773)

If anyone has any problems w/ the removal of these, let me know.
Otherwise, I'll file bugs.

Hopefully someone's working on 2.6.7 for alpha, so we can get rid of all
traces of 2.6.[1-6] from sid..



-- 
Andres Salomon [EMAIL PROTECTED]


signature.asc
Description: This is a digitally signed message part


Processing of aboot-installer_0.0.14_alpha.changes

2004-07-27 Thread Archive Administrator
aboot-installer_0.0.14_alpha.changes uploaded successfully to localhost
along with the files:
  aboot-installer_0.0.14.dsc
  aboot-installer_0.0.14.tar.gz
  aboot-installer_0.0.14_alpha.udeb

Greetings,

Your Debian queue daemon


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



aboot-installer_0.0.14_alpha.changes ACCEPTED

2004-07-27 Thread Debian Installer

Accepted:
aboot-installer_0.0.14.dsc
  to pool/main/a/aboot-installer/aboot-installer_0.0.14.dsc
aboot-installer_0.0.14.tar.gz
  to pool/main/a/aboot-installer/aboot-installer_0.0.14.tar.gz
aboot-installer_0.0.14_alpha.udeb
  to pool/main/a/aboot-installer/aboot-installer_0.0.14_alpha.udeb
Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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