Re: next d-i meeting - 2010.12.01, 20h00 GMT

2010-11-30 Thread Christian PERRIER
Quoting Otavio Salvador (ota...@ossystems.com.br):
 On Mon, Nov 29, 2010 at 19:01, Miguel Figueiredo el...@debianpt.org wrote:
  next Debian Installer meeting will take place on IRC, OFTC network, #debian-
  boot, 2 weeks after previous meeting .
  It is scheduled for next Wednesday - 2010.12.01, 20:00 UTC [1].
 
 I am very sorry but I won't be able to participate on this meeting.
 
 I have my Graduation Thesis on this day at 19:00 UTC so I won't be
 able to do it and come back to participate of the meeting on time.


I'm very unsure too...:-(




signature.asc
Description: Digital signature


Re: Bug#605009: serious performance regression with ext4

2010-11-30 Thread Mike Hommey
On Mon, Nov 29, 2010 at 07:18:17AM +0100, Guillem Jover wrote:
  What's going on here?  sync_file_range() is a Linux specific system
  call that has been around for a while.  It allows program to control
  when writeback happens in a very low-level fashion.  The first set of
  sync_file_range() system calls causes the system to start writing back
  each file once it has finished being extracted.  It doesn't actually
  wait for the write to finish; it just starts the writeback.
 
 Hmm, ok so what about posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED)
 instead, skimming over the kernel source seems to indicate it might
 end up doing more or less the same thing but in a portable way?

On the other hand, there is no guarantee that other kernels do the same,
nor that Linux will keep doing it in the future. Using sync_file_range
and possibly the corresponding BSD syscall seems a better solution.
(and apparently the assumption with fadvise doesn't work with xfs)

Mike


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130090755.ga8...@glandium.org



Re: Bug#605009: serious performance regression with ext4

2010-11-30 Thread Samuel Thibault
Mike Hommey, le Tue 30 Nov 2010 10:07:55 +0100, a écrit :
 On Mon, Nov 29, 2010 at 07:18:17AM +0100, Guillem Jover wrote:
   What's going on here?  sync_file_range() is a Linux specific system
   call that has been around for a while.  It allows program to control
   when writeback happens in a very low-level fashion.  The first set of
   sync_file_range() system calls causes the system to start writing back
   each file once it has finished being extracted.  It doesn't actually
   wait for the write to finish; it just starts the writeback.
  
  Hmm, ok so what about posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED)
  instead, skimming over the kernel source seems to indicate it might
  end up doing more or less the same thing but in a portable way?
 
 On the other hand, there is no guarantee that other kernels do the same,

Err, that's posix.

Samuel


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130093511.ge9...@const.bordeaux.inria.fr



Re: Bug#605009: serious performance regression with ext4

2010-11-30 Thread Bastian Blank
On Tue, Nov 30, 2010 at 10:35:11AM +0100, Samuel Thibault wrote:
 Mike Hommey, le Tue 30 Nov 2010 10:07:55 +0100, a écrit :
  On Mon, Nov 29, 2010 at 07:18:17AM +0100, Guillem Jover wrote:
   Hmm, ok so what about posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED)
   instead, skimming over the kernel source seems to indicate it might
   end up doing more or less the same thing but in a portable way?
  On the other hand, there is no guarantee that other kernels do the same,
 Err, that's posix.

What is POSIX? What exactly is written in the standard? Please quote.

Okay, here is the quote[1]:
| POSIX_FADV_DONTNEED
| Specifies that the application expects that it will not access the
| specified data in the near future.

sync_file_range is Linux-specific and documented to do exactly what we
want[2]. posix_fadvise with POSIX_FADV_DONTNEED is not documented to do
what we want but only does it as a side-effect (and may hurt others
because it evicts anything of the cache).

Bastian

[1]: http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fadvise.html
[2]: fs/sync.c
-- 
That unit is a woman.
A mass of conflicting impulses.
-- Spock and Nomad, The Changeling, stardate 3541.9


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130102602.ga22...@wavehammer.waldi.eu.org



Re: Bug#605009: serious performance regression with ext4

2010-11-30 Thread Mike Hommey
On Tue, Nov 30, 2010 at 10:35:11AM +0100, Samuel Thibault wrote:
 Mike Hommey, le Tue 30 Nov 2010 10:07:55 +0100, a écrit :
  On Mon, Nov 29, 2010 at 07:18:17AM +0100, Guillem Jover wrote:
What's going on here?  sync_file_range() is a Linux specific system
call that has been around for a while.  It allows program to control
when writeback happens in a very low-level fashion.  The first set of
sync_file_range() system calls causes the system to start writing back
each file once it has finished being extracted.  It doesn't actually
wait for the write to finish; it just starts the writeback.
   
   Hmm, ok so what about posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED)
   instead, skimming over the kernel source seems to indicate it might
   end up doing more or less the same thing but in a portable way?
  
  On the other hand, there is no guarantee that other kernels do the same,
 
 Err, that's posix.

Being posix doesn't guarantee that posix_fadvise(fd, 0, 0,
POSIX_FADV_DONTNEED) is going to start write back, which is the desired
effect, but not what you may actually get, depending on the kernel.

Mike


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130103043.ga9...@glandium.org



Bug#605468: beta1 installer, upgrade to grub2, doesn't show other boot options on reboot

2010-11-30 Thread mjohnson


Package: installation-reports

Boot method: Debian Installer
beta1 netinst CD
Image version:
http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-netinst.iso
Date: 2010-11-24

Machine: Acer Extensa 4420
Laptop
Processor: AMD Athlon 64 X2 Dual-Core Processor TK-57
Memory: 4GB
Partitions: 
Filesystem    Type  
1K-blocks  Used Available Use% Mounted on
/dev/sda6 ext4   
11187352   5174932   5444124  49% /
tmpfs    tmpfs
1901276 0   1901276   0% /lib/init/rw
udev tmpfs
1896560   240   1896320   1% /dev
tmpfs    tmpfs
1901276 0   1901276   0% /dev/shm

Output of lspci
-knn (or lspci -nn):
00:00.0 Host bridge [0600]: ATI Technologies Inc
RS690 Host Bridge [1002:7910]
    Subsystem: Acer Incorporated [ALI]
Device [1025:0123]
00:01.0 PCI bridge [0604]: ATI Technologies Inc
RS690 PCI to PCI Bridge (Internal gfx) [1002:7912]
00:04.0 PCI bridge
[0604]: ATI Technologies Inc Device [1002:7914]
    Kernel driver in
use: pcieport
00:05.0 PCI bridge [0604]: ATI Technologies Inc RS690
PCI to PCI Bridge (PCI Express Port 1) [1002:7915]
    Kernel driver
in use: pcieport
00:06.0 PCI bridge [0604]: ATI Technologies Inc
RS690 PCI to PCI Bridge (PCI Express Port 2) [1002:7916]
    Kernel
