anna resolver and non-installable packages
Hi, While testing the netboot version of debian-installer on GNU/kFreeBSD, I am facing an issue with non-installable packages that are installed anyway. The issue appears mainly with partman-*, though other non-installable packages are installed anyway. For example partman-lvm and partman-md complain that there is no lvm or raid support. The issue might at some point arise on GNU/Linux, as for example partman-ufs is not installable but installed. This way of resolving the udeb dependencies differ from the one used to create the d-i initrd, and this can cause some surprises depending on the d-i flavors. I am therefore proposing a small patch to the resolver: --- libdebian-installer/src/packages.c +++ libdebian-installer/src/packages.c @@ -428,7 +428,10 @@ { di_package *package = node->data; if (!(package->resolver & packages->resolver) && package->status_want == di_package_status_want_install) - di_packages_resolve_dependencies_recurse (s, package, NULL); + if (!di_packages_resolve_dependencies_recurse (s, package, NULL)) { +di_log (DI_LOG_LEVEL_WARNING, "resolver (%s): package is not installable", package->package); +package->status_want = di_package_status_want_unknown; + } } } --- libdebian-installer/src/system/packages.c +++ libdebian-installer/src/system/packages.c @@ -242,7 +242,7 @@ { check_real_anna, check_virtual_anna, -di_packages_resolve_dependencies_check_non_existant_permissive, +di_packages_resolve_dependencies_check_non_existant, di_packages_resolve_dependencies_do_real_mark, 0, &sc, The first part mark remove the "want install" status of packages that are not installable and emit a warning in that case. The second part change the check about non-existant packages, so that a non-existant package is not ignored. Currently the only difference between an existant and a non-existant package is the message in the logs. While the first part seems to be a bug, the last part seems to be something wanted. It is something that has been changed a few years ago, but I don't know the reason. r16018 | waldi | 2004-05-22 13:31:47 +0200 (sam. 22 mai 2004) | 3 lignes - Make anna dependency resolver permissive again. - Add an option to enable extensive debugging output. Any comment on that? Cheers, Aurelien -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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/20100820082050.ga15...@hall.aurel32.net
Need help with incorrectly nested partitions
Installing a new grub version gives the following output: Setting up grub-pc (1.98+20100804-3) ... Installing new version of config file /etc/kernel/postinst.d/zz-update-grub ... Installing new version of config file /etc/kernel/postrm.d/zz-update-grub ... grub-probe: warn: Discarding improperly nested partition (hd1,msdos3,msdos1). ... Found Windows NT/2000/XP on /dev/sda1 ... /usr/sbin/grub-probe: warn: Discarding improperly nested partition (hd1,msdos3,msdos1). Found Microsoft Windows XP Home Edition on /dev/sda2 /usr/sbin/grub-probe: warn: Discarding improperly nested partition (hd1,msdos3,msdos1). ... When booting and checking the partitions: dosfsck 3.0.9, 31 Jan 2010, FAT32, LFN There are differences between boot sector and its backup. Differences: (offset:original/backup) 65:00/01 Not automatically fixing this. /dev/sda1: 9309 files, 802467/945032 clusters done. /etc/fstab entries: # /dev/sda1 /winrescue vfatdefaults,noauto 0 2 UUID=693D-1E3B /winrescue vfatdefaults,noauto 0 2 # /dev/sda2/winxp ntfs defaults,noauto,user,umask=0022 0 2 UUID=F0FC6717FC66D77E /winxp ntfs defaults,noauto,user,umask=0022 0 2 The backup offset problem could be solved by: http://www.linuxquestions.org/questions/linux-software-2/utterly-fascinating-boot-sector-problem-differences-offset-original-backup-40214/ umount /dev/sda1 fsck.vfat -ar /dev/sda1 and then re-write the mbr (how to do that??) Appreciate any help you can give. It would be nice to solve these problems without needing to scrap the whole Windows partitions. I cannot reinstall, since reinstalling Windows would erase all GNU/Linux stuff I have installed on other partitions on that fisk (and this is the most important!) As I'm not subscribed, please Cc: me then replying. Thanks, Svante Signell -- 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/1282293284.3623.30.ca...@hp.my.own.domain
Re: anna resolver and non-installable packages
On Fri, Aug 20, 2010 at 10:20:50AM +0200, Aurelien Jarno wrote: > While the first part seems to be a bug, the last part seems to be > something wanted. It is something that has been changed a few years > ago, but I don't know the reason. I think this was due to the unavailability of proper udeb library dependencies at this time. Bastian -- ... bacteriological warfare ... hard to believe we were once foolish enough to play around with that. -- McCoy, "The Omega Glory", stardate unknown -- 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/20100820091800.ga7...@wavehammer.waldi.eu.org
Size of partition made by installer.
Hi, The partition made by installer with the option two partition (/ and /home) are not optimal in squeeze. Update made bring / to 100% very often and /home is half empty. My disk is 500 Gb and installer kept 6.5 Go for / (including /usr and /var), i think 10 Go should be a better choice. Best regards -- 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/20100820110559.53356...@server.gazypan.dyndns.org
Re: Need help with incorrectly nested partitions
On 08/20/2010 10:34 AM, Svante Signell wrote: > Installing a new grub version gives the following output: > Setting up grub-pc (1.98+20100804-3) ... > Installing new version of config > file /etc/kernel/postinst.d/zz-update-grub ... > Installing new version of config > file /etc/kernel/postrm.d/zz-update-grub ... > grub-probe: warn: Discarding improperly nested partition > (hd1,msdos3,msdos1). > ... > Found Windows NT/2000/XP on /dev/sda1 > ... > /usr/sbin/grub-probe: warn: Discarding improperly nested partition > (hd1,msdos3,msdos1). > Found Microsoft Windows XP Home Edition on /dev/sda2 > /usr/sbin/grub-probe: warn: Discarding improperly nested partition > (hd1,msdos3,msdos1). > ... > > It's only a warning and if you're not supposed to have subpartitions at all then you can just ignore them > When booting and checking the partitions: > dosfsck 3.0.9, 31 Jan 2010, FAT32, LFN > There are differences between boot sector and its backup. > Differences: (offset:original/backup) > 65:00/01 > Not automatically fixing this. > /dev/sda1: 9309 files, 802467/945032 clusters > done. > > man dosfsck > /etc/fstab entries: > # /dev/sda1 /winrescue vfatdefaults,noauto 0 2 > UUID=693D-1E3B /winrescue vfatdefaults,noauto 0 2 > # /dev/sda2/winxp ntfs defaults,noauto,user,umask=0022 0 2 > UUID=F0FC6717FC66D77E /winxp ntfs defaults,noauto,user,umask=0022 0 2 > > The backup offset problem could be solved by: > http://www.linuxquestions.org/questions/linux-software-2/utterly-fascinating-boot-sector-problem-differences-offset-original-backup-40214/ > umount /dev/sda1 > fsck.vfat -ar /dev/sda1 > and then re-write the mbr (how to do that??) > > Appreciate any help you can give. It would be nice to solve these > problems without needing to scrap the whole Windows partitions. I cannot > reinstall, since reinstalling Windows would erase all GNU/Linux stuff I > have installed on other partitions on that fisk (and this is the most > important!) > > As I'm not subscribed, please Cc: me then replying. > Thanks, > Svante Signell > > > ___ > Pkg-grub-devel mailing list > pkg-grub-de...@lists.alioth.debian.org > http://lists.alioth.debian.org/mailman/listinfo/pkg-grub-devel > > -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature
Re: anna resolver and non-installable packages
[Aurelien Jarno] > While testing the netboot version of debian-installer on > GNU/kFreeBSD, I am facing an issue with non-installable packages > that are installed anyway. The issue appears mainly with partman-*, > though other non-installable packages are installed anyway. For > example partman-lvm and partman-md complain that there is no lvm or > raid support. The issue might at some point arise on GNU/Linux, as > for example partman-ufs is not installable but installed. If I remember correctly, Debian Edu depend on this behaviour to ensure the same udeb can be used to order the main-menu entries for both DVD and netinst CD installation. The Debian Edu udeb have dependencies that are missing on the DVD and only used when installing using PXE and the netinst CD. Because of this, I believe this should not be changed just before the release and after the freeze, but instead early in the next release cycle. Happy hacking, -- Petter Reinholdtsen -- 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/2fld3tdjy8k@login2.uio.no
Processing of rootskel_1.88_i386.changes
rootskel_1.88_i386.changes uploaded successfully to localhost along with the files: rootskel_1.88.dsc rootskel_1.88.tar.gz rootskel_1.88_i386.udeb rootskel-bootfloppy_1.88_i386.udeb Greetings, Your Debian queue daemon (running on host franck.debian.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/e1omqqf-00082h...@franck.debian.org
rootskel_1.88_i386.changes ACCEPTED
Accepted: rootskel-bootfloppy_1.88_i386.udeb to main/r/rootskel/rootskel-bootfloppy_1.88_i386.udeb rootskel_1.88.dsc to main/r/rootskel/rootskel_1.88.dsc rootskel_1.88.tar.gz to main/r/rootskel/rootskel_1.88.tar.gz rootskel_1.88_i386.udeb to main/r/rootskel/rootskel_1.88_i386.udeb Override entries for your package: rootskel-bootfloppy_1.88_i386.udeb - extra debian-installer rootskel_1.88.dsc - source debian-installer rootskel_1.88_i386.udeb - standard debian-installer Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- 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/e1omqxz-0008it...@franck.debian.org
Re: anna resolver and non-installable packages
Petter Reinholdtsen a écrit : > [Aurelien Jarno] >> While testing the netboot version of debian-installer on >> GNU/kFreeBSD, I am facing an issue with non-installable packages >> that are installed anyway. The issue appears mainly with partman-*, >> though other non-installable packages are installed anyway. For >> example partman-lvm and partman-md complain that there is no lvm or >> raid support. The issue might at some point arise on GNU/Linux, as >> for example partman-ufs is not installable but installed. > > If I remember correctly, Debian Edu depend on this behaviour to ensure > the same udeb can be used to order the main-menu entries for both DVD > and netinst CD installation. The Debian Edu udeb have dependencies > that are missing on the DVD and only used when installing using PXE > and the netinst CD. Note that the resolving of the udeb for the menu is still using the "permissive" mode, that is dependencies are ignored. Maybe you can do a test? > Because of this, I believe this should not be changed just before the > release and after the freeze, but instead early in the next release > cycle. > If we can't do the change, the best is probably to reupload all the partman-* binaries with the correct architectures list. Cheers, Aurelien -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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/4c6e88ed.6030...@aurel32.net
Bug#472704: Failure while configuring base packages -- But why?
Could someone change the title of this bug to something more explicit, like: "Dependencies not fetched; unexplained failure" (I know they are explained in debootstrap.log), and maybe raise its priority. Btw, I don't really understand the following concept: --no-resolve-deps By default, debootstrap will attempt to automatically resolve any missing dependencies, warning if any are found. Note that this is not a complete dependency resolve in the sense of dpkg or apt, and that it is far better to specify the entire base system than rely on this option. With this option set, this behaviour is disabled. What is the point of partially resolving deps ? The issue is likely to be in the functions script : resolve_deps () { local m1="${MIRRORS%% *}" # XXX: I can't think how to deal well with dependency resolution and # lots of Packages files. -- aj 2005/06/12 c="${COMPONENTS%% *}" This only keeps the first component, so if multiple components are used, --components=main,contrib and a package from contrib is added in the list of required packages, its dependencies _will_not_be_fetched_, thus resulting in the error. Sincerely -- 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/4c6e9ce5.8020...@free.fr
Re: Unblock rescue?
Quoting Adam D. Barratt (a...@adam-barratt.org.uk): > Hi, > > The new version of rescue fixes an RC bug (#505111) but is currently > blocked from migrating due to being on the "needs approval" udeb list. > > Would it be possible to unblock and migrate the package currently? If > not, please let us know when we could do so. I think it's OK but we'll need another upload shortly after anyway, to get new translations in. signature.asc Description: Digital signature
Re: r64389 - in trunk/packages/partman/partman-basicfilesystems: debian debian/po mountoptions
Quoting Aurelien Jarno (aure...@alioth.debian.org): A small comment about l10n stuff. > Author: aurel32 > Date: Wed Aug 18 13:20:27 2010 > New Revision: 64389 > > Log: > - Add kfreebsd specific mount options. > > Added: >trunk/packages/partman/partman-basicfilesystems/mountoptions/ext2.kfreebsd >trunk/packages/partman/partman-basicfilesystems/mountoptions/fat16.kfreebsd >trunk/packages/partman/partman-basicfilesystems/mountoptions/fat32.kfreebsd > Replaced: >trunk/packages/partman/partman-basicfilesystems/mountoptions/fat16 >trunk/packages/partman/partman-basicfilesystems/mountoptions/fat32 > Modified: >trunk/packages/partman/partman-basicfilesystems/debian/changelog > > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > Modified: > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > == > --- > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > Wed Aug 18 13:17:16 2010(r64388) > +++ > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > Wed Aug 18 13:20:27 2010(r64389) > @@ -352,3 +352,18 @@ > # Note to translators: Please keep your translations of this string below > # a 65 columns limit (which means 65 characters in single-byte languages) > _Description: notail - disable packing of files into the file system tree > + > +Template: partman-basicfilesystems/text/acls > +Type: text > +# :sl2: > +# Note to translators: Please keep your translations of this string below > +# a 65 columns limit (which means 65 characters in single-byte languages) > +_Description: acls - support POSIX.1e Access Control List > + > +Template: partman-basicfilesystems/text/shortnames > +Type: text > +# :sl2: > +# Note to translators: Please keep your translations of this string below > +# a 65 columns limit (which means 65 characters in single-byte languages) > +_Description: shortnames - only use the old MS-DOS 8.3 style filenames > + If these are specific to kFreeBSD, I think the sublevel should then be 4 and not 2. I'm not really in position to commit the needed change (I don't even know when you'll get this mail). Could you make it. There's nothing else to do wrt translations than turning "sl2" into "sl4". signature.asc Description: Digital signature
Bug#590105: SATA drive not detected during squeeze installation on Buffalo LinkStation (squeeze)
Any news about this bug ? there is no new initrd nor uImage for orion on joeyh's repository for a very long time :-/ thanks 2010/7/24 Martin Michlmayr > * Ryan Tandy [2010-07-23 20:39]: > > On 23/07/2010 12:10 PM, Martin Michlmayr wrote: > > >Ryan, something for you: > > > > In fact, I was hoping you'd have some idea. > > Not really since I don't know anything about the Linkstation. > > -- > Martin Michlmayr > http://www.cyrius.com/ >
Bug#590105: SATA drive not detected during squeeze installation on Buffalo LinkStation (squeeze)
* Sébastien LALLEMAND [2010-08-20 18:25]: > Any news about this bug ? Like I said, I don't know anything about the Linkstation so I cannot help. I was hoping Ryan would investigate this with you. > there is no new initrd nor uImage for orion on joeyh's repository for a very > long time :-/ I intend to fix that next week. -- Martin Michlmayr http://www.cyrius.com/ -- 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/20100820163557.gl1...@jirafa.cyrius.com
Re: anna resolver and non-installable packages
On Fri, Aug 20, 2010 at 10:20:50AM +0200, Aurelien Jarno wrote: > Hi, > > While testing the netboot version of debian-installer on GNU/kFreeBSD, I > am facing an issue with non-installable packages that are installed > anyway. I'm hitting the same issue on Hurd. > The issue appears mainly with partman-*, though other > non-installable packages are installed anyway. For example partman-lvm > and partman-md complain that there is no lvm or raid support. The issue > might at some point arise on GNU/Linux, as for example partman-ufs is > not installable but installed. For what it's worth, the following udebs are currently uninstallable in testing (scripts attached): amd64: cfdisk-udeb, partman-ufs, partman-crypto-loop, speakup-modules-2.6.30-2-amd64-di, loop-aes-modules-2.6.30-2-amd64-di, cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy armel: xserver-xorg-input-evdev-udeb, xserver-xorg-core-udeb, libxft2-udeb, xfsprogs-udeb, libvte9-udeb, util-linux-udeb, libuuid1-udeb, libblkid1-udeb, fdisk-udeb, cfdisk-udeb, udev-udeb, udev-gtk-udeb, rootskel, rootskel-gtk, rescue-mode, reiserfsprogs-udeb, mkreiserfs-udeb, rdate-udeb, qcontrol-udeb, network-preseed, ppp-udeb, libpopt0-udeb, pkgsel, libpixman-1-0-udeb, pcmciautils-udeb, partman-xfs, partman-ufs, partman-target, partman-reiserfs, partman-partitioning, partman-multipath, partman-md, partman-lvm, partman-jfs, partman-ext3, partman-crypto, partman-crypto-loop, partman-crypto-dm, partman-basicfilesystems, partman-utils, partman-base, partman-auto, partman-auto-raid, partman-auto-lvm, partman-auto-crypto, parted-udeb, libparted0-udeb, partconf-find-partitions, libpango1.0-udeb, libcrypto0.9.8-udeb, openssh-server-udeb, openssh-client-udeb, nobootloader, network-console, netcfg, netcfg-static, net-retriever, download-installer, nbd-client-udeb, multipath-udeb, mdcfg, mdcfg-utils, mdadm-udeb, libsdl1.2debian-udeb, libbsd0-udeb, lvmcfg, lvmcfg-utils, lvm2-udeb, ltsp-client-builder, mount-aes-udeb, live-installer, ntfsprogs-udeb, loop-aes-modules-2.6.30-2-orion5x-di, loop-aes-modules-2.6.30-2-iop32x-di, jfsutils-udeb, load-iso, iso-scan, isc-dhcp-client-udeb, installation-locale, hw-detect, ethdetect, driver-injection-disk-detect, disk-detect, hdparm-udeb, gtk2-engines-udeb, libgtk2.0-0-udeb, gpgv-udeb, gnupg-udeb, libglib2.0-udeb, fontconfig-udeb, flash-kernel-installer, finish-install, libexpat1-udeb, e2fsprogs-udeb, libdmraid1.0.0.rc16-udeb, dmraid-udeb, libdirectfb-bin-udeb, libdirectfb-1.2-9-udeb, debootstrap-udeb, debian-edu-profile-udeb, debian-edu-install-udeb, cryptsetup-udeb, clock-setup, choose-mirror, load-cdrom, cdrom-retriever, cdrom-detect, cdrom-checker, cdebootstrap-udeb, cdebconf-newt-udeb, cdebconf-gtk-udeb, cdebconf-newt-terminal, cdebconf-gtk-terminal, cdebconf-newt-entropy, cdebconf-gtk-entropy, libcairo2-udeb, btrfs-tools-udeb, bootstrap-base, base-installer, auto-install, libatk1.0-udeb, apt-setup-udeb, apt-cdrom-setup hppa: cfdisk-udeb, rescue-mode, partman-xfs, partman-ufs, partman-reiserfs, partman-jfs, partman-crypto-loop, live-installer, loop-aes-modules-2.6.30-2-parisc64-di, loop-aes-modules-2.6.30-2-parisc-di, cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy i386: cfdisk-udeb, partman-ufs, partman-crypto-loop, speakup-modules-2.6.30-2-686-bigmem-di, speakup-modules-2.6.30-2-486-di, loop-aes-modules-2.6.30-2-686-bigmem-di, loop-aes-modules-2.6.30-2-486-di, cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy ia64: xserver-xorg-core-udeb, cfdisk-udeb, rootskel-bootfloppy, partman-ufs, partman-crypto-loop, loop-aes-modules-2.6.30-2-itanium-di, cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy kfreebsd-amd64: zfsutils-udeb, libzfs0-udeb, xserver-xorg-core-udeb, rescue-mode, pcmciautils-udeb, partman-xfs, partman-reiserfs, partman-multipath, partman-md, partman-lvm, partman-jfs, partman-ext3, partman-crypto-loop, partman-crypto-dm, partman-auto-raid, partman-auto-lvm, partman-auto-crypto, mdcfg-utils, libsdl1.2debian-udeb, lvmcfg, lvmcfg-utils, ltsp-client-builder, live-installer, libgeom0-udeb, debian-edu-profile-udeb, debian-edu-install-udeb, console-setup-udeb, cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy, ai-kbd-chooser, ai-console-setup-udeb kfreebsd-i386: zfsutils-udeb, libzfs0-udeb, xserver-xorg-core-udeb, rescue-mode, pcmciautils-udeb, partman-xfs, partman-reiserfs, partman-multipath, partman-md, partman-lvm, partman-jfs, partman-ext3, partman-crypto-loop, partman-crypto-dm, partman-auto-raid, partman-auto-lvm, partman-auto-crypto, mdcfg-utils, libsdl1.2debian-udeb, lvmcfg, lvmcfg-utils, ltsp-client-builder, live-installer, libgeom0-udeb, debian-edu-profile-udeb, debian-edu-install-udeb, console-setup-udeb, cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy, ai-kbd-chooser, ai-console-setup-udeb mips: cfdisk-udeb, partman-ufs, partman-crypto-loop, loop-aes-modules-2.6.30-2-r5k-ip32-di, loop-aes-modules-2.6.30-2-r4k-ip22-di, l
Re: anna resolver and non-installable packages
On Fri, Aug 20, 2010 at 06:44:10PM +0200, Jeremie Koenig wrote: > On Fri, Aug 20, 2010 at 10:20:50AM +0200, Aurelien Jarno wrote: > > Hi, > > > > While testing the netboot version of debian-installer on GNU/kFreeBSD, I > > am facing an issue with non-installable packages that are installed > > anyway. > > I'm hitting the same issue on Hurd. Given that it is C code built on each architecture, we maybe can only enable it on Hurd and GNU/kFreeBSD until squeeze is released. > > The issue appears mainly with partman-*, though other > > non-installable packages are installed anyway. For example partman-lvm > > and partman-md complain that there is no lvm or raid support. The issue > > might at some point arise on GNU/Linux, as for example partman-ufs is > > not installable but installed. > > For what it's worth, the following udebs are currently uninstallable in > testing (scripts attached): > > amd64: cfdisk-udeb, partman-ufs, partman-crypto-loop, > speakup-modules-2.6.30-2-amd64-di, loop-aes-modules-2.6.30-2-amd64-di, > cdebconf-newt-udeb, cdebconf-newt-terminal, cdebconf-newt-entropy partman-crypto-loop is a good example. The package is theoretically not installable (due to loop-aes-modules being outdated compared to the kernel version), so users get the possibility to create a loop-AES partition. When they validate the partition, a cryptic error message appears only explaining that the operation has failed, but not explaining why. Users should simply not be presented the option in such case. [snip] > kfreebsd-amd64: zfsutils-udeb, libzfs0-udeb, xserver-xorg-core-udeb, Thanks for your script. zfsutils-udeb should be installable, but it is not due to a missing udeb far in the dependency tree. Even if the dependency is ignored, it won't work... -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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/20100820175539.gu19...@hall.aurel32.net
Re: anna resolver and non-installable packages
Aurelien Jarno, le Fri 20 Aug 2010 19:55:39 +0200, a écrit : > Given that it is C code built on each architecture, we maybe can only > enable it on Hurd and GNU/kFreeBSD until squeeze is released. I was wondering about this solution for now too. (I guess kfreebsd people won't be too sad not to be able to run Debian Edu :) ) 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/20100820181144.gi5...@const.bordeaux.inria.fr
Re: r64389 - in trunk/packages/partman/partman-basicfilesystems: debian debian/po mountoptions
On Thu, Aug 19, 2010 at 11:09:43PM -0400, Christian PERRIER wrote: > Quoting Aurelien Jarno (aure...@alioth.debian.org): > > A small comment about l10n stuff. > > > Author: aurel32 > > Date: Wed Aug 18 13:20:27 2010 > > New Revision: 64389 > > > > Log: > > - Add kfreebsd specific mount options. > > > > Added: > > > > trunk/packages/partman/partman-basicfilesystems/mountoptions/ext2.kfreebsd > > > > trunk/packages/partman/partman-basicfilesystems/mountoptions/fat16.kfreebsd > > > > trunk/packages/partman/partman-basicfilesystems/mountoptions/fat32.kfreebsd > > Replaced: > >trunk/packages/partman/partman-basicfilesystems/mountoptions/fat16 > >trunk/packages/partman/partman-basicfilesystems/mountoptions/fat32 > > Modified: > >trunk/packages/partman/partman-basicfilesystems/debian/changelog > > > > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > > > Modified: > > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > > == > > --- > > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > >Wed Aug 18 13:17:16 2010(r64388) > > +++ > > trunk/packages/partman/partman-basicfilesystems/debian/partman-basicfilesystems.templates > >Wed Aug 18 13:20:27 2010(r64389) > > @@ -352,3 +352,18 @@ > > # Note to translators: Please keep your translations of this string below > > # a 65 columns limit (which means 65 characters in single-byte languages) > > _Description: notail - disable packing of files into the file system tree > > + > > +Template: partman-basicfilesystems/text/acls > > +Type: text > > +# :sl2: > > +# Note to translators: Please keep your translations of this string below > > +# a 65 columns limit (which means 65 characters in single-byte languages) > > +_Description: acls - support POSIX.1e Access Control List > > + > > +Template: partman-basicfilesystems/text/shortnames > > +Type: text > > +# :sl2: > > +# Note to translators: Please keep your translations of this string below > > +# a 65 columns limit (which means 65 characters in single-byte languages) > > +_Description: shortnames - only use the old MS-DOS 8.3 style filenames > > + > > > If these are specific to kFreeBSD, I think the sublevel should then be > 4 and not 2. > > I'm not really in position to commit the needed change (I don't even > know when you'll get this mail). Could you make it. There's nothing > else to do wrt translations than turning "sl2" into "sl4". > Sorry about that, fixed. -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- 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/20100820200436.gw19...@hall.aurel32.net
Re: [PATCH 3/7] Fine-tune the Hurd configuration
Hi, On Wed, Aug 18, 2010 at 12:36:03AM +0200, Samuel Thibault wrote: > Jeremie Koenig, le Mon 16 Aug 2010 13:20:22 +0200, a écrit : > > * Use the newer "module --nounzip" grub command to load the gzipped initrd, > > and let the gunzip: store driver handle the decompression. > > I'd rather wait for phcoder to commit the --nounzip patch upstream. As per you request I've commited this (r64421) now the the patch has been merged upstream. -- Jeremie Koenig http://jk.fr.eu.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/20100820232525.gb3...@jk.fr.eu.org
Re: [PATCH 2/7] Override $(genext2fs) in config/hurd.cfg
Samuel Thibault, le Wed 18 Aug 2010 00:14:17 +0200, a écrit : > Jeremie Koenig, le Mon 16 Aug 2010 13:20:21 +0200, a écrit : > > In order to be able to override the definition in config/hurd.cfg, the > > original > > one in Makefile has had to be moved before the file in question is included. > > I guess this is ok? I believe this can be commited. 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/20100821002450.gc4...@const.famille.thibault.fr
partman-auto: partition sizes too small
We recently had installation reports where the size of either the root partition (in the "separated / and /home" recipe) or the /usr partition (in the "multi" recipe) are too small to fit a full desktop installation. Attached is a rather conservative patch to those recipes that raises the max size of / to 10Gb (in "home" recipe) ad that of /usr to 9Gb (in the "multi" recipe). I didn't make any precise calculation: I just roughly guessed this would be OK.so feel free to alter these sizes to whatever is appropriate. But, what's important: we MUST change these defaults. PS: there is at least one reported bug, which I assigned to partman-auto, that mentioned these "too small partition" problems. PS2: the same should probably done to partman-auto-lvm PS3: sorry for sending this without any full check, without the rightbug numbers...and for not committing the needed change, but working offline with a 5 minutes connection window each day at the local McDonalds restaurant doesn't help working very efficiently..:-) -- Index: recipes/home === --- recipes/home(révision 64417) +++ recipes/home(copie de travail) @@ -13,7 +13,7 @@ filesystem{ ext2 } mountpoint{ /boot } . -500 4000 7000 $default_filesystem +500 4000 1 $default_filesystem $lvmok{ } $bootable{ } method{ format } Index: recipes/multi === --- recipes/multi (révision 64417) +++ recipes/multi (copie de travail) @@ -22,7 +22,7 @@ $default_filesystem{ } mountpoint{ / } . -500 3000 6000 $default_filesystem +500 3000 9000 $default_filesystem $lvmok{ } method{ format } format{ } signature.asc Description: Digital signature
Re: partman-auto: partition sizes too small
Christian PERRIER (20/08/2010): > Attached is a rather conservative patch to those recipes that raises > the max size of / to 10Gb (in "home" recipe) ad that of /usr to 9Gb > (in the "multi" recipe). Sounds good to me. The current sizes led me to troublesome musical chair games with some packages to avoid hitting ENOSPC, a few times already, even though I'm not a heavy user of desktop packages… > PS3: sorry for sending this without any full check, without the > rightbug numbers...and for not committing the needed change, but > working offline with a 5 minutes connection window each day at the > local McDonalds restaurant doesn't help working very > efficiently..:-) sd to the rescue! http://syncwith.us/sd/ http://penta.debconf.org/dc10_schedule/events/591.en.html (OK that's still WIP but you get the idea ;)) Mraw, KiBi. signature.asc Description: Digital signature
Bug#593806: os-prober: os-prober creates an unbootable entry
Package: os-prober Version: 1.39 Severity: important On an old computer I still use Sarge from time to time (my TV card doesn't work in any later version...). I can boot the system with no problem with chainloading, but I'm unable to boot it directly, although the entries look correctly, e.g. menuentry "Debian GNU/Linux (3.1) (on /dev/sdb2)" { insmod part_msdos insmod ext2 set root='(hd1,msdos2)' search --no-floppy --fs-uuid --set f5ce7115-77d3-433c-9abc-a604aba64dce linux /boot/vmlinuz-2.4.20-3-k7 root=/dev/sdb2 initrd /boot/initrd.img-2.4.20-3-k7 } After selecting the entry the computer reboots with no error message. Regards JSB -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-486 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages os-prober depends on: ii libc6 2.11.2-2 Embedded GNU C Library: Shared lib os-prober recommends no packages. os-prober suggests no packages. -- no debconf information -- 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/e1omhcq-yx...@galicja.chello.pl
Bug#593811: debian-installer: DHCP requests reset Livebox modem/router
Package: debian-installer Severity: important DHCP requests from debian-installer make always to reset my Livebox, the ADSL modem/router from the french ISP Orange, doing impossible to finalize such installation mode. Applying a static IP, all works fine. The DHCP server of the Livebox works fine with all other systems, even with Debian testing after installation. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- 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/20100821001117.3699.60408.report...@arrcuis.home
Bug#593812: debian-installer: Impossible to answer to questions on normal install
Package: debian-installer Severity: grave debian-installer (netinstall) of 2010-08-19. With normal mode of install (ncurses ?), it is impossible to answer to setup questions (configure) seen in the background screen (Alt-F4). The install freeze. Only a kill action in busybox can do to continue. But the results of the installation is not sure. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- 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/20100821000118.3657.23080.report...@arrcuis.home