driver in use: pcieport
00:12.0 SATA controller [0106]: ATI
Technologies Inc SB600 Non-Raid-5 SATA [1002:4380]
    Subsystem:
Acer Incorporated [ALI] Device [1025:0123]
    Kernel driver in use:
ahci
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB600 USB
(OHCI0) [1002:4387]
    Subsystem: Acer Incorporated [ALI] Device
[1025:0123]
    Kernel driver in use: ohci_hcd
00:13.1 USB
Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI1) [1002:4388]
    Subsystem: Acer Incorporated [ALI] Device [1025:0123]
   
Kernel driver in use: ohci_hcd
00:13.2 USB Controller [0c03]: ATI
Technologies Inc SB600 USB (OHCI2) [1002:4389]
    Subsystem: Acer
Incorporated [ALI] Device [1025:0123]
    Kernel driver in use:
ohci_hcd
00:13.3 USB Controller [0c03]: ATI Technologies Inc SB600
USB (OHCI3) [1002:438a]
    Subsystem: Acer Incorporated [ALI] Device
[1025:0123]
    Kernel driver in use: ohci_hcd
00:13.4 USB
Controller [0c03]: ATI Technologies Inc SB600 USB (OHCI4) [1002:438b]
    Subsystem: Acer Incorporated [ALI] Device [1025:0123]
   
Kernel driver in use: ohci_hcd
00:13.5 USB Controller [0c03]: ATI
Technologies Inc SB600 USB Controller (EHCI) [1002:4386]
   
Subsystem: Acer Incorporated [ALI] Device [1025:0123]
    Kernel
driver in use: ehci_hcd
00:14.0 SMBus [0c05]: ATI Technologies Inc
SBx00 SMBus Controller [1002:4385] (rev 14)
    Subsystem: Acer
Incorporated [ALI] Device [1025:0123]
    Kernel driver in use:
piix4_smbus
00:14.1 IDE interface [0101]: ATI Technologies Inc SB600
IDE [1002:438c]
    Subsystem: Acer Incorporated [ALI] Device
[1025:0123]
    Kernel driver in use: pata_atiixp
00:14.2 Audio
device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA)
[1002:4383]
    Subsystem: Acer Incorporated [ALI] Device
[1025:0123]
    Kernel driver in use: HDA Intel
00:14.3 ISA
bridge [0601]: ATI Technologies Inc SB600 PCI to LPC Bridge [1002:438d]
    Subsystem: Acer Incorporated [ALI] Device [1025:0123]
00:14.4
PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge
[1002:4384]
00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD]
K8 [Athlon64/Opteron] HyperTransport Technology Configuration
[1022:1100]
00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD]
K8 [Athlon64/Opteron] Address Map [1022:1101]
00:18.2 Host bridge
[0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
[1022:1102]
00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD]
K8 [Athlon64/Opteron] Miscellaneous Control [1022:1103]
    Kernel
driver in use: k8temp
01:05.0 VGA compatible controller [0300]: ATI
Technologies Inc RS690M [Radeon X1200 Series] [1002:791f]
   
Subsystem: Acer Incorporated [ALI] Device [1025:0123]
    Kernel
driver in use: radeon
02:00.0 Ethernet controller [0200]: Marvell
Technology Group Ltd. 88E8071 PCI-E Gigabit Ethernet Controller
[11ab:436b] (rev 15)
    Subsystem: Acer Incorporated [ALI] Device
[1025:0123]
    Kernel driver in use: sky2
05:00.0 Network
controller [0280]: Broadcom Corporation BCM4312 802.11b/g LP-PHY
[14e4:4315] (rev 01)
    Subsystem: Foxconn International, Inc.
Device [105b:e003]
    Kernel driver in use: b43-pci-bridge
0b:06.0 CardBus bridge [0607]: O2 Micro, Inc. OZ711SP1 Memory CardBus
Controller [1217:7136] (rev 01)
    Subsystem: Acer Incorporated
[ALI] Device [1025:0123]
    Kernel driver in use: yenta_cardbus
0b:06.2 SD Host controller [0805]: O2 Micro, Inc. Integrated MMC/SD
Controller [1217:7120] (rev 02)
    Subsystem: Acer Incorporated
[ALI] Device [1025:0123]
    Kernel driver in use: sdhci-pci
0b:06.3 Mass storage controller [0180]: O2 Micro, Inc. Integrated MS/xD
Controller [1217:7130] (rev 01)
    Subsystem: Acer Incorporated
[ALI] Device [1025:0123]
0b:06.4 FireWire (IEEE 1394) 

Bug#605477:

2010-11-30 Thread Giovanni Proscia
Package: installation-reports

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-businesscard.iso
Date: 2010-11-30 11:00 GMT+1

Machine: Microsoft Hyper-V virtual Machine
Processor: 4x 2.86Ghz
Memory: 512 MB
Partitions: df -Tl will do; the raw partition table is preferred

Output of lspci -knn (or lspci -nn):

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

Initial boot:   [O]
Detect network card:[E]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:

The installer was unable to detect the network card, the only way to take it to 
works was removing synthetic network card and installing an emulated network 
card into the virtual machine.

Don't know why, but it seems that the kernel lacks of network drivers, also if 
they has been released into 2.6.32.

The graphical interface now works correctly, in lenny not. The text interface 
now update regularly, il lenny not.



--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/da0134d0f01f6c4a86e21f5f551f9e57c0622ad...@maitrz-exchange.mainsoft.local



Bug#605478:

2010-11-30 Thread Giovanni Proscia
Package: installation-reports

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-businesscard.iso
Date: 2010-11-30 11:00 GMT+1

Machine: Microsoft Hyper-V virtual Machine
Processor: 4x 2.86Ghz
Memory: 512 MB
Partitions: df -Tl will do; the raw partition table is preferred

Output of lspci -knn (or lspci -nn):

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

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [ ]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

The installer was able to detect only emulated network card.

The graphical interface now works correctly, in lenny not. The text interface 
now update regularly, il lenny not.

The installer hasn't asked me for the timezone.



--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/da0134d0f01f6c4a86e21f5f551f9e57c0622ad...@maitrz-exchange.mainsoft.local



Processed: Re: Bug#603665: No working audio on Sun Ultra5

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 603665 src:linux-2.6 2.6.32-27
Bug #603665 [installation-reports] No working audio on Sun Ultra5
Bug reassigned from package 'installation-reports' to 'src:linux-2.6'.
Bug #603665 [src:linux-2.6] No working audio on Sun Ultra5
Bug Marked as found in versions linux-2.6/2.6.32-27.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603665: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603665
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129112666113288.transcr...@bugs.debian.org



Processed: reassign 603528 to upgrade-reports

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 603528 upgrade-reports
Bug #603528 [installation-reports] installation-reports: Squeeze dist-upgrade 
report
Bug reassigned from package 'installation-reports' to 'upgrade-reports'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603528: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603528
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129112881525193.transcr...@bugs.debian.org



Bug#603649: installation-reports: XServe G5: Network interface goes down

2010-11-30 Thread Denis Laxalde
tags 603649 + moreinfo
thanks

Milan Kupcevic a écrit :
 Package: installation-reports
 
 Boot method: CD
 Image version:
 http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/powerpc/iso-cd/debian-testing-powerpc-netinst.iso
 Date: Mon Nov 15 20:52:21 EST 2010
 
 Machine: XServe G5
[...] 
 I get Configure the package manager window with Bad archive mirror
 message. I open second terminal and check network interface state with
 ip addr command. Network interfaces are there, but in DOWN state. At
 this point I chose Go Back until I get to the Debian installer main
 menu, where I choose 'Configure the network' and go through network
 configuration again. Network interface gets up, the Configure the
 package manager installer module then continues fine.
 
 I went through installation procedure several times. The same problem
 happened every time. Network interface initially gets detected and
 configured, but goes into DOWN state at the point when Detect disks
 discovers hardware.

From the syslog you provided:
 Nov 16 00:53:50 kernel: [   41.455504] tg3 0001:07:04.0: firmware: requesting 
 tigon/tg3_tso.bin
 Nov 16 00:53:50 kernel: [   41.459852] eth0: Failed to load firmware 
 tigon/tg3_tso.bin
 Nov 16 00:53:50 kernel: [   41.459857] eth0: TSO capability disabled.
 Nov 16 00:53:50 kernel: [   41.514498] ADDRCONF(NETDEV_UP): eth0: link is not 
 ready
 Nov 16 00:53:50 kernel: [   41.585672] tg3 0001:07:04.1: firmware: requesting 
 tigon/tg3_tso.bin
 Nov 16 00:53:50 kernel: [   41.589493] eth1: Failed to load firmware 
 tigon/tg3_tso.bin
 Nov 16 00:53:50 kernel: [   41.589497] eth1: TSO capability disabled.
 Nov 16 00:53:50 kernel: [   41.644029] ADDRCONF(NETDEV_UP): eth1: link is not 
 ready
 Nov 16 00:53:51 check-missing-firmware: missing firmware files 
 (tigon/tg3_tso.bin) for tg3
(The same appears several times later.)

Aren't you missing a firmware for you network card? Did you load the
firmware during installation?

Cheers,

Denis



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130154439.ga8...@mail.gmail.com



Processed: Re: Bug#603649: installation-reports: XServe G5: Network interface goes down

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 603649 + moreinfo
Bug #603649 [installation-reports] installation-reports: XServe G5: Network 
interface goes down
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603649: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603649
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129113189618403.transcr...@bugs.debian.org



Reassigning bugs to X packages

2010-11-30 Thread Cyril Brulebois
Hi,

here's a tiny memo. :)

When reassigning bugs to X, we'd appreciate if you could:
 - reassign to the xorg package (without any version)
 - ask the submitter to run the X bugscript and attach its output:
 /usr/share/bug/xorg/script 3/tmp/script.log
 - cc debia...@lists.debian.org

Thanks!

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#603087: marked as done (amd64 squeeze install success - Dell R815)

2010-11-30 Thread Debian Bug Tracking System
Your message dated Tue, 30 Nov 2010 11:54:52 -0500
with message-id 20101130115452.572b6...@gmail.com
and subject line Re: Bug#603087: amd64 squeeze install success - Dell R815
has caused the Debian Bug report #603087,
regarding amd64 squeeze install success - Dell R815
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
603087: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603087
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports

Boot method: CD (squeeze beta 1 netinst)
Image version: 
http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-netinst.iso
Date: 2010-11-10

Machine: Dell PowerEdge R815
Processor: multiple Opteron 6128
Memory: 4 GB
Partitions: defaults using guided LVM, but I'm modifying them

Output of lspci -knn (or lspci -nn):
00:00.0 Host bridge [0600]: ATI Technologies Inc RD890 PCI to PCI bridge 
(external gfx0 port A) [1002:5a13] (rev 02)
Subsystem: Dell Device [1028:0445]
00:02.0 PCI bridge [0604]: ATI Technologies Inc RD890 PCI to PCI bridge (PCI 
express gpp port B) [1002:5a16]
Kernel driver in use: pcieport
00:03.0 PCI bridge [0604]: ATI Technologies Inc RD890 PCI to PCI bridge (PCI 
express gpp port C) [1002:5a17]
Kernel driver in use: pcieport
00:04.0 PCI bridge [0604]: ATI Technologies Inc RD890 PCI to PCI bridge (PCI 
express gpp port D) [1002:5a18]
Kernel driver in use: pcieport
00:09.0 PCI bridge [0604]: ATI Technologies Inc RD890 PCI to PCI bridge (PCI 
express gpp port H) [1002:5a1c]
Kernel driver in use: pcieport
00:11.0 SATA controller [0106]: ATI Technologies Inc SB700/SB800 SATA 
Controller [IDE mode] [1002:4390]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ahci
00:12.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0 
Controller [1002:4397]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ohci_hcd
00:12.1 USB Controller [0c03]: ATI Technologies Inc SB700 USB OHCI1 Controller 
[1002:4398]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ohci_hcd
00:12.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI 
Controller [1002:4396]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ehci_hcd
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0 
Controller [1002:4397]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ohci_hcd
00:13.1 USB Controller [0c03]: ATI Technologies Inc SB700 USB OHCI1 Controller 
[1002:4398]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ohci_hcd
00:13.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI 
Controller [1002:4396]
Subsystem: Dell Device [1028:0445]
Kernel driver in use: ehci_hcd
00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385] 
(rev 3d)
Subsystem: Dell Device [1028:0445]
Kernel driver in use: piix4_smbus
00:14.3 ISA bridge [0601]: ATI Technologies Inc SB700/SB800 LPC host controller 
[1002:439d]
Subsystem: Dell Device [1028:0445]
00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge 
[1002:4384]
00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
HyperTransport Configuration [1022:1200]
00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Address Map [1022:1201]
00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
DRAM Controller [1022:1202]
00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Miscellaneous Control [1022:1203]
00:18.4 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Link Control [1022:1204]
00:19.0 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
HyperTransport Configuration [1022:1200]
00:19.1 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Address Map [1022:1201]
00:19.2 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
DRAM Controller [1022:1202]
00:19.3 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Miscellaneous Control [1022:1203]
00:19.4 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Link Control [1022:1204]
00:1a.0 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
HyperTransport Configuration [1022:1200]
00:1a.1 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor 
Address Map [1022:1201]
00:1a.2 Host bridge [0600]: Advanced 

Bug#605468: beta1 installer, upgrade to grub2, doesn't show other boot options on reboot

2010-11-30 Thread Christian PERRIER
forcemerge 596762 605468
thanks

Quoting mjohn...@markserve.org (mjohn...@markserve.org):

 Comments/Problems: grub2 Windows boot options were not available
 upon reboot. I had to manually run grub-update to refresh the boot
 options.
 
 I used the beta1 debian installer, booting
 directly from the net-install CD. This install is on sda6. Other
 partitions on my machine include a Windows Recovery partition, a Windows
 partition, and a Debian 5.0 partition. This represents a clean install on
 a partition which previously contained a second, extra Debian 5.0
 partition. During the install process, I upgraded from grub to grub2. The
 installer itself recognized my partitions, but upon restart those options
 weren't made available by the grub2 bootloader. In order to fix the
 problem, I performed command 'grub-update'.


See #596762 and friends




signature.asc
Description: Digital signature


Bug#605477:

2010-11-30 Thread Christian PERRIER
tags 605477 moreinfo
thanks

Quoting Giovanni Proscia (g.pros...@mainsoft.it):
 Package: installation-reports
 
 Boot method: CD
 Image version: 
 http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-businesscard.iso
 Date: 2010-11-30 11:00 GMT+1
 
 Machine: Microsoft Hyper-V virtual Machine
 Processor: 4x 2.86Ghz
 Memory: 512 MB
 Partitions: df -Tl will do; the raw partition table is preferred
 
 Output of lspci -knn (or lspci -nn):
 
 Base System Installation Checklist:
 [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
 
 Initial boot:   [O]
 Detect network card:[E]
 Configure network:  [ ]
 Detect CD:  [ ]
 Load installer modules: [ ]
 Detect hard drives: [ ]
 Partition hard drives:  [ ]
 Install base system:[ ]
 Clock/timezone setup:   [ ]
 User/password setup:[ ]
 Install tasks:  [ ]
 Install boot loader:[ ]
 Overall install:[ ]
 
 Comments/Problems:
 
 The installer was unable to detect the network card, the only way to take it 
 to works was removing synthetic network card and installing an emulated 
 network card into the virtual machine.


Any hint about the network card type? That might help..:-)





signature.asc
Description: Digital signature


Processed: Re: Bug#605477:

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 605477 moreinfo
Bug #605477 [installation-reports] (no subject)
Added tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605477: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605477
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129114477019754.transcr...@bugs.debian.org



Bug#605478: marked as done ()

2010-11-30 Thread Debian Bug Tracking System
Your message dated Tue, 30 Nov 2010 18:10:50 +0100
with message-id 20101130171050.gj8...@mykerinos.kheops.frmug.org
and subject line Re: Bug#605478:
has caused the Debian Bug report #605478,
regarding 
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
605478: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605478
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-businesscard.iso
Date: 2010-11-30 11:00 GMT+1

Machine: Microsoft Hyper-V virtual Machine
Processor: 4x 2.86Ghz
Memory: 512 MB
Partitions: df -Tl will do; the raw partition table is preferred

Output of lspci -knn (or lspci -nn):

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

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [ ]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

The installer was able to detect only emulated network card.

The graphical interface now works correctly, in lenny not. The text interface 
now update regularly, il lenny not.

The installer hasn't asked me for the timezone.


---End Message---
---BeginMessage---
Quoting Giovanni Proscia (g.pros...@mainsoft.it):
 Package: installation-reports
 
 Boot method: CD
 Image version: 
 http://cdimage.debian.org/cdimage/squeeze_di_beta1/amd64/iso-cd/debian-squeeze-di-beta1-amd64-businesscard.iso
 Date: 2010-11-30 11:00 GMT+1
 
 Machine: Microsoft Hyper-V virtual Machine
 Processor: 4x 2.86Ghz
 Memory: 512 MB
 Partitions: df -Tl will do; the raw partition table is preferred
 
 Output of lspci -knn (or lspci -nn):
 
 Base System Installation Checklist:
 [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
 
 Initial boot:   [O]
 Detect network card:[O]
 Configure network:  [O]
 Detect CD:  [O]
 Load installer modules: [O]
 Detect hard drives: [O]
 Partition hard drives:  [O]
 Install base system:[O]
 Clock/timezone setup:   [ ]
 User/password setup:[O]
 Install tasks:  [O]
 Install boot loader:[O]
 Overall install:[O]
 
 Comments/Problems:
 
 The installer was able to detect only emulated network card.
 
 The graphical interface now works correctly, in lenny not. The text interface 
 now update regularly, il lenny not.
 
 The installer hasn't asked me for the timezone.

 The timezone depends on the chosen country. If, from your mail
 address, I assume that you did choose Italy, then the timezone was
 set accordingly.

Given that your installation was a complete success, I do as
usual with reports for successful installations: I close the bug..:-)

This does not of course mean you weren't right to report. Knowing the
installations are correct is important for the d-i team.

Many thanks for your time testing the Debian Installer and reporting
your results. Have fun with your new Debian system!




signature.asc
Description: Digital signature
---End Message---


Bug#603044: marked as done (Installation report)

2010-11-30 Thread Debian Bug Tracking System
Your message dated Tue, 30 Nov 2010 14:46:55 -0500
with message-id 20101130144655.7a0f1...@gmail.com
and subject line Re: Bug#603044: Installation report
has caused the Debian Bug report #603044,
regarding Installation 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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
603044: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603044
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports

Boot method: CD
Image version:
http://cdimage.debian.org/cdimage/daily-builds/daily/20101109-5/amd64/iso-cd/debian-testing-amd64-netinst.iso
Date: 09/11/2010 18:30

Machine: Toshiba Satellite R630
Processor: Intel Core i5 M450
Memory: 4GB
Partitions: df -Tl will do; the raw partition table is preferred
# df -Tl
Filesystem Type 1K-blocks Used Available Use% Mounted on
/dev/mapper/bolboreta-root
jfs 24378444 5387144 18991300 23% /
tmpfs tmpfs 1892704 0 1892704 0% /lib/init/rw
udev tmpfs 1887568 260 1887308 1% /dev
tmpfs tmpfs 1892704 0 1892704 0% /dev/shm
/dev/sda3 ext3 520820 32620 461744 7% /boot
/dev/mapper/bolboreta-home
jfs 78087652 575744 77511908 1% /home
/dev/mapper/bolboreta-opt
jfs 7779908 860676 6919232 12% /opt
/dev/mapper/bolboreta-var
jfs 1941240 1318208 623032 68% /var
/dev/mapper/bolboreta-virt
  xfs 48800480 4256 48796224 1% /virt
# As printed by fdisk
Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x3038eb8a

Device Boot Start End Blocks Id System
/dev/sda1 1 52 409600 27 Unknown
Partition 1 does not end on cylinder boundary.
/dev/sda2 * 52 12507 100044800 7 HPFS/NTFS
/dev/sda3 * 12507 12572 529166 83 Linux
/dev/sda4 12573 38914 211586049 5 Extended
/dev/sda5 12573 38914 211586048 8e Linux LVM


Output of lspci -knn (or lspci -nn):
00:00.0 Host bridge [0600]: Intel Corporation Core Processor DRAM Controller
[8086:0044] (rev 02)
Subsystem: Toshiba America Info Systems Device [1179:0001]
Kernel driver in use: agpgart-intel
00:02.0 VGA compatible controller [0300]: Intel Corporation Core Processor
Integrated Graphics Controller [8086:0046] (rev 02)
Subsystem: Toshiba America Info Systems Device [1179:0007]
Kernel driver in use: i915
00:16.0 Communication controller [0780]: Intel Corporation 5 Series/3400
Series Chipset HECI Controller [8086:3b64] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
00:19.0 Ethernet controller [0200]: Intel Corporation 82577LC Gigabit
Network Connection [8086:10eb] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
Kernel driver in use: e1000e
00:1a.0 USB Controller [0c03]: Intel Corporation 5 Series/3400 Series
Chipset USB2 Enhanced Host Controller [8086:3b3c] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
Kernel driver in use: ehci_hcd
00:1b.0 Audio device [0403]: Intel Corporation 5 Series/3400 Series Chipset
High Definition Audio [8086:3b56] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
Kernel driver in use: HDA Intel
00:1c.0 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset
PCI Express Root Port 1 [8086:3b42] (rev 06)
Kernel driver in use: pcieport
00:1c.1 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset
PCI Express Root Port 2 [8086:3b44] (rev 06)
Kernel driver in use: pcieport
00:1c.2 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset
PCI Express Root Port 3 [8086:3b46] (rev 06)
Kernel driver in use: pcieport
00:1d.0 USB Controller [0c03]: Intel Corporation 5 Series/3400 Series
Chipset USB2 Enhanced Host Controller [8086:3b34] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
Kernel driver in use: ehci_hcd
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge
[8086:2448] (rev a6)
00:1f.0 ISA bridge [0601]: Intel Corporation Mobile 5 Series Chipset LPC
Interface Controller [8086:3b09] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
00:1f.2 SATA controller [0106]: Intel Corporation 5 Series/3400 Series
Chipset 4 port SATA AHCI Controller [8086:3b29] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
Kernel driver in use: ahci
00:1f.6 Signal processing controller [1180]: Intel Corporation 5 Series/3400
Series Chipset Thermal Subsystem [8086:3b32] (rev 06)
Subsystem: Toshiba America Info Systems Device [1179:0001]
01:00.0 SD Host controller [0805]: Ricoh Co Ltd Device [1180:e822] (rev 01)
Subsystem: Toshiba America Info Systems 

Processed: reassign 603035 to debian-installer

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 603035 debian-installer
Bug #603035 [installation-reports] kfreebsd-i386: broken display
Bug reassigned from package 'installation-reports' to 'debian-installer'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603035: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603035
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129114731732337.transcr...@bugs.debian.org



Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Denis Laxalde
clone 602539 -1
reassign -1 partman
retitle -1 the number of devices in raid arrays can be modified afterwards
tags -1 d-i
thanks

On Fri, 05 Nov 2010 19:15:19 +0100, Goswin von Brederlow wrote:
 Partitioning hard drives (DI uses title 'Partitioning disks'):
   - Creating raid 1
 In the dialog it says:
 + A minimum of 2 active devices is required.
   The system will have 4 disks but 3 are full with data in the
 old system and need to be transfered disk by disk. So I wanted to
 create a raid 1 with 1 active disk and grow it later to 4 disks.
 
 + NOTE: this setting cannot be changed later.
   mdadm --grow can change it so this is simply not true.

The aforementioned dialog may be updated.



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130155012.2bfb2...@gmail.com



Processed: Re: Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 602539 -1
Bug#602539: Successfull install creates broken system (mounting fs fails)
Bug 602539 cloned as bug 605508.

 reassign -1 partman
Bug #605508 [installation-reports] Successfull install creates broken system 
(mounting fs fails)
Bug reassigned from package 'installation-reports' to 'partman'.
Warning: Unknown package 'partman'
Warning: Unknown package 'partman'
Warning: Unknown package 'partman'
Warning: Unknown package 'partman'
Warning: Unknown package 'partman'
 retitle -1 the number of devices in raid arrays can be modified afterwards
Bug #605508 [partman] Successfull install creates broken system (mounting fs 
fails)
Warning: Unknown package 'partman'
Changed Bug title to 'the number of devices in raid arrays can be modified 
afterwards' from 'Successfull install creates broken system (mounting fs fails)'
Warning: Unknown package 'partman'
 tags -1 d-i
Bug #605508 [partman] the number of devices in raid arrays can be modified 
afterwards
Warning: Unknown package 'partman'
Added tag(s) d-i.
Warning: Unknown package 'partman'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605508: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605508
602539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602539
-1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=-1
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129115022715106.transcr...@bugs.debian.org



Processed: reassign 605508 to partman-md

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 605508 partman-md
Bug #605508 [partman] the number of devices in raid arrays can be modified 
afterwards
Warning: Unknown package 'partman'
Bug reassigned from package 'partman' to 'partman-md'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605508: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605508
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129115074417164.transcr...@bugs.debian.org



Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Denis Laxalde
clone 602539 -1
reassign -1 partman-base
retitle -1 Selecting a predefined mount point should set a corresponding label 
if none is set already
severity -1 wishlist
tags -1 d-i
thanks

On Fri, 05 Nov 2010 19:15:19 +0100, Goswin von Brederlow wrote:
   - Creating filesystem
 + Selecting a predefined mount point should set a coresponding
 label if none is set already. My root partition has label root, /usr
 has label usr, /var has label var and /home has label home.

This looks like a wishlist bug to me. So reassigning to partman-base (my
best guess here ;).



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130161609.6c068...@gmail.com



Processed: Re: Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 602539 -1
Bug#602539: Successfull install creates broken system (mounting fs fails)
Bug 602539 cloned as bug 605514.

 reassign -1 partman-base
Bug #605514 [installation-reports] Successfull install creates broken system 
(mounting fs fails)
Bug reassigned from package 'installation-reports' to 'partman-base'.
 retitle -1 Selecting a predefined mount point should set a corresponding 
 label if none is set already
Bug #605514 [partman-base] Successfull install creates broken system (mounting 
fs fails)
Changed Bug title to 'Selecting a predefined mount point should set a 
corresponding label if none is set already' from 'Successfull install creates 
broken system (mounting fs fails)'
 severity -1 wishlist
Bug #605514 [partman-base] Selecting a predefined mount point should set a 
corresponding label if none is set already
Severity set to 'wishlist' from 'normal'

 tags -1 d-i
Bug #605514 [partman-base] Selecting a predefined mount point should set a 
corresponding label if none is set already
Added tag(s) d-i.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605514: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605514
602539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602539
-1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=-1
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12911517895.transcr...@bugs.debian.org



linux-modules-di-i386-2.6 not buildable in squeeze

2010-11-30 Thread Ralf Treinen
Hello,

we have linux-modules-di-$(ARCH)-2.6 packages in squeeze, for various
values of $(ARCH). However, these are not buildable in squeeze since 
they build-depend on loop-aes-modules-2.6.30-2-486 which is not
in squeeze.

Under normal circumstances this would be an RC bug. However, I grant it
that installer stuff is somewhat special (though I never understood the
technical justification for that). Can someone explain to me whether, and
why, this is OK for linux-modules-di-$(ARCH)-2.6?

Cheers -Ralf.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130210552.ga2...@free.fr



Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Denis Laxalde
clone 602539 -1
reassign -1 base-installer
retitle -1 should check size of common mountpoints before proceeding to 
installation
tags -1 d-i
thanks

On Fri, 05 Nov 2010 19:15:19 +0100, Goswin von Brederlow wrote:
 Install base system:
   + Check size of common mountpoints (/, /usr, /var)
 At first I made / too small and it failed much later during the
 installation of the kernel image. Debian kernels are HUGE
 compared to my usual build-to-fit custom kernel.
 It would be good if the installer would know the size requirement
 for all the usual mountpoints people use and check if the defined
 partitions have sufficient space. The numbers should be known for at
 least the standard task, more would be better.

This may also be a wishlist.



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130162354.002a8...@gmail.com



Processed: Re: Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 602539 -1
Bug#602539: Successfull install creates broken system (mounting fs fails)
Bug 602539 cloned as bug 605516.

 reassign -1 base-installer
Bug #605516 [installation-reports] Successfull install creates broken system 
(mounting fs fails)
Bug reassigned from package 'installation-reports' to 'base-installer'.
 retitle -1 should check size of common mountpoints before proceeding to 
 installation
Bug #605516 [base-installer] Successfull install creates broken system 
(mounting fs fails)
Changed Bug title to 'should check size of common mountpoints before proceeding 
to installation' from 'Successfull install creates broken system (mounting fs 
fails)'
 tags -1 d-i
Bug #605516 [base-installer] should check size of common mountpoints before 
proceeding to installation
Added tag(s) d-i.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605516: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605516
602539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602539
-1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=-1
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129115224523941.transcr...@bugs.debian.org



Bug#605517: installation-reports: Successful install of Squeeze under VirtualBox 3.2

2010-11-30 Thread Paul Waring
Package: installation-reports
Severity: minor


Installed and booted successfully - filing this purely for statistical purposes.


-- Package-specific info:

Boot method: ISO image (business card)
Image version: debian-squeeze-di-beta1-i386-businesscard.iso
Date: Date and time of the install

Machine: VirtualBox VM (3.2.10 r66523) under Ubuntu Maverick
Partitions: df -Tl will do; the raw partition table is preferred


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

Initial boot:   [ ]
Detect network card:[ ]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:

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


-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20101020
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux debian 2.6.32-5-486 #1 Thu Oct 14 16:56:52 UTC 2010 i686 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 440FX - 82441FX PMC 
[Natoma] [8086:1237] (rev 02)
lspci -knn: 00:01.0 ISA bridge [0601]: Intel Corporation 82371SB PIIX3 ISA 
[Natoma/Triton II] [8086:7000]
lspci -knn: 00:01.1 IDE interface [0101]: Intel Corporation 82371AB/EB/MB PIIX4 
IDE [8086:7111] (rev 01)
lspci -knn: Kernel driver in use: ata_piix
lspci -knn: 00:02.0 VGA compatible controller [0300]: InnoTek Systemberatung 
GmbH VirtualBox Graphics Adapter [80ee:beef]
lspci -knn: 00:03.0 Ethernet controller [0200]: Advanced Micro Devices [AMD] 
79c970 [PCnet32 LANCE] [1022:2000] (rev 40)
lspci -knn: Subsystem: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] 
[1022:2000]
lspci -knn: Kernel driver in use: pcnet32
lspci -knn: 00:04.0 System peripheral [0880]: InnoTek Systemberatung GmbH 
VirtualBox Guest Service [80ee:cafe]
lspci -knn: 00:05.0 Multimedia audio controller [0401]: Intel Corporation 
82801AA AC'97 Audio Controller [8086:2415] (rev 01)
lspci -knn: Subsystem: Intel Corporation Device [8086:]
lspci -knn: 00:06.0 USB Controller [0c03]: Apple Computer Inc. 
KeyLargo/Intrepid USB [106b:003f]
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: 00:07.0 Bridge [0680]: Intel Corporation 82371AB/EB/MB PIIX4 ACPI 
[8086:7113] (rev 08)
lspci -knn: 00:0b.0 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller [8086:265c]
lspci -knn: Kernel driver in use: ehci_hcd
usb-list: 
usb-list: Bus 01 Device 01: EHCI Host Controller [1d6b:0002]
usb-list:Level 00 Parent 00 Port 00  Class 09(hub  ) Subclass 00 Protocol 00
usb-list:Manufacturer: Linux 2.6.32-5-486 ehci_hcd
usb-list:Interface 00: Class 09(hub  ) Subclass 00 Protocol 00 Driver hub
usb-list: 
usb-list: Bus 02 Device 01: OHCI Host Controller [1d6b:0001]
usb-list:Level 00 Parent 00 Port 00  Class 09(hub  ) Subclass 00 Protocol 00
usb-list:Manufacturer: Linux 2.6.32-5-486 ohci_hcd
usb-list:Interface 00: Class 09(hub  ) Subclass 00 Protocol 00 Driver hub
lsmod: Module  Size  Used by
lsmod: ufs55298  0 
lsmod: qnx45078  0 
lsmod: ntfs  161855  0 
lsmod: reiserfs  172676  0 
lsmod: dm_mod 45725  0 
lsmod: md_mod 65999  0 
lsmod: xfs   403634  0 
lsmod: exportfs2454  1 xfs
lsmod: jfs   132972  0 
lsmod: ext4  239745  0 
lsmod: jbd2   48167  1 ext4
lsmod: crc16   1027  1 ext4
lsmod: ext3   92368  1 
lsmod: jbd27750  1 ext3
lsmod: crc32c  2172  1 
lsmod: libcrc32c730  0 
lsmod: vfat6502  0 
lsmod: fat34344  1 vfat
lsmod: ext2   45062  0 
lsmod: mbcache 3482  3 ext4,ext3,ext2
lsmod: pcnet3222350  0 
lsmod: mii 2654  1 pcnet32
lsmod: nls_utf8 908  0 
lsmod: isofs  24384  0 
lsmod: rsrc_nonstatic  7061  0 
lsmod: pcmcia_core20474  1 rsrc_nonstatic
lsmod: ide_generic  801  0 

Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Christian PERRIER
Quoting Denis Laxalde (dlaxa...@gmail.com):
 clone 602539 -1
 reassign -1 base-installer
 retitle -1 should check size of common mountpoints before proceeding to 
 installation
 tags -1 d-i
 thanks
 
 On Fri, 05 Nov 2010 19:15:19 +0100, Goswin von Brederlow wrote:
  Install base system:
+ Check size of common mountpoints (/, /usr, /var)
  At first I made / too small and it failed much later during the
  installation of the kernel image. Debian kernels are HUGE
  compared to my usual build-to-fit custom kernel.
  It would be good if the installer would know the size requirement
  for all the usual mountpoints people use and check if the defined
  partitions have sufficient space. The numbers should be known for at
  least the standard task, more would be better.
 
 This may also be a wishlist.

Why against base-installer? 

This wishlist is a chimera, imho. The best (or less worse) we can do
is in partman-auto and have reasonable decent sizes there. Everything
else is too dependent on user choices (or even the current
*installation languages*, or the architecture...or the installation
media... that imagining we'll find a solution to warn users when they
create too small partitionsfor something they don't even have
chosen already (what to install) is just science-fiction.




signature.asc
Description: Digital signature


Bug#605517: marked as done (installation-reports: Successful install of Squeeze under VirtualBox 3.2)

2010-11-30 Thread Debian Bug Tracking System
Your message dated Tue, 30 Nov 2010 22:44:11 +0100
with message-id 20101130214411.gt8...@mykerinos.kheops.frmug.org
and subject line Re: Bug#605517: installation-reports: Successful install of 
Squeeze under VirtualBox 3.2
has caused the Debian Bug report #605517,
regarding installation-reports: Successful install of Squeeze under VirtualBox 
3.2
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
605517: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605517
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports
Severity: minor


Installed and booted successfully - filing this purely for statistical purposes.


-- Package-specific info:

Boot method: ISO image (business card)
Image version: debian-squeeze-di-beta1-i386-businesscard.iso
Date: Date and time of the install

Machine: VirtualBox VM (3.2.10 r66523) under Ubuntu Maverick
Partitions: df -Tl will do; the raw partition table is preferred


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

Initial boot:   [ ]
Detect network card:[ ]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:

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


-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20101020
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux debian 2.6.32-5-486 #1 Thu Oct 14 16:56:52 UTC 2010 i686 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 440FX - 82441FX PMC 
[Natoma] [8086:1237] (rev 02)
lspci -knn: 00:01.0 ISA bridge [0601]: Intel Corporation 82371SB PIIX3 ISA 
[Natoma/Triton II] [8086:7000]
lspci -knn: 00:01.1 IDE interface [0101]: Intel Corporation 82371AB/EB/MB PIIX4 
IDE [8086:7111] (rev 01)
lspci -knn: Kernel driver in use: ata_piix
lspci -knn: 00:02.0 VGA compatible controller [0300]: InnoTek Systemberatung 
GmbH VirtualBox Graphics Adapter [80ee:beef]
lspci -knn: 00:03.0 Ethernet controller [0200]: Advanced Micro Devices [AMD] 
79c970 [PCnet32 LANCE] [1022:2000] (rev 40)
lspci -knn: Subsystem: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] 
[1022:2000]
lspci -knn: Kernel driver in use: pcnet32
lspci -knn: 00:04.0 System peripheral [0880]: InnoTek Systemberatung GmbH 
VirtualBox Guest Service [80ee:cafe]
lspci -knn: 00:05.0 Multimedia audio controller [0401]: Intel Corporation 
82801AA AC'97 Audio Controller [8086:2415] (rev 01)
lspci -knn: Subsystem: Intel Corporation Device [8086:]
lspci -knn: 00:06.0 USB Controller [0c03]: Apple Computer Inc. 
KeyLargo/Intrepid USB [106b:003f]
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: 00:07.0 Bridge [0680]: Intel Corporation 82371AB/EB/MB PIIX4 ACPI 
[8086:7113] (rev 08)
lspci -knn: 00:0b.0 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller [8086:265c]
lspci -knn: Kernel driver in use: ehci_hcd
usb-list: 
usb-list: Bus 01 Device 01: EHCI Host Controller [1d6b:0002]
usb-list:Level 00 Parent 00 Port 00  Class 09(hub  ) Subclass 00 Protocol 00
usb-list:Manufacturer: Linux 2.6.32-5-486 ehci_hcd
usb-list:Interface 00: Class 09(hub  ) Subclass 00 Protocol 00 Driver hub
usb-list: 
usb-list: Bus 02 Device 01: OHCI Host Controller [1d6b:0001]
usb-list:Level 00 Parent 00 Port 00  Class 09(hub  ) Subclass 00 Protocol 00
usb-list:Manufacturer: Linux 2.6.32-5-486 ohci_hcd
usb-list:Interface 00: Class 09(hub  ) Subclass 00 Protocol 00 Driver hub
lsmod: Module  Size  Used by
lsmod: ufs55298  0 
lsmod: qnx45078  0 
lsmod: ntfs  161855  0 
lsmod: reiserfs  172676  0 
lsmod: dm_mod 45725  0 

Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Denis Laxalde
reassign 605516 partman-base
thanks

On Tue, 30 Nov 2010 22:35:44 +0100, Christian PERRIER wrote:
 Why against base-installer? 

You're right. partman-base would be better I guess.



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101130164623.72cef...@gmail.com



Processed: Re: Bug#602539: Successfull install creates broken system (mounting fs fails)

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 605516 partman-base
Bug #605516 [base-installer] should check size of common mountpoints before 
proceeding to installation
Bug reassigned from package 'base-installer' to 'partman-base'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605516: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605516
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129115360631337.transcr...@bugs.debian.org



Bug#602539: marked as done (Successfull install creates broken system (mounting fs fails))

2010-11-30 Thread Debian Bug Tracking System
Your message dated Tue, 30 Nov 2010 17:00:25 -0500
with message-id 20101130170025.26bbd...@gmail.com
and subject line Re: Bug#602539: Successfull install creates broken system 
(mounting fs fails)
has caused the Debian Bug report #602539,
regarding Successfull install creates broken system (mounting fs fails)
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
602539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602539
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports
Severity: normal



-- Package-specific info:

Boot method: network
Image version: 
http://http.us.debian.org/debian/dists/squeeze/main/installer-amd64/current/images/netboot/netboot.tar.gz
  20-Oct-2010 21:02  8.7M
Date: Date and time of the install

Machine: HP ProLiant MicroServer
Partitions: df -Tl will do; the raw partition table is preferred


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

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [ ]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [E]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[E]

Comments/Problems:

Partitioning hard drives (DI uses title 'Partitioning disks'):
  - Creating raid 1
In the dialog it says:
+ A minimum of 2 active devices is required.
  The system will have 4 disks but 3 are full with data in the old system
  and need to be transfered disk by disk. So I wanted to create a raid 1
  with 1 active disk and grow it later to 4 disks.

+ NOTE: this setting cannot be changed later.
  mdadm --grow can change it so this is simply not true.

  - Creating filesystem
+ Selecting a predefined mount point should set a coresponding label if
  none is set already. My root partition has label root, /usr has label
  usr, /var has label var and /home has label home.

Install base system:
  + Check size of common mountpoints (/, /usr, /var)
At first I made / too small and it failed much later during the
installation of the kernel image. Debian kernels are HUGE compared to
my usual build-to-fit custom kernel.
It would be good if the installer would know the size requirement for
all the usual mountpoints people use and check if the defined partitions
have sufficient space. The numbers should be known for at least the
standard task, more would be better.

General:
  + Oerall a nice flow. Seems smoother than with lenny. During downloads the
remaining time was displayed in seconds. That was a nice touch.

  + Missing moonbuggy or tetris. One does get bored watching it work.

  + Missing a text editor on tty5 for making notes during install. It should
have a file (/tmp/notes.txt) open and copy it to /target/var/log/installer
at the end.


Post reboot: (Now we come to the real problems)

- Mounting local filesystems...failed.
  WTF? Why? Why does it continue to boot? The new insserv just keeps on
  booting even with critial scripts failing.

  The problem seems to be that the /etc/fstab entry for /proc does not match
  the entry in /proc/mounts:
/etc/fstab:
proc/proc   procdefaults0   0
/proc/mounts:
none on /proc type proc (rw,nosuid,nodev,noexec,relatime)

  The mountall.sh script executes this command:
  # mount -v -a -t nonfs,nfs4,smbfs,cifs,ncp,ncpfs,coda,ocfs2,gfs,gfs2 -O 
no_netdev; echo $?

proc/proc   procdefaults0   0
mount: proc already mounted = exit(32);

  vs.

none/proc   procdefaults0   0
mount: none already mounted on /proc = exit(0);

  The odd thing is that in /etc/init.d/mountkern.fs there is:

domount proc  /proc proc -onodev,noexec,nosuid

  The 4th argument is the DEVNAME used in mount. So the /proc should be
  mounted from 'proc' and not 'none'. Could it be /proc is kept from the
  initramfs?

  Is this only showing if /etc/mtab is linkd to /proc/mounts? (see below)

- /etc/mtab is not a link to /proc/mounts

  I configured my / and /usr to be read-only. That means the /etc/mtab must
  be a link to /proc/mounts. I thought that was now standard for all new
  installations. It should definetly be a link if / is read-only.

- /tmp not tmpfs

  When selecting / read-only and not having a seperate /tmp partition the
  installer could 

Processed: severity of 605516 is wishlist

2010-11-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 605516 wishlist
Bug #605516 [partman-base] should check size of common mountpoints before 
proceeding to installation
Severity set to 'wishlist' from 'normal'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605516: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605516
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12911546263773.transcr...@bugs.debian.org



Bug#605524: installation-report: Successful install on EeePC 901

2010-11-30 Thread Arunan Balasubramaniam
Package: installation-reports
Version: 2.43
Severity: minor


-- Package-specific info:

Wireless was fine after enabling non-free and installing firmware-ralink

Boot method: USB stick with the netinst ISO copied on, using the boot.img 
pointed at by the Debian eee wiki pages.
Image version: Netinst 
http://cdimage.debian.org/cdimage/daily-builds/squeeze_d-i/20101127-3/i386/iso-cd/debian-testing-i386-netinst.iso
Date: Date and time of the install

Machine: Eee PC 901
Partitions: df -Tl will do; the raw partition table is preferred

FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/sda1 ext4 3866116   2318644   1351080  64% /
tmpfstmpfs 1032708 4   1032704   1% /lib/init/rw
udev tmpfs 1028356   196   1028160   1% /dev
tmpfstmpfs 1032708   140   1032568   1% /dev/shm
/dev/sdb1 ext413542504182560  12672024   2% /home


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

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O] - found the ISO on the boot USB stick
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

Everything seems OK. Random notes:
- Installation used Ethernet
- Bluetooth can see another device
- I did try a graphical install with an ISO from a few days previous, which was 
OK other than the resolution seeming to be set at 800x600 (a guess)
- Installing the desktop task filled up the 4G disk with the root filesystem. 
The installer said that the select and install step had failed, but it would 
have been nice to say why

Thank you all for the work put into this.


-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20101020
X_INSTALLATION_MEDIUM=hd-media

==
Installer hardware-summary:
==
uname -a: Linux eeepc 2.6.32-5-486 #1 Thu Oct 14 16:56:52 UTC 2010 i686 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation Mobile 945GME Express 
Memory Controller Hub [8086:27ac] (rev 03)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
lspci -knn: Kernel driver in use: agpgart-intel
lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 
945GME Express Integrated Graphics Controller [8086:27ae] (rev 03)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
lspci -knn: 00:02.1 Display controller [0380]: Intel Corporation Mobile 
945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller [8086:27a6] 
(rev 03)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
lspci -knn: 00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family 
High Definition Audio Controller [8086:27d8] (rev 02)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:831a]
lspci -knn: 00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI 
Express Port 1 [8086:27d0] (rev 02)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI 
Express Port 2 [8086:27d2] (rev 02)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.2 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI 
Express Port 3 [8086:27d4] (rev 02)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.3 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI 
Express Port 4 [8086:27d6] (rev 02)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family 
USB UHCI Controller #1 [8086:27c8] (rev 02)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.1 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family 
USB UHCI Controller #2 [8086:27c9] (rev 02)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.2 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family 
USB UHCI Controller #3 [8086:27ca] (rev 02)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1d.3 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family 
USB 

Re: next d-i meeting - 2010.12.01, 20h00 GMT

2010-11-30 Thread Miguel Figueiredo
A Segunda 29 Novembro 2010 22:19:27 Otavio Salvador você escreveu:
 On Mon, Nov 29, 2010 at 19:01, Miguel Figueiredo el...@debianpt.org wrote:
  next Debian Installer meeting will take place on IRC, OFTC network,
  #debian- boot, 2 weeks after previous meeting .
  It is scheduled for next Wednesday - 2010.12.01, 20:00 UTC [1].
 
 I am very sorry but I won't be able to participate on this meeting.
 
 I have my Graduation Thesis on this day at 19:00 UTC so I won't be
 able to do it and come back to participate of the meeting on time.

As Otavio mentions he will unavailable this time.
If other participants are planning to attend we can make it as scheduled. If 
not, we can postpone.

If interested feel free to give feedback.


-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201011302225.29556.el...@debianpt.org



Re: r65817 - in trunk/packages/partman/partman-zfs: check.d debian

2010-11-30 Thread Christian PERRIER
Quoting Robert Millan (r...@alioth.debian.org):
 Author: rmh
 Date: Tue Nov 30 18:34:05 2010
 New Revision: 65817
 
 Log:
 Add partman-zfs/i386 template to warn users who want to use ZFS on i386.
 
 Added:
trunk/packages/partman/partman-zfs/check.d/zfs_i386   (contents, props 
 changed)
 Modified:
trunk/packages/partman/partman-zfs/check.d/_numbers
trunk/packages/partman/partman-zfs/debian/changelog
trunk/packages/partman/partman-zfs/debian/partman-zfs.templates


PLEASE. We are in string freeze until RC1 is released.

Please revert the change to templates until it has been discussed in
the mailing list earlier.




signature.asc
Description: Digital signature