logo Debian Debian Debian-France Debian-Facile Debian-fr.org Forum-Debian.fr Debian ? Communautés logo inclusivité

Debian-facile

Bienvenue sur Debian-Facile, site d'aide pour les nouveaux utilisateurs de Debian.

Vous n'êtes pas identifié(e).

#1 03-11-2023 00:08:57

wardidi
Adhérent(e)
Lieu : Bretagne
Distrib. : DF 12.4
Noyau : 6.1.0-13-amd64
Inscription : 28-11-2022

[resolu]syslinux/isolinux - aide pour une Installation automatique

Bonjour,

Je veux installer debian sur un pc sans écran (carte graphique hs) pour en faire un serveur de musique
Dans un premier temps, je pensais faire une installation sur disque externe depuis un pc ubuntu puis le transferer en interne.(cf la discussion icihttps://debian-facile.org/viewtopic.php?id=34143)
Dans mes recherches je me suis aperçu qu'il était possible de faire une installation automatique avec preseed.
Je me suis aidé https://debian-facile.org/doc:install:preseed

J'ai modifié à ma convenance  le preseed.cfg  donné ici https://www.debian.org/releases/bookwor … reseed.txt

Pour la régénération de l'image, je me suis aidé de https://papy-tux.legtux.org/doc1078/index.html (les commandes du wiki me renvoyaient des erreurs)

J'ai tester la nouvelle iso avec virtualbox.
L'installateur se prépositionne sur install et j'appuis sur entrée.
L'installation se fait automatiquement jusqu'au reboot.

Comment faire pour éviter cette première touche obligatoire?

Mon iso/isolinux/txt.cfg

default install
  label install
      menu label ^Install      
      menu default
      kernel /install.386/vmlinuz
      append auto=true file=/cdrom/preseed.cfg vga=788 initrd=/install.386/initrd.gz --- quiet
 



Mon preseed.cfg

#_preseed_V1
#### Contents of the preconfiguration file (for bookworm)
### Localization
# Langue : français
d-i debian-installer/language string fr

# Pays : france
d-i debian-installer/country string FR
#d-i debian-installer/locale string en_GB.UTF-8
# Optionally specify additional locales to be generated.
#d-i localechooser/supported-locales multiselect en_US.UTF-8, nl_NL.UTF-8

# Clavier : français - latin9
d-i keyboard-configuration/xkb-keymap select fr(latin9)
# d-i keyboard-configuration/toggle select No toggling

### Network configuration
# Disable network configuration entirely. This is useful for cdrom
# installations on non-networked devices where the network questions,
# warning and long timeouts are a nuisance.
#d-i netcfg/enable boolean false

# netcfg will choose an interface that has link if possible. This makes it
# skip displaying a list if there is more than one interface.
# Sélection réseau automatique (si une interface est disponible)
d-i netcfg/choose_interface select auto

# To pick a particular interface instead:
#d-i netcfg/choose_interface select eth1

# To set a different link detection timeout (default is 3 seconds).
# Values are interpreted as seconds.
#d-i netcfg/link_wait_timeout string 10

# If you have a slow dhcp server and the installer times out waiting for
# it, this might be useful.
#d-i netcfg/dhcp_timeout string 60
#d-i netcfg/dhcpv6_timeout string 60

# Automatic network configuration is the default.
# If you prefer to configure the network manually, uncomment this line and
# the static network configuration below.
#d-i netcfg/disable_autoconfig boolean true

# If you want the preconfiguration file to work on systems both with and
# without a dhcp server, uncomment these lines and the static network
# configuration below.
#d-i netcfg/dhcp_failed note
#d-i netcfg/dhcp_options select Configure network manually

# Static network configuration.
#
# IPv4 example
#d-i netcfg/get_ipaddress string 192.168.1.42
#d-i netcfg/get_netmask string 255.255.255.0
#d-i netcfg/get_gateway string 192.168.1.1
#d-i netcfg/get_nameservers string 192.168.1.1
#d-i netcfg/confirm_static boolean true
#
# IPv6 example
#d-i netcfg/get_ipaddress string fc00::2
#d-i netcfg/get_netmask string ffff:ffff:ffff:ffff::
#d-i netcfg/get_gateway string fc00::1
#d-i netcfg/get_nameservers string fc00::1
#d-i netcfg/confirm_static boolean true

#Nom d'hôte : Entrée le nom d'hôte
d-i netcfg/get_hostname string debian

# Nom de domaine : ATTENTION - Peut-être laissé non défini, mais la ligne doit apparaître)
d-i netcfg/get_domain string unassigned-domain

# If you want to force a hostname, regardless of what either the DHCP
# server returns or what the reverse DNS entry for the IP is, uncomment
# and adjust the following line.
#d-i netcfg/hostname string somehost

# Disable that annoying WEP key dialog.
d-i netcfg/wireless_wep string
# The wacky dhcp hostname that some ISPs use as a password of sorts.
#d-i netcfg/dhcp_hostname string radish

# If you want to completely disable firmware lookup (i.e. not use firmware
# files or packages that might be available on installation images):
#d-i hw-detect/firmware-lookup string never

# Téléchargement de firmware non-libres,en cas de besoin, sans demander : oui
d-i hw-detect/load_firmware boolean true



### Network console
# Use the following settings if you wish to make use of the network-console
# component for remote installation over SSH. This only makes sense if you
# intend to perform the remainder of the installation manually.
#d-i anna/choose_modules string network-console
#d-i network-console/authorized_keys_url string http://10.0.0.1/openssh-key
#d-i network-console/password password r00tme
#d-i network-console/password-again password r00tme

### Mirror settings
# Mirror protocol:
# If you select ftp, the mirror/country string does not need to be set.
# Default value for the mirror protocol: http.
#d-i mirror/protocol string ftp
d-i mirror/country string manual
d-i mirror/http/hostname string http.us.debian.org
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string

# Suite to install.
#d-i mirror/suite string testing
# Suite to use for loading installer components (optional).
#d-i mirror/udeb/suite string testing

### Account setup
# Skip creation of a root account (normal user account will be able to
# use sudo).
#d-i passwd/root-login boolean false
# Alternatively, to skip creation of a normal user account.
#d-i passwd/make-user boolean false

# Mot de passe administrateur : remplacer par e mot de passe administrateur
d-i passwd/root-password password xxxxxxx
d-i passwd/root-password-again password xxxxx

# Nom utilisateur: remplacer par le nom d'utilisateur
d-i passwd/user-fullname string xxx
d-i passwd/username stringxxxx

 Mot de passe utilisateur : remplacer par le mot de passe utilisateur
d-i passwd/user-password password xxxxx
d-i passwd/user-password-again password xxx

# Root password, either in clear text
#d-i passwd/root-password password r00tme
#d-i passwd/root-password-again password r00tme
# or encrypted using a crypt(3)  hash.
#d-i passwd/root-password-crypted password [crypt(3) hash]

# To create a normal user account.
#d-i passwd/user-fullname string Debian User
#d-i passwd/username string debian
# Normal user's password, either in clear text
#d-i passwd/user-password password insecure
#d-i passwd/user-password-again password insecure
# or encrypted using a crypt(3) hash.
#d-i passwd/user-password-crypted password [crypt(3) hash]
# Create the first user with the specified UID instead of the default.
#d-i passwd/user-uid string 1010

# The user account will be added to some standard initial groups. To
# override that, use this.
#d-i passwd/user-default-groups string audio cdrom video

### Clock and time zone setup
# Controls whether or not the hardware clock is set to UTC.
d-i clock-setup/utc boolean true

# You may set this to any valid setting for $TZ; see the contents of
# /usr/share/zoneinfo/ for valid values.
d-i time/zone string US/Eastern

# Controls whether to use NTP to set the clock during the install
d-i clock-setup/ntp boolean true
# NTP server to use. The default is almost always fine here.
#d-i clock-setup/ntp-server string ntp.example.com

### Partitioning
## Partitioning example
# If the system has free space you can choose to only partition that space.
# This is only honoured if partman-auto/method (below) is not set.
#d-i partman-auto/init_automatically_partition select biggest_free

# Alternatively, you may specify a disk to partition. If the system has only
# one disk the installer will default to using that, but otherwise the device
# name must be given in traditional, non-devfs format (so e.g. /dev/sda
# and not e.g. /dev/discs/disc0/disc).
# For example, to use the first SCSI/SATA hard disk:
####DECOMMANTER PAR MOI
d-i partman-auto/disk string /dev/sda
# In addition, you'll need to specify the method to use.
# The presently available methods are:
# - regular: use the usual partition types for your architecture
# - lvm:     use LVM to partition the disk
# - crypto:  use LVM within an encrypted partition
d-i partman-auto/method string lvm

# You can define the amount of space that will be used for the LVM volume
# group. It can either be a size with its unit (eg. 20 GB), a percentage of
# free space or the 'max' keyword.
d-i partman-auto-lvm/guided_size string max

# If one of the disks that are going to be automatically partitioned
# contains an old LVM configuration, the user will normally receive a
# warning. This can be preseeded away...
d-i partman-lvm/device_remove_lvm boolean true
# The same applies to pre-existing software RAID array:
d-i partman-md/device_remove_md boolean true
# And the same goes for the confirmation to write the lvm partitions.
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true


# Schéma de partitionnement : tout en une partition >atomic, home séparé >home
d-i partman-auto/choose_recipe select atomic









# Or provide a recipe of your own...
# If you have a way to get a recipe file into the d-i environment, you can
# just point at it.
#d-i partman-auto/expert_recipe_file string /hd-media/recipe

# If not, you can put an entire recipe into the preconfiguration file in one
# (logical) line. This example creates a small /boot partition, suitable
# swap, and uses the rest of the space for the root partition:
#d-i partman-auto/expert_recipe string                         \
#      boot-root ::                                            \
#              40 50 100 ext3                                  \
#                      $primary{ } $bootable{ }                \
#                      method{ format } format{ }              \
#                      use_filesystem{ } filesystem{ ext3 }    \
#                      mountpoint{ /boot }                     \
#              .                                               \
#              500 10000 1000000000 ext3                       \
#                      method{ format } format{ }              \
#                      use_filesystem{ } filesystem{ ext3 }    \
#                      mountpoint{ / }                         \
#              .                                               \
#              64 512 300% linux-swap                          \
#                      method{ swap } format{ }                \
#              .

# The full recipe format is documented in the file partman-auto-recipe.txt
# included in the 'debian-installer' package or available from D-I source
# repository. This also documents how to specify settings such as file
# system labels, volume group names and which physical devices to include
# in a volume group.

## Partitioning for EFI
# If your system needs an EFI partition you could add something like
# this to the recipe above, as the first element in the recipe:
#               538 538 1075 free                              \
#                      $iflabel{ gpt }                         \
#                      $reusemethod{ }                         \
#                      method{ efi }                           \
#                      format{ }                               \
#               .                                              \
#
# The fragment above is for the amd64 architecture; the details may be
# different on other architectures. The 'partman-auto' package in the
# D-I source repository may have an example you can follow.

# This makes partman automatically partition without confirmation, provided

# Les partitions vont-être crées.Faut-il continuer? oui
d-i partman-partitioning/confirm_write_new_label boolean true

# Partitionnement : Terminer le partitionnement et appliquer les changements
d-i partman/choose_partition select finish

# Faut-il appliquer le changemet sur les disques : oui
d-i partman/confirm boolean true

# Les partitions existantes vont être écrasées ? oui
d-i partman/confirm_nooverwrite boolean true

d-i partman-md/confirm boolean true




# Force UEFI booting ('BIOS compatibility' will be lost). Default: false.
#d-i partman-efi/non_efi_system boolean true
# Ensure the partition table is GPT - this is required for EFI
#d-i partman-partitioning/choose_label select gpt
#d-i partman-partitioning/default_label string gpt

# When disk encryption is enabled, skip wiping the partitions beforehand.
#d-i partman-auto-crypto/erase_disks boolean false

## Partitioning using RAID
# The method should be set to "raid".
#d-i partman-auto/method string raid
# Specify the disks to be partitioned. They will all get the same layout,
# so this will only work if the disks are the same size.
#d-i partman-auto/disk string /dev/sda /dev/sdb

# Next you need to specify the physical partitions that will be used.
#d-i partman-auto/expert_recipe string \
#      multiraid ::                                         \
#              1000 5000 4000 raid                          \
#                      $primary{ } method{ raid }           \
#              .                                            \
#              64 512 300% raid                             \
#                      method{ raid }                       \
#              .                                            \
#              500 10000 1000000000 raid                    \
#                      method{ raid }                       \
#              .

# Last you need to specify how the previously defined partitions will be
# used in the RAID setup. Remember to use the correct partition numbers
# for logical partitions. RAID levels 0, 1, 5, 6 and 10 are supported;
# devices are separated using "#".
# Parameters are:
# <raidtype> <devcount> <sparecount> <fstype> <mountpoint> \
#          <devices> <sparedevices>

#d-i partman-auto-raid/recipe string \
#    1 2 0 ext3 /                    \
#          /dev/sda1#/dev/sdb1       \
#    .                               \
#    1 2 0 swap -                    \
#          /dev/sda5#/dev/sdb5       \
#    .                               \
#    0 2 0 ext3 /home                \
#          /dev/sda6#/dev/sdb6       \
#    .

# For additional information see the file partman-auto-raid-recipe.txt
# included in the 'debian-installer' package or available from D-I source
# repository.

# This makes partman automatically partition without confirmation.
#d-i partman-md/confirm boolean true
#d-i partman-partitioning/confirm_write_new_label boolean true
#d-i partman/choose_partition select finish
#d-i partman/confirm boolean true
#d-i partman/confirm_nooverwrite boolean true

## Controlling how partitions are mounted
# The default is to mount by UUID, but you can also choose "traditional" to
# use traditional device names, or "label" to try filesystem labels before
# falling back to UUIDs.
#d-i partman/mount_style select uuid

### Base system installation
# Configure APT to not install recommended packages by default. Use of this
# option can result in an incomplete system and should only be used by very
# experienced users.
#d-i base-installer/install-recommends boolean false

# The kernel image (meta) package to be installed; "none" can be used if no
# kernel is to be installed.
#d-i base-installer/kernel/image string linux-image-686

### Apt setup
# Choose, if you want to scan additional installation media
# (default: false).
d-i apt-setup/cdrom/set-first boolean false

# You can choose to install non-free firmware.
#DECOMMANTER PAR MOI
d-i apt-setup/non-free-firmware boolean true

# You can choose to install non-free and contrib software.
#d-i apt-setup/non-free boolean true
#d-i apt-setup/contrib boolean true
# Uncomment the following line, if you don't want to have the sources.list
# entry for a DVD/BD installation image active in the installed system
# (entries for netinst or CD images will be disabled anyway, regardless of
# this setting).
#d-i apt-setup/disable-cdrom-entries boolean true
# Uncomment this if you don't want to use a network mirror.
#d-i apt-setup/use_mirror boolean false

# Select which update services to use; define the mirrors to be used.
# Values shown below are the normal defaults.
#d-i apt-setup/services-select multiselect security, updates
#d-i apt-setup/security_host string security.debian.org

# Additional repositories, local[0-9] available
#d-i apt-setup/local0/repository string \
#       http://local.server/debian stable main
#d-i apt-setup/local0/comment string local server
# Enable deb-src lines
#d-i apt-setup/local0/source boolean true
# URL to the public key of the local repository; you must provide a key or
# apt will complain about the unauthenticated repository and so the
# sources.list line will be left commented out.
#d-i apt-setup/local0/key string http://local.server/key
# or one can provide it in-line by base64 encoding the contents of the
# key file (with `base64 -w0`) and specifying it thus:
#d-i apt-setup/local0/key string base64://LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tCi4uLgo=
# The content of the key file is checked to see if it appears to be ASCII-armoured.
# If so it will be saved with an ".asc" extension, otherwise it gets a '.gpg' extension.
# "keybox database" format is currently not supported. (see generators/60local in apt-setup's source)

# By default the installer requires that repositories be authenticated
# using a known gpg key. This setting can be used to disable that
# authentication. Warning: Insecure, not recommended.
#d-i debian-installer/allow_unauthenticated boolean true

# Uncomment this to add multiarch configuration for i386
#d-i apt-setup/multiarch string i386

# Apt-setup, utilisation miroir réseau : oui
d-i apt-setup/use_mirror boolean true

# Miroir pays : Entrée manuelle
d-i mirror/country string manual

# Miroir protocol : https
d-i mirror/protocol string https

# Miroir pays : Entrée manuelle
d-i mirror/https/country string manual

# Miroir nom d'hôte
d-i mirror/https/hostname string deb.debian.org

# Miroir - répertoire : debian
d-i mirror/https/directory string /debian

# Faut-il utiliser un proxy : non
d-i mirror/https/proxy string

# Tâches à installer : au minimum standard (possibilités additionnelles desktop, xfce-desktop, web-server, print-server, ssh-server,...)
tasksel tasksel/first multiselect standard ssh-server

# Or choose to not get the tasksel dialog displayed at all (and don't install
# any packages):
#d-i pkgsel/run_tasksel boolean false

# Individual additional packages to install
#DECOMMANTER PAR MOI
d-i pkgsel/include string openssh-server build-essential
# Whether to upgrade packages after debootstrap.
# Allowed values: none, safe-upgrade, full-upgrade
#d-i pkgsel/upgrade select none

# You can choose, if your system will report back on what software you have
# installed, and what software you use. The default is not to report back,
# but sending reports helps the project determine what software is most
# popular and should be included on the first CD/DVD.
#popularity-contest popularity-contest/participate boolean false

### Boot loader installation
# Grub is the boot loader (for x86).

# This is fairly safe to set, it makes grub install automatically to the UEFI
# partition/boot record if no other operating system is detected on the machine.
d-i grub-installer/only_debian boolean true
# Installation GRUB : remplacer par identifiant du disque /dev/sdx
d-i grub-installer/bootdev string /dev/sda

# This one makes grub-installer install to the UEFI partition/boot record, if
# it also finds some other OS, which is less safe as it might not be able to
# boot that other OS.
d-i grub-installer/with_other_os boolean true

# Désactiver le message indiquant la fin de l'installation
d-i finish-install/reboot_in_progress note

# Due notably to potential USB sticks, the location of the primary drive can
# not be determined safely in general, so this needs to be specified:
#d-i grub-installer/bootdev  string /dev/sda
# To install to the primary device (assuming it is not a USB stick):
#d-i grub-installer/bootdev  string default

# Alternatively, if you want to install to a location other than the UEFI
# parition/boot record, uncomment and edit these lines:
#d-i grub-installer/only_debian boolean false
#d-i grub-installer/with_other_os boolean false
#d-i grub-installer/bootdev  string (hd0,1)
# To install grub to multiple disks:
#d-i grub-installer/bootdev  string (hd0,1) (hd1,1) (hd2,1)

# Optional password for grub, either in clear text
#d-i grub-installer/password password r00tme
#d-i grub-installer/password-again password r00tme
# or encrypted using an MD5 hash, see grub-md5-crypt(8).
#d-i grub-installer/password-crypted password [MD5 hash]

# Use the following option to add additional boot parameters for the
# installed system (if supported by the bootloader installer).
# Note: options passed to the installer will be added automatically.
#d-i debian-installer/add-kernel-opts string nousb

### Finishing up the installation
# During installations from serial console, the regular virtual consoles
# (VT1-VT6) are normally disabled in /etc/inittab. Uncomment the next
# line to prevent this.
#d-i finish-install/keep-consoles boolean true

# Avoid that last message about the install being complete.
d-i finish-install/reboot_in_progress note

# This will prevent the installer from ejecting the CD during the reboot,
# which is useful in some situations.
#d-i cdrom-detect/eject boolean false

# This is how to make the installer shutdown when finished, but not
# reboot into the installed system.
#d-i debian-installer/exit/halt boolean true
# This will power off the machine instead of just halting it.
#d-i debian-installer/exit/poweroff boolean true

### Preseeding other packages
# Depending on what software you choose to install, or if things go wrong
# during the installation process, it's possible that other questions may
# be asked. You can preseed those too, of course. To get a list of every
# possible question that could be asked during an install, do an
# installation, and then run these commands:
#   debconf-get-selections --installer > file
#   debconf-get-selections >> file


#### Advanced options
### Running custom commands during the installation
# d-i preseeding is inherently not secure. Nothing in the installer checks
# for attempts at buffer overflows or other exploits of the values of a
# preconfiguration file like this one. Only use preconfiguration files from
# trusted locations! To drive that home, and because it's generally useful,
# here's a way to run any shell command you'd like inside the installer,
# automatically.

# This first command is run as early as possible, just after
# preseeding is read.
#d-i preseed/early_command string anna-install some-udeb
# This command is run immediately before the partitioner starts. It may be
# useful to apply dynamic partitioner preseeding that depends on the state
# of the disks (which may not be visible when preseed/early_command runs).
#d-i partman/early_command \
#       string debconf-set partman-auto/disk "$(list-devices disk | head -n1)"
# This command is run just before the install finishes, but when there is
# still a usable /target directory. You can chroot to /target and use it
# directly, or use the apt-install and in-target commands to easily install
# packages and run commands in the target system.
#d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh

 



J'ai  éditer isolinux/isolinux.cfg et isolinux/prompt.cfg et changer timeout 0 en timeout 4 .

Je sens que je touche au but mais reste bloqué.

Merci par avance.

Dernière modification par wardidi (18-11-2023 20:34:06)

En ligne

#2 03-11-2023 13:24:58

raleur
Membre
Inscription : 03-10-2014

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

Je crains que le titre trop vague n'attire pas assez l'attention des éventuels connaisseurs de syslinux/isolinux.

Il vaut mieux montrer que raconter.

Hors ligne

#3 03-11-2023 13:42:54

vv222
Administrateur
Lieu : Bretagne
Distrib. : Debian Sid
(G)UI : sway
Inscription : 18-11-2013
Site Web

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

J’ai modifié le titre en suivant le conseil de raleur, ça devrait rendre cette question plus visible par les personnes compétentes sur ce sujet.

Jouer sous Debian ? Facile !

Ceterum censeo Barum esse delendam

Hors ligne

#4 03-11-2023 16:54:31

arpinux
CA Debian-Facile
Lieu : Montréal d'aude
Distrib. : nakeDeb
Noyau : Linux 6.1 amd64
(G)UI : sway - i3wm - fluxbox
Inscription : 30-06-2016
Site Web

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

coucou smile
un petit timeout par exemple pourrait fonctionner ? https://wiki.syslinux.org/wiki/index.ph … ig#TIMEOUT
ce qui donnerait sur ton fichier de conf

default install
timeout 100
  label install
      menu label ^Install      
      menu default
      kernel /install.386/vmlinuz
      append auto=true file=/cdrom/preseed.cfg vga=788 initrd=/install.386/initrd.gz --- quiet
 


pour un lancement automatique en 10 secondes ... normalement, mais je n'ai pas testé smile


nous sommes tous différents ... c'est notre point commun ...
Association Debian-Facile - Les cahiers du débutant - ISO Debian-Facile - 3hg - nakeDeb
GNU/Linux©2006-2024

Hors ligne

#5 04-11-2023 09:33:33

wardidi
Adhérent(e)
Lieu : Bretagne
Distrib. : DF 12.4
Noyau : 6.1.0-13-amd64
Inscription : 28-11-2022

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

Bonjourà tous.

Merci Raleur et VV22 d'avoir permis à apinux de s'intérresser à mon sujet.

Et donc MERCI arpinux pour ta solution qui à presque résolu mon problème.
Ton lien est très instructif.

arpinux a écrit :

coucou smile
un petit timeout par exemple pourrait fonctionner ? https://wiki.syslinux.org/wiki/index.ph … ig#TIMEOUT
ce qui donnerait sur ton fichier de conf

default install
timeout 100
  label install
      menu label ^Install      
      menu default
      kernel /install.386/vmlinuz
      append auto=true file=/cdrom/preseed.cfg vga=788 initrd=/install.386/initrd.gz --- quiet
 


pour un lancement automatique en 10 secondes ... normalement, mais je n'ai pas testé smile



Je dis presque car le timeout n'empêchait pas le boot sur install en parole après 30s.
Je me suis dis que ce menu devait être "prioritaire" sur le menu Install.
J'ai alors éditer plusieurs /isolinux/.cfg pour trouver celui qui bootait. Je l'ai renommé en spkgtk.cfg.old.

L'install se fait bien en automatique dans une VM.

Dès que je peux je la tente sur le PC réel et reviens vers vous pour vous donner le résultats.

Merci encore à vous pour votre aide

En ligne

#6 07-11-2023 17:35:31

wardidi
Adhérent(e)
Lieu : Bretagne
Distrib. : DF 12.4
Noyau : 6.1.0-13-amd64
Inscription : 28-11-2022

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

Bonjour à tous,

Je viens de tenté plusieurs fois l'installation auto sur mon vieux PC
Snif, ça ne boot pas.
A chaque fois le DVD tourne pendant 30s puis s'arrête. Si j'appuis sur power, l'extinction est immédiate.

Mes pistes:
-Problème de bios:
La Debian actuelle a été installée avec DVD. Donc le bios doit être encore configuré pour un boot sur DVD. A ma connaissance je ne peux pas y accéder sans écran.

-Problèmes Matériel/config:
Le PC est un P4 1.5 go de ram. Il sert de serveur musical. Il tourne sous débian (debian-facile-12.1_i386.iso) en mode graphique initialement et en tty depuis que la carte graphique à lachée.
Je cherche à changer ce DD IDE qui donne des signes de faiblesse et voudrais en profiter pour une install clean minimum. Je le remplace par un sata 2.5" 1to sur un adaptateur IDE/SATA. Celui-ci est bien détecté en sdb dans la config actuel. J'ai donc éliminé un problème matériel de ce coté. Il a 1 seul partition EXT4.
Lecteur DVD et DD sur 2 nappes  différentes donc normalement pas de problèmes de maitre/esclave.
L'iso modifiée pour une install auto est basée sur  debian-12.1.0-i386-netinst.iso . Aucun problème à l'essai sur une machine avec virtualbox. L'install est auto du début jusqu'à la fin.
Je l'ai gravé plusieurs fois sur DVD R et DVD rw sous ubuntu avec k3b ou xfburn petite vitesse




Les autres solutions indépendante d'une installation auto:
-Clonage
Je pilote la debian actuelle en ssh sur un pc ubuntu. Est-ce possible?

-Carte graphique
Comme me l'a suggérer Raleur, il faudrait me trouver une AGP radeon 4x ou 8x le temps de l'install.
Si quelqu'un passant par là en a une , je suis dans le 56.....

-Transfert de disque
J'ai tenté le transfert du disque externe(install depuis un autre pc) en interne.(cf la discussion icihttps://debian-facile.org/viewtopic.php?id=34143) Aucun boot.
En USB le disque externe boot bien sur 2 laptop mais pas sur le p4.
Si je le met en interne avec le DD actuel(sda), le boot se fait toujours sur sda

~# fdisk -l


Disque /dev/sda : 149,05 GiB, 160041885696 octets, 312581808 secteurs
Modèle de disque : ST3160022ACE    
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x8b72f427

Périphérique Amorçage     Début       Fin  Secteurs Taille Id Type
/dev/sda1    *             2048 310579199 310577152 148,1G 83 Linux
/dev/sda2             310581246 312580095   1998850   976M  5 Étendue
/dev/sda5             310581248 312580095   1998848   976M 82 partition d'échange Linux / Solaris


Disque /dev/sdb : 465,76 GiB, 500107862016 octets, 976773168 secteurs
Modèle de disque : WDC WD5000BEVT-2
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0xe2a2a801

Périphérique Amorçage     Début       Fin  Secteurs Taille Id Type
/dev/sdb1                  2048 974772223 974770176 464,8G 83 Linux
/dev/sdb2             974774270 976771071   1996802   975M  5 Étendue
/dev/sdb5             974774272 976771071   1996800   975M 82 partition d'échange Linux / Solaris
 



Et le debian de sdb est trouvé

os-prober
/dev/sdb1:Debian GNU/Linux 12 (bookworm):Debian:linux



Y a -t-il moyen de "réparer sdb" pour qu'il boot en premier
A noter qu'il faudrait installer la carte réseau sur sdb puisque l'installe à été faite sur un autre PC (si j'ai bien compris Raleur)

raleur a écrit :

- Il pourra manquer des firmwares non libres pour le matériel de l'autre PC, notamment les cartes réseau, car l'installateur n'installe que les firmwares non libres pour le matériel détecté lors de l'installation. Il vaudra mieux les installer avant le transfert.

Dernière modification par wardidi (07-11-2023 18:27:56)

En ligne

#7 08-11-2023 14:32:49

raleur
Membre
Inscription : 03-10-2014

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

Qu'est-ce qui ne boote pas ? L'installateur sur le DVD ou le système installé ?

wardidi a écrit :

Y a -t-il moyen de "réparer sdb" pour qu'il boot en premier


D'abord, le mettre en premier dans l'ordre de boot ou retirer l'autre disque.
Ensuite, certains BIOS buggés exigent qu'une des partitions primaires soit marquée amorçable, ce qui n'est pas le cas sur sdb.

wardidi a écrit :

A noter qu'il faudrait installer la carte réseau sur sdb puisque l'installe à été faite sur un autre PC


Il faut installer les éventuels firmwares nécessaires et la configurer dans le gestionnaire de réseau utilisé (/etc/network/interfaces avec ifupdown, ça risque d'être plus compliqué avec NetworkManager si elle n'existe pas encore). Informations à récupérer dans le système actuel.

Dernière modification par raleur (08-11-2023 14:33:28)


Il vaut mieux montrer que raconter.

Hors ligne

#8 08-11-2023 16:02:57

wardidi
Adhérent(e)
Lieu : Bretagne
Distrib. : DF 12.4
Noyau : 6.1.0-13-amd64
Inscription : 28-11-2022

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

raleur a écrit :

wardidi a écrit :

Y a -t-il moyen de "réparer sdb" pour qu'il boot en premier


D'abord, le mettre en premier dans l'ordre de boot ou retirer l'autre disque..
Ensuite, certains BIOS buggés exigent qu'une des partitions primaires soit marquée amorçable, ce qui n'est pas le cas sur sdb.


J'avais bien entendu enlevé le disque primaire.

raleur a écrit :

wardidi a écrit :

A noter qu'il faudrait installer la carte réseau sur sdb puisque l'installe à été faite sur un autre PC


Il faut installer les éventuels firmwares nécessaires et la configurer dans le gestionnaire de réseau utilisé (/etc/network/interfaces avec ifupdown, ça risque d'être plus compliqué avec NetworkManager si elle n'existe pas encore). Informations à récupérer dans le système actuel.


Comment faire pour les installer? en ssh depuis sda qui boot?

Ca me semble très complexe à mon niveau.
Serait-il préférable de me concentrer sur une install en auto et donc gérer le problème du boot du DVD?

raleur a écrit :

Qu'est-ce qui ne boote pas ? L'installateur sur le DVD ou le système installé ?


Oui c'est l'installeur sur le dvd qui ne boote pas.
C'est comme ci il n'était pas booteable.


Pour reconstituer l'iso je fais dans le répertoire contenant les fichiers avec le pressed.cfg

find . -type f -print0 | xargs -0 md5sum > md5sum.txt


genisoimage -o ../linux.iso -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b isolinux/isolinux.bin -c isolinux/boot.cat ./
I: -input-charset not specified, using utf-8 (detected in locale settings)
Using DEBIN000.CSS;1 for  ./css/debinstall-print.css (debinstall.css)
Using DARK_000.;1 for  ./boot/grub/theme/dark-1-2-1 (dark-1-2)
Using DARK_001.;1 for  ./boot/grub/theme/dark-1-1-1 (dark-1-1)
Using TRANS000.GZ;1 for  ./dists/bookworm/main/i18n/Translation-sk.gz (Translation-id.gz)
Using TRANS001.GZ;1 for  ./dists/bookworm/main/i18n/Translation-id.gz (Translation-tr.gz)
Using TRANS002.GZ;1 for  ./dists/bookworm/main/i18n/Translation-tr.gz (Translation-ja.gz)
Using TRANS003.GZ;1 for  ./dists/bookworm/main/i18n/Translation-ja.gz (Translation-sv.gz)
Using TRANS004.GZ;1 for  ./dists/bookworm/main/i18n/Translation-sv.gz (Translation-gl.gz)
Using TRANS005.GZ;1 for  ./dists/bookworm/main/i18n/Translation-gl.gz (Translation-hu.gz)
Using TRANS006.GZ;1 for  ./dists/bookworm/main/i18n/Translation-hu.gz (Translation-zh_CN.gz)
Using TRANS007.GZ;1 for  ./dists/bookworm/main/i18n/Translation-zh_CN.gz (Translation-fr.gz)
Using TRANS008.GZ;1 for  ./dists/bookworm/main/i18n/Translation-fr.gz (Translation-ru.gz)
Using TRANS009.GZ;1 for  ./dists/bookworm/main/i18n/Translation-ru.gz (Translation-pt.gz)
Using TRANS00A.GZ;1 for  ./dists/bookworm/main/i18n/Translation-pt.gz (Translation-da.gz)
Using TRANS00B.GZ;1 for  ./dists/bookworm/main/i18n/Translation-da.gz (Translation-vi.gz)
Using TRANS00C.GZ;1 for  ./dists/bookworm/main/i18n/Translation-vi.gz (Translation-eu.gz)
Using TRANS00D.GZ;1 for  ./dists/bookworm/main/i18n/Translation-eu.gz (Translation-ro.gz)
Using TRANS00E.GZ;1 for  ./dists/bookworm/main/i18n/Translation-ro.gz (Translation-zh_TW.gz)
Using TRANS00F.GZ;1 for  ./dists/bookworm/main/i18n/Translation-zh_TW.gz (Translation-pt_BR.gz)
Using TRANS00G.GZ;1 for  ./dists/bookworm/main/i18n/Translation-pt_BR.gz (Translation-nl.gz)
Using TRANS00H.GZ;1 for  ./dists/bookworm/main/i18n/Translation-nl.gz (Translation-pt_AO.gz)
Using TRANS00I.GZ;1 for  ./dists/bookworm/main/i18n/Translation-pt_AO.gz (Translation-nb.gz)
Using TRANS00J.GZ;1 for  ./dists/bookworm/main/i18n/Translation-nb.gz (Translation-fi.gz)
Using TRANS00K.GZ;1 for  ./dists/bookworm/main/i18n/Translation-fi.gz (Translation-cs.gz)
Using TRANS00L.GZ;1 for  ./dists/bookworm/main/i18n/Translation-cs.gz (Translation-ko.gz)
Using TRANS00M.GZ;1 for  ./dists/bookworm/main/i18n/Translation-ko.gz (Translation-km.gz)
Using TRANS00N.GZ;1 for  ./dists/bookworm/main/i18n/Translation-km.gz (Translation-el.gz)
Using TRANS00O.GZ;1 for  ./dists/bookworm/main/i18n/Translation-el.gz (Translation-pl.gz)
Using TRANS00P.GZ;1 for  ./dists/bookworm/main/i18n/Translation-pl.gz (Translation-eo.gz)
Using TRANS00Q.GZ;1 for  ./dists/bookworm/main/i18n/Translation-eo.gz (Translation-sr.gz)
Using TRANS00R.GZ;1 for  ./dists/bookworm/main/i18n/Translation-sr.gz (Translation-es.gz)
Using TRANS00S.GZ;1 for  ./dists/bookworm/main/i18n/Translation-es.gz (Translation-ca.gz)
Using TRANS00T.GZ;1 for  ./dists/bookworm/main/i18n/Translation-ca.gz (Translation-de_DE.gz)
Using TRANS00U.GZ;1 for  ./dists/bookworm/main/i18n/Translation-de_DE.gz (Translation-uk.gz)
Using TRANS00V.GZ;1 for  ./dists/bookworm/main/i18n/Translation-uk.gz (Translation-it.gz)
Using TRANS00W.GZ;1 for  ./dists/bookworm/main/i18n/Translation-it.gz (Translation-zh.gz)
Using TRANS00X.GZ;1 for  ./dists/bookworm/main/i18n/Translation-zh.gz (Translation-hr.gz)
Using TRANS00Y.GZ;1 for  ./dists/bookworm/main/i18n/Translation-hr.gz (Translation-de.gz)
Using FIRMW000.DEB;1 for  ./firmware/firmware-linux-free_20200122-1_all.deb (firmware-bnx2_20230210-5_all.deb)
Using FIRMW001.DEB;1 for  ./firmware/firmware-bnx2_20230210-5_all.deb (firmware-realtek-rtl8723cs-bt_20181104-2_all.deb)
Using FIRMW002.DEB;1 for  ./firmware/firmware-realtek-rtl8723cs-bt_20181104-2_all.deb (firmware-qlogic_20230210-5_all.deb)
Using FIRMW003.DEB;1 for  ./firmware/firmware-qlogic_20230210-5_all.deb (firmware-ast_20140808-7_all.deb)
Using FIRMW004.DEB;1 for  ./firmware/firmware-ast_20140808-7_all.deb (firmware-ath9k-htc_1.4.0-108-gd856466+dfsg1-1.3_all.deb)
Using FIRMW005.DEB;1 for  ./firmware/firmware-ath9k-htc_1.4.0-108-gd856466+dfsg1-1.3_all.deb (firmware-atheros_20230210-5_all.deb)
Using FIRMW006.DEB;1 for  ./firmware/firmware-atheros_20230210-5_all.deb (firmware-cavium_20230210-5_all.deb)
Using FIRMW007.DEB;1 for  ./firmware/firmware-cavium_20230210-5_all.deb (firmware-sof-signed_2.2.4-1_all.deb)
Using FIRMW008.DEB;1 for  ./firmware/firmware-sof-signed_2.2.4-1_all.deb (firmware-ipw2x00_20230210-5_all.deb)
Using FIRMW009.DEB;1 for  ./firmware/firmware-ipw2x00_20230210-5_all.deb (firmware-zd1211_1.5-10_all.deb)
Using FIRMW00A.DEB;1 for  ./firmware/firmware-zd1211_1.5-10_all.deb (firmware-brcm80211_20230210-5_all.deb)
Using FIRMW00B.DEB;1 for  ./firmware/firmware-brcm80211_20230210-5_all.deb (firmware-myricom_20230210-5_all.deb)
Using FIRMW00C.DEB;1 for  ./firmware/firmware-myricom_20230210-5_all.deb (firmware-misc-nonfree_20230210-5_all.deb)
Using FIRMW00D.DEB;1 for  ./firmware/firmware-misc-nonfree_20230210-5_all.deb (firmware-netxen_20230210-5_all.deb)
Using FIRMW00E.DEB;1 for  ./firmware/firmware-netxen_20230210-5_all.deb (firmware-iwlwifi_20230210-5_all.deb)
Using FIRMW00F.DEB;1 for  ./firmware/firmware-iwlwifi_20230210-5_all.deb (firmware-netronome_20230210-5_all.deb)
Using FIRMW00G.DEB;1 for  ./firmware/firmware-netronome_20230210-5_all.deb (firmware-amd-graphics_20230210-5_all.deb)
Using FIRMW00H.DEB;1 for  ./firmware/firmware-amd-graphics_20230210-5_all.deb (firmware-siano_20230210-5_all.deb)
Using FIRMW00I.DEB;1 for  ./firmware/firmware-siano_20230210-5_all.deb (firmware-realtek_20230210-5_all.deb)
Using FIRMW00J.DEB;1 for  ./firmware/firmware-realtek_20230210-5_all.deb (firmware-intel-sound_20230210-5_all.deb)
Using FIRMW00K.DEB;1 for  ./firmware/firmware-intel-sound_20230210-5_all.deb (firmware-libertas_20230210-5_all.deb)
Using FIRMW00L.DEB;1 for  ./firmware/firmware-libertas_20230210-5_all.deb (firmware-ivtv_20230210-5_all.deb)
Using FIRMW00M.DEB;1 for  ./firmware/firmware-ivtv_20230210-5_all.deb (firmware-linux-nonfree_20230210-5_all.deb)
Using FIRMW00N.DEB;1 for  ./firmware/firmware-linux-nonfree_20230210-5_all.deb (firmware-bnx2x_20230210-5_all.deb)
Using FIRMW000.PAT;1 for  ./firmware/dep11/firmware-amd-graphics.patterns (firmware-sof-signed.patterns)
Using FIRMW001.PAT;1 for  ./firmware/dep11/firmware-sof-signed.patterns (firmware-bnx2.patterns)
Using FIRMW000.COM;1 for  ./firmware/dep11/firmware-misc-nonfree.component (firmware-sof-signed.component)
Using FIRMW002.PAT;1 for  ./firmware/dep11/firmware-bnx2.patterns (firmware-myricom.patterns)
Using FIRMW001.COM;1 for  ./firmware/dep11/firmware-sof-signed.component (firmware-libertas.component)
Using FIRMW002.COM;1 for  ./firmware/dep11/firmware-libertas.component (firmware-bnx2.component)
Using FIRMW003.PAT;1 for  ./firmware/dep11/firmware-myricom.patterns (firmware-iwlwifi.patterns)
Using FIRMW004.PAT;1 for  ./firmware/dep11/firmware-iwlwifi.patterns (firmware-realtek.patterns)
Using FIRMW005.PAT;1 for  ./firmware/dep11/firmware-realtek.patterns (firmware-libertas.patterns)
Using FIRMW003.COM;1 for  ./firmware/dep11/firmware-bnx2.component (firmware-ath9k-htc.component)
Using FIRMW004.COM;1 for  ./firmware/dep11/firmware-ath9k-htc.component (firmware-qlogic.component)
Using FIRMW006.PAT;1 for  ./firmware/dep11/firmware-libertas.patterns (firmware-brcm80211.patterns)
Using FIRMW007.PAT;1 for  ./firmware/dep11/firmware-brcm80211.patterns (firmware-misc-nonfree.patterns)
Using FIRMW008.PAT;1 for  ./firmware/dep11/firmware-misc-nonfree.patterns (firmware-ivtv.patterns)
Using FIRMW009.PAT;1 for  ./firmware/dep11/firmware-ivtv.patterns (firmware-netxen.patterns)
Using FIRMW005.COM;1 for  ./firmware/dep11/firmware-qlogic.component (firmware-bnx2x.component)
Using FIRMW006.COM;1 for  ./firmware/dep11/firmware-bnx2x.component (firmware-netxen.component)
Using FIRMW00A.PAT;1 for  ./firmware/dep11/firmware-netxen.patterns (firmware-qlogic.patterns)
Using FIRMW007.COM;1 for  ./firmware/dep11/firmware-netxen.component (firmware-amd-graphics.component)
Using FIRMW008.COM;1 for  ./firmware/dep11/firmware-amd-graphics.component (firmware-ipw2x00.component)
Using FIRMW00B.PAT;1 for  ./firmware/dep11/firmware-qlogic.patterns (firmware-bnx2x.patterns)
Using FIRMW009.COM;1 for  ./firmware/dep11/firmware-ipw2x00.component (firmware-brcm80211.component)
Using FIRMW00A.COM;1 for  ./firmware/dep11/firmware-brcm80211.component (firmware-cavium.component)
Using FIRMW00B.COM;1 for  ./firmware/dep11/firmware-cavium.component (firmware-ivtv.component)
Using FIRMW00C.PAT;1 for  ./firmware/dep11/firmware-bnx2x.patterns (firmware-ipw2x00.patterns)
Using FIRMW00D.PAT;1 for  ./firmware/dep11/firmware-ipw2x00.patterns (firmware-atheros.patterns)
Using FIRMW00C.COM;1 for  ./firmware/dep11/firmware-ivtv.component (firmware-realtek.component)
Using FIRMW00E.PAT;1 for  ./firmware/dep11/firmware-atheros.patterns (firmware-netronome.patterns)
Using FIRMW00F.PAT;1 for  ./firmware/dep11/firmware-netronome.patterns (firmware-cavium.patterns)
Using FIRMW00D.COM;1 for  ./firmware/dep11/firmware-realtek.component (firmware-iwlwifi.component)
Using FIRMW00E.COM;1 for  ./firmware/dep11/firmware-iwlwifi.component (firmware-myricom.component)
Using FIRMW00F.COM;1 for  ./firmware/dep11/firmware-myricom.component (firmware-netronome.component)
Using FIRMW00G.PAT;1 for  ./firmware/dep11/firmware-cavium.patterns (firmware-ath9k-htc.patterns)
Using FIRMW00G.COM;1 for  ./firmware/dep11/firmware-netronome.component (firmware-atheros.component)
Using BLUE_000.PNG;1 for  ./pics/blue-lowerright.png (blue-lowerleft.png)
Using BLUE_001.PNG;1 for  ./pics/blue-upperleft.png (blue-upperright.png)
Using RED_L000.PNG;1 for  ./pics/red-lowerleft.png (red-lowerright.png)
Using RED_U000.PNG;1 for  ./pics/red-upperright.png (red-upperleft.png)
Using BUG_M000.TXT;1 for  ./doc/bug-maint-mailcontrol.txt (bug-maint-info.txt)
Using BUG_L000.TXT;1 for  ./doc/bug-log-access.txt (bug-log-mailserver.txt)
Using DEBIA000.GZ;1 for  ./doc/FAQ/debian-faq.en.pdf.gz (debian-faq.en.txt.gz)
Using SOFTW000.HTM;1 for  ./doc/FAQ/html/software.html (software.en.html)
Using REDIS000.HTM;1 for  ./doc/FAQ/html/redistributing.en.html (redistributing.html)
Using COMPA000.HTM;1 for  ./doc/FAQ/html/compatibility.html (compatibility.en.html)
Using GETTI000.HTM;1 for  ./doc/FAQ/html/getting-debian.html (getting-debian.en.html)
Using CONTR000.HTM;1 for  ./doc/FAQ/html/contributing.html (contributing.en.html)
Using BASIC000.HTM;1 for  ./doc/FAQ/html/basic-defs.en.html (basic-defs.html)
Using FTPAR000.HTM;1 for  ./doc/FAQ/html/ftparchives.en.html (ftparchives.html)
Using PKG_B000.HTM;1 for  ./doc/FAQ/html/pkg-basics.html (pkg-basics.en.html)
Using PKGTO000.HTM;1 for  ./doc/FAQ/html/pkgtools.html (pkgtools.en.html)
Using UPTOD000.HTM;1 for  ./doc/FAQ/html/uptodate.en.html (uptodate.html)
Using CUSTO000.HTM;1 for  ./doc/FAQ/html/customizing.html (customizing.en.html)
Using NEXTR000.HTM;1 for  ./doc/FAQ/html/nextrelease.en.html (nextrelease.html)
Using CHOOS000.HTM;1 for  ./doc/FAQ/html/choosing.html (choosing.en.html)
Using FIRMW000 for  ./pool/non-free-firmware/f/firmware-nonfree (firmware-ast)
Using FIRMW001 for  ./pool/non-free-firmware/f/firmware-ast (firmware-sof)
Using FIRMW000.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-bnx2_20230210-5_all.deb (firmware-qlogic_20230210-5_all.deb)
Using FIRMW001.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-qlogic_20230210-5_all.deb (firmware-atheros_20230210-5_all.deb)
Using FIRMW002.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-atheros_20230210-5_all.deb (firmware-cavium_20230210-5_all.deb)
Using FIRMW003.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-cavium_20230210-5_all.deb (firmware-ipw2x00_20230210-5_all.deb)
Using FIRMW004.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-ipw2x00_20230210-5_all.deb (firmware-brcm80211_20230210-5_all.deb)
Using FIRMW005.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-brcm80211_20230210-5_all.deb (firmware-myricom_20230210-5_all.deb)
Using FIRMW006.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-myricom_20230210-5_all.deb (firmware-misc-nonfree_20230210-5_all.deb)
Using FIRMW007.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-misc-nonfree_20230210-5_all.deb (firmware-netxen_20230210-5_all.deb)
Using FIRMW008.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-netxen_20230210-5_all.deb (firmware-iwlwifi_20230210-5_all.deb)
Using FIRMW009.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-iwlwifi_20230210-5_all.deb (firmware-netronome_20230210-5_all.deb)
Using FIRMW00A.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-netronome_20230210-5_all.deb (firmware-amd-graphics_20230210-5_all.deb)
Using FIRMW00B.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-amd-graphics_20230210-5_all.deb (firmware-siano_20230210-5_all.deb)
Using FIRMW00C.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-siano_20230210-5_all.deb (firmware-realtek_20230210-5_all.deb)
Using FIRMW00D.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-realtek_20230210-5_all.deb (firmware-intel-sound_20230210-5_all.deb)
Using FIRMW00E.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-intel-sound_20230210-5_all.deb (firmware-libertas_20230210-5_all.deb)
Using FIRMW00F.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-libertas_20230210-5_all.deb (firmware-ivtv_20230210-5_all.deb)
Using FIRMW00G.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-ivtv_20230210-5_all.deb (firmware-linux-nonfree_20230210-5_all.deb)
Using FIRMW00H.DEB;1 for  ./pool/non-free-firmware/f/firmware-nonfree/firmware-linux-nonfree_20230210-5_all.deb (firmware-bnx2x_20230210-5_all.deb)
Using PARTM000 for  ./pool/main/p/partman-basicmethods (partman-auto-lvm)
Using PARTM001 for  ./pool/main/p/partman-auto-lvm (partman-auto)
Using PARTM002 for  ./pool/main/p/partman-auto (partman-nbd)
Using PARTM003 for  ./pool/main/p/partman-nbd (partman-auto-crypto)
Using PARTM004 for  ./pool/main/p/partman-auto-crypto (partman-partitioning)
Using PARTM005 for  ./pool/main/p/partman-partitioning (partman-base)
Using PARTM006 for  ./pool/main/p/partman-base (partman-lvm)
Using PARTM007 for  ./pool/main/p/partman-lvm (partman-ext3)
Using PARTM008 for  ./pool/main/p/partman-ext3 (partman-jfs)
Using PARTM009 for  ./pool/main/p/partman-jfs (partman-cros)
Using PARTM00A for  ./pool/main/p/partman-cros (partman-target)
Using PYTHO000 for  ./pool/main/p/python-charset-normalizer (python-certifi)
Using PYTHO001 for  ./pool/main/p/python-debian (python-debianbts)
Using PARTM00B for  ./pool/main/p/partman-target (partman-efi)
Using PARTM00C for  ./pool/main/p/partman-efi (partman-xfs)
Using PARTM00D for  ./pool/main/p/partman-xfs (partman-crypto)
Using PARTM00E for  ./pool/main/p/partman-crypto (partman-auto-raid)
Using PARTM00F for  ./pool/main/p/partman-auto-raid (partman-multipath)
Using PARTM00G for  ./pool/main/p/partman-multipath (partman-basicfilesystems)
Using PARTM00H for  ./pool/main/p/partman-basicfilesystems (partman-iscsi)
Using PARTM00I for  ./pool/main/p/partman-iscsi (partman-btrfs)
Using PARTM00J for  ./pool/main/p/partman-btrfs (partman-md)
Using PYTHO000.DEB;1 for  ./pool/main/p/python3-defaults/python3_3.11.2-1+b1_i386.deb (python3-minimal_3.11.2-1+b1_i386.deb)
Using LIBPC000.DEB;1 for  ./pool/main/p/pcre2/libpcre2-32-0_10.42-1_i386.deb (libpcre2-8-0_10.42-1_i386.deb)
Using LIBPA000.DEB;1 for  ./pool/main/p/pam/libpam-modules_1.5.2-6_i386.deb (libpam-modules-bin_1.5.2-6_i386.deb)
Using LIBPY000.DEB;1 for  ./pool/main/p/python3.11/libpython3.11-stdlib_3.11.2-6_i386.deb (libpython3.11-minimal_3.11.2-6_i386.deb)
Using PYTHO000.DEB;1 for  ./pool/main/p/python3.11/python3.11-minimal_3.11.2-6_i386.deb (python3.11_3.11.2-6_i386.deb)
Using PARTM000.UDE;1 for  ./pool/main/p/partman-crypto/partman-crypto-dm_121_all.udeb (partman-crypto_121_i386.udeb)
Using PARTM000.UDE;1 for  ./pool/main/p/partman-base/partman-base_226_i386.udeb (partman-utils_226_i386.udeb)
Using LIBPO000.DEB;1 for  ./pool/main/p/policykit-1/libpolkit-gobject-1-0_122-3_i386.deb (libpolkit-agent-1-0_122-3_i386.deb)
Using LIBPA000.UDE;1 for  ./pool/main/p/parted/libparted2-udeb_3.5-3_i386.udeb (libparted-fs-resize0-udeb_3.5-3_i386.udeb)
Using ISC_D000.DEB;1 for  ./pool/main/i/isc-dhcp/isc-dhcp-client_4.4.3-P1-2_i386.deb (isc-dhcp-common_4.4.3-P1-2_i386.deb)
Using INITR000.DEB;1 for  ./pool/main/i/initramfs-tools/initramfs-tools_0.142_all.deb (initramfs-tools-core_0.142_all.deb)
Using LIBSE000.DEB;1 for  ./pool/main/libs/libsemanage/libsemanage-common_3.4-1_all.deb (libsemanage2_3.4-1+b5_i386.deb)
Using LIBCR000.DEB;1 for  ./pool/main/libx/libxcrypt/libcrypt-dev_4.4.33-2_i386.deb (libcrypt1_4.4.33-2_i386.deb)
Using E2FSP000.DEB;1 for  ./pool/main/e/e2fsprogs/e2fsprogs-l10n_1.47.0-2_all.deb (e2fsprogs_1.47.0-2_i386.deb)
Using WIREL000 for  ./pool/main/w/wireless-regdb (wireless-tools)
Using LIBGL000.DEB;1 for  ./pool/main/g/glib2.0/libglib2.0-0_2.74.6-2_i386.deb (libglib2.0-data_2.74.6-2_all.deb)
Using LIBGD000.UDE;1 for  ./pool/main/g/gdk-pixbuf/libgdk-pixbuf-2.0-0-udeb_2.42.10+dfsg-1+b1_i386.udeb (libgdk-pixbuf2.0-0-udeb_2.42.10+dfsg-1+b1_i386.udeb)
Using GPG_W000.DEB;1 for  ./pool/main/g/gnupg2/gpg-wks-server_2.2.40-1.1_i386.deb (gpg-wks-client_2.2.40-1.1_i386.deb)
Using GRUB_000.DEB;1 for  ./pool/main/g/grub2/grub-efi_2.06-13_i386.deb (grub-efi-ia32_2.06-13_i386.deb)
Using GRUB_001.DEB;1 for  ./pool/main/g/grub2/grub-pc_2.06-13_i386.deb (grub-pc-bin_2.06-13_i386.deb)
Using GRUB_002.DEB;1 for  ./pool/main/g/grub2/grub-efi-ia32_2.06-13_i386.deb (grub-efi-ia32-bin_2.06-13_i386.deb)
Using LIBGN000.DEB;1 for  ./pool/main/g/gnutls28/libgnutls-dane0_3.7.9-2_i386.deb (libgnutls30_3.7.9-2_i386.deb)
Using LIBC_000.DEB;1 for  ./pool/main/g/glibc/libc-devtools_2.36-9+deb12u1_i386.deb (libc-dev-bin_2.36-9+deb12u1_i386.deb)
Using LIBTE000 for  ./pool/main/libt/libtext-wrapi18n-perl (libtext-charwidth-perl)
Using LIBTE001 for  ./pool/main/libt/libtext-charwidth-perl (libtext-iconv-perl)
Using LIBTE002 for  ./pool/main/libt/libtext-iconv-perl (libtext-glob-perl)
Using LIBTI000.DEB;1 for  ./pool/main/libt/libtirpc/libtirpc-dev_1.3.3+ds-1_i386.deb (libtirpc3_1.3.3+ds-1_i386.deb)
Using LIBTI001.DEB;1 for  ./pool/main/libt/libtirpc/libtirpc3_1.3.3+ds-1_i386.deb (libtirpc-common_1.3.3+ds-1_all.deb)
Using LIBCA000.DEB;1 for  ./pool/main/libc/libcap2/libcap2-bin_2.66-4_i386.deb (libcap2_2.66-4_i386.deb)
Using TASKS000.DEB;1 for  ./pool/main/t/tasksel/tasksel_3.73_all.deb (tasksel-data_3.73_all.deb)
Using LIBVO000.DEB;1 for  ./pool/main/libv/libvorbis/libvorbisenc2_1.3.7-1_i386.deb (libvorbis0a_1.3.7-1_i386.deb)
Using NCURS000.DEB;1 for  ./pool/main/n/ncurses/ncurses-bin_6.4-4_i386.deb (ncurses-term_6.4-4_all.deb)
Using NCURS001.DEB;1 for  ./pool/main/n/ncurses/ncurses-term_6.4-4_all.deb (ncurses-base_6.4-4_all.deb)
Using LIBAS000.DEB;1 for  ./pool/main/a/alsa-lib/libasound2_1.2.8-1+b1_i386.deb (libasound2-data_1.2.8-1_all.deb)
Using LIBAU000.DEB;1 for  ./pool/main/a/audit/libaudit-common_3.0.9-1_all.deb (libaudit1_3.0.9-1_i386.deb)
Using MATCH000 for  ./pool/main/m/matchbox-keyboard (matchbox-window-manager)
Using MULTI000.DEB;1 for  ./pool/main/m/multipath-tools/multipath-tools-boot_0.9.4-3+deb12u1_all.deb (multipath-tools_0.9.4-3+deb12u1_i386.deb)
Using MANPA000.DEB;1 for  ./pool/main/m/manpages/manpages-dev_6.03-2_all.deb (manpages_6.03-2_all.deb)
Using LIBGP000.DEB;1 for  ./pool/main/libg/libgpg-error/libgpg-error0_1.46-1_i386.deb (libgpg-error-l10n_1.46-1_all.deb)
Using BINUT000.DEB;1 for  ./pool/main/b/binutils/binutils-i686-linux-gnu_2.40-2_i386.deb (binutils-common_2.40-2_i386.deb)
Using BINUT001.DEB;1 for  ./pool/main/b/binutils/binutils-common_2.40-2_i386.deb (binutils_2.40-2_i386.deb)
Using LINUX000.DEB;1 for  ./pool/main/l/linux/linux-headers-6.1.0-10-686_6.1.38-1_i386.deb (linux-headers-6.1.0-10-common_6.1.38-1_all.deb)
Using LINUX001.DEB;1 for  ./pool/main/l/linux/linux-headers-6.1.0-10-common_6.1.38-1_all.deb (linux-headers-6.1.0-10-686-pae_6.1.38-1_i386.deb)
Using LIBDE000.DEB;1 for  ./pool/main/l/lvm2/libdevmapper1.02.1_1.02.185-2_i386.deb (libdevmapper-event1.02.1_1.02.185-2_i386.deb)
Using LINUX000.DEB;1 for  ./pool/main/l/linux-signed-i386/linux-image-686-pae_6.1.38-1_i386.deb (linux-image-6.1.0-10-686_6.1.38-1_i386.deb)
Using SCSI_000.UDE;1 for  ./pool/main/l/linux-signed-i386/scsi-nic-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (scsi-nic-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using UINPU000.UDE;1 for  ./pool/main/l/linux-signed-i386/uinput-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (uinput-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using RFKIL000.UDE;1 for  ./pool/main/l/linux-signed-i386/rfkill-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (rfkill-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using CRC_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/crc-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (crc-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using MTD_C000.UDE;1 for  ./pool/main/l/linux-signed-i386/mtd-core-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (mtd-core-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using LINUX001.DEB;1 for  ./pool/main/l/linux-signed-i386/linux-image-6.1.0-10-686_6.1.38-1_i386.deb (linux-image-686_6.1.38-1_i386.deb)
Using EXT4_000.UDE;1 for  ./pool/main/l/linux-signed-i386/ext4-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (ext4-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using I2C_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/i2c-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (i2c-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using JFS_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/jfs-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (jfs-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using PATA_000.UDE;1 for  ./pool/main/l/linux-signed-i386/pata-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (pata-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using PPP_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/ppp-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (ppp-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using FUSE_000.UDE;1 for  ./pool/main/l/linux-signed-i386/fuse-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (fuse-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using MMC_C000.UDE;1 for  ./pool/main/l/linux-signed-i386/mmc-core-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (mmc-core-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using SOUND000.UDE;1 for  ./pool/main/l/linux-signed-i386/sound-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (sound-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using CRYPT000.UDE;1 for  ./pool/main/l/linux-signed-i386/crypto-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (crypto-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using NIC_S000.UDE;1 for  ./pool/main/l/linux-signed-i386/nic-shared-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (nic-shared-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using SQUAS000.UDE;1 for  ./pool/main/l/linux-signed-i386/squashfs-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (squashfs-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using NIC_P000.UDE;1 for  ./pool/main/l/linux-signed-i386/nic-pcmcia-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (nic-pcmcia-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using XFS_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/xfs-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (xfs-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using PCMCI000.UDE;1 for  ./pool/main/l/linux-signed-i386/pcmcia-storage-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (pcmcia-storage-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using MD_MO000.UDE;1 for  ./pool/main/l/linux-signed-i386/md-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (md-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using LINUX002.DEB;1 for  ./pool/main/l/linux-signed-i386/linux-headers-686_6.1.38-1_i386.deb (linux-headers-686-pae_6.1.38-1_i386.deb)
Using EVENT000.UDE;1 for  ./pool/main/l/linux-signed-i386/event-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (event-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using EFI_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/efi-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (efi-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using CRYPT001.UDE;1 for  ./pool/main/l/linux-signed-i386/crypto-dm-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (crypto-dm-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using LOOP_000.UDE;1 for  ./pool/main/l/linux-signed-i386/loop-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (loop-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using NBD_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/nbd-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (nbd-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using FIREW000.UDE;1 for  ./pool/main/l/linux-signed-i386/firewire-core-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (firewire-core-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using NIC_W000.UDE;1 for  ./pool/main/l/linux-signed-i386/nic-wireless-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (nic-wireless-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using BTRFS000.UDE;1 for  ./pool/main/l/linux-signed-i386/btrfs-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (btrfs-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using NIC_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/nic-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (nic-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using NIC_U000.UDE;1 for  ./pool/main/l/linux-signed-i386/nic-usb-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb (nic-usb-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb)
Using UDF_M000.UDE;1 for  ./pool/main/l/linux-signed-i386/udf-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (udf-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using MULTI000.UDE;1 for  ./pool/main/l/linux-signed-i386/multipath-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (multipath-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using F2FS_000.UDE;1 for  ./pool/main/l/linux-signed-i386/f2fs-modules-6.1.0-10-686-di_6.1.38-1_i386.udeb (f2fs-modules-6.1.0-10-686-pae-di_6.1.38-1_i386.udeb)
Using LINUX003.DEB;1 for  ./pool/main/l/linux-signed-i386/linux-image-686_6.1.38-1_i386.deb (linux-image-6.1.0-10-686-pae_6.1.38-1_i386.deb)
Using LIBLO000.DEB;1 for  ./pool/main/libl/liblockfile/liblockfile1_1.17-1+b1_i386.deb (liblockfile-bin_1.17-1+b1_i386.deb)
Using LIBLO000.DEB;1 for  ./pool/main/libl/liblouis/liblouis-data_3.24.0-1_all.deb (liblouis20_3.24.0-1_i386.deb)
Using SG3_U000.DEB;1 for  ./pool/main/s/sg3-utils/sg3-utils_1.46-3_i386.deb (sg3-utils-udev_1.46-3_all.deb)
Using SYSTE000.DEB;1 for  ./pool/main/s/systemd/systemd_252.12-1~deb12u1_i386.deb (systemd-timesyncd_252.12-1~deb12u1_i386.deb)
Using LIBSY000.DEB;1 for  ./pool/main/s/systemd/libsystemd-shared_252.12-1~deb12u1_i386.deb (libsystemd0_252.12-1~deb12u1_i386.deb)
Using SYSTE001.DEB;1 for  ./pool/main/s/systemd/systemd-timesyncd_252.12-1~deb12u1_i386.deb (systemd-sysv_252.12-1~deb12u1_i386.deb)
Using SHIM_000.DEB;1 for  ./pool/main/s/shim-signed/shim-signed-common_1.39+15.7-1_all.deb (shim-signed_1.39+15.7-1_i386.deb)
Using FONTS000 for  ./pool/main/f/fonts-sil-padauk (fonts-sil-scheherazade)
Using FONTS001 for  ./pool/main/f/fonts-lohit-guru (fonts-lohit-telu)
Using FONTS002 for  ./pool/main/f/fonts-sil-scheherazade (fonts-sil-abyssinica)
Using LIBMA000.DEB;1 for  ./pool/main/f/file/libmagic-mgc_5.44-3_i386.deb (libmagic1_5.44-3_i386.deb)
Using FONTS000.UDE;1 for  ./pool/main/f/fonts-noto/fonts-noto-unhinted-udeb_20201225-1_all.udeb (fonts-noto-hinted-udeb_20201225-1_all.udeb)
Using FONTS000.UDE;1 for  ./pool/main/f/fonts-dejavu/fonts-dejavu-udeb_2.37-6_all.udeb (fonts-dejavu-mono-udeb_2.37-6_all.udeb)
Using CONSO000 for  ./pool/main/c/console-data (console-setup)
Using CDEBC000 for  ./pool/main/c/cdebconf-terminal (cdebconf)
Using CDEBC001 for  ./pool/main/c/cdebconf (cdebconf-entropy)
Using LIBSA000.DEB;1 for  ./pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.28+dfsg-10_i386.deb (libsasl2-modules_2.1.28+dfsg-10_i386.deb)
Using LIBSA001.DEB;1 for  ./pool/main/c/cyrus-sasl2/libsasl2-modules_2.1.28+dfsg-10_i386.deb (libsasl2-2_2.1.28+dfsg-10_i386.deb)
Using CDEBC000.UDE;1 for  ./pool/main/c/cdebconf-entropy/cdebconf-newt-entropy_0.52_i386.udeb (cdebconf-gtk-entropy_0.52_i386.udeb)
Using CDEBC001.UDE;1 for  ./pool/main/c/cdebconf-entropy/cdebconf-gtk-entropy_0.52_i386.udeb (cdebconf-text-entropy_0.52_i386.udeb)
Using CONSO000.DEB;1 for  ./pool/main/c/console-setup/console-setup-linux_1.221_all.deb (console-setup_1.221_all.deb)
Using CRYPT000.DEB;1 for  ./pool/main/c/cryptsetup/cryptsetup-initramfs_2.6.1-4~deb12u1_all.deb (cryptsetup_2.6.1-4~deb12u1_i386.deb)
Using CRYPT001.DEB;1 for  ./pool/main/c/cryptsetup/cryptsetup_2.6.1-4~deb12u1_i386.deb (cryptsetup-bin_2.6.1-4~deb12u1_i386.deb)
Using CHOOS000.UDE;1 for  ./pool/main/c/choose-mirror/choose-mirror-bin_2.123_i386.udeb (choose-mirror_2.123_all.udeb)
Using OPENS000.DEB;1 for  ./pool/main/o/openssh/openssh-client_9.2p1-2_i386.deb (openssh-server_9.2p1-2_i386.deb)
Using OPENS000.UDE;1 for  ./pool/main/o/openssh/openssh-client-udeb_9.2p1-2_i386.udeb (openssh-server-udeb_9.2p1-2_i386.udeb)
Using OPENS001.DEB;1 for  ./pool/main/o/openssh/openssh-server_9.2p1-2_i386.deb (openssh-sftp-server_9.2p1-2_i386.deb)
Using LIBLD000.DEB;1 for  ./pool/main/o/openldap/libldap-common_2.5.13+dfsg-5_all.deb (libldap-2.5-0_2.5.13+dfsg-5_i386.deb)
Using UTIL_000.DEB;1 for  ./pool/main/u/util-linux/util-linux_2.38.1-5+b1_i386.deb (util-linux-extra_2.38.1-5+b1_i386.deb)
Using DISCO000 for  ./pool/main/d/discover (discover-data)
Using DEBCO000.DEB;1 for  ./pool/main/d/debconf/debconf_1.5.82_all.deb (debconf-i18n_1.5.82_all.deb)
Size of boot image is 4 sectors -> No emulation
  1.31% done, estimate finish Wed Nov  8 15:37:55 2023
  2.61% done, estimate finish Wed Nov  8 15:37:55 2023
  3.91% done, estimate finish Wed Nov  8 15:37:55 2023
  5.22% done, estimate finish Wed Nov  8 15:37:55 2023
  6.52% done, estimate finish Wed Nov  8 15:37:55 2023
  7.83% done, estimate finish Wed Nov  8 15:37:55 2023
  9.13% done, estimate finish Wed Nov  8 15:37:55 2023
 10.43% done, estimate finish Wed Nov  8 15:37:55 2023
 11.74% done, estimate finish Wed Nov  8 15:37:55 2023
 13.04% done, estimate finish Wed Nov  8 15:37:55 2023
 14.34% done, estimate finish Wed Nov  8 15:37:55 2023
 15.65% done, estimate finish Wed Nov  8 15:37:55 2023
 16.95% done, estimate finish Wed Nov  8 15:37:55 2023
 18.25% done, estimate finish Wed Nov  8 15:37:55 2023
 19.56% done, estimate finish Wed Nov  8 15:37:55 2023
 20.86% done, estimate finish Wed Nov  8 15:37:55 2023
 22.17% done, estimate finish Wed Nov  8 15:37:55 2023
 23.47% done, estimate finish Wed Nov  8 15:37:55 2023
 24.77% done, estimate finish Wed Nov  8 15:37:55 2023
 26.08% done, estimate finish Wed Nov  8 15:37:55 2023
 27.38% done, estimate finish Wed Nov  8 15:37:55 2023
 28.69% done, estimate finish Wed Nov  8 15:37:55 2023
 29.99% done, estimate finish Wed Nov  8 15:37:55 2023
 31.30% done, estimate finish Wed Nov  8 15:37:55 2023
 32.60% done, estimate finish Wed Nov  8 15:37:55 2023
 33.90% done, estimate finish Wed Nov  8 15:37:55 2023
 35.20% done, estimate finish Wed Nov  8 15:37:55 2023
 36.51% done, estimate finish Wed Nov  8 15:37:55 2023
 37.81% done, estimate finish Wed Nov  8 15:37:55 2023
 39.12% done, estimate finish Wed Nov  8 15:37:55 2023
 40.42% done, estimate finish Wed Nov  8 15:37:55 2023
 41.72% done, estimate finish Wed Nov  8 15:37:55 2023
 43.03% done, estimate finish Wed Nov  8 15:37:55 2023
 44.33% done, estimate finish Wed Nov  8 15:37:55 2023
 45.64% done, estimate finish Wed Nov  8 15:37:55 2023
 46.94% done, estimate finish Wed Nov  8 15:37:55 2023
 48.24% done, estimate finish Wed Nov  8 15:37:55 2023
 49.55% done, estimate finish Wed Nov  8 15:37:55 2023
 50.85% done, estimate finish Wed Nov  8 15:37:56 2023
 52.16% done, estimate finish Wed Nov  8 15:37:56 2023
 53.46% done, estimate finish Wed Nov  8 15:37:56 2023
 54.76% done, estimate finish Wed Nov  8 15:37:56 2023
 56.06% done, estimate finish Wed Nov  8 15:37:56 2023
 57.37% done, estimate finish Wed Nov  8 15:37:56 2023
 58.67% done, estimate finish Wed Nov  8 15:37:56 2023
 59.98% done, estimate finish Wed Nov  8 15:37:56 2023
 61.28% done, estimate finish Wed Nov  8 15:37:56 2023
 62.58% done, estimate finish Wed Nov  8 15:37:56 2023
 63.89% done, estimate finish Wed Nov  8 15:37:56 2023
 65.19% done, estimate finish Wed Nov  8 15:37:56 2023
 66.50% done, estimate finish Wed Nov  8 15:37:56 2023
 67.80% done, estimate finish Wed Nov  8 15:37:56 2023
 69.10% done, estimate finish Wed Nov  8 15:37:56 2023
 70.41% done, estimate finish Wed Nov  8 15:37:56 2023
 71.71% done, estimate finish Wed Nov  8 15:37:56 2023
 73.01% done, estimate finish Wed Nov  8 15:37:56 2023
 74.32% done, estimate finish Wed Nov  8 15:37:56 2023
 75.62% done, estimate finish Wed Nov  8 15:37:56 2023
 76.93% done, estimate finish Wed Nov  8 15:37:56 2023
 78.23% done, estimate finish Wed Nov  8 15:37:56 2023
 79.53% done, estimate finish Wed Nov  8 15:37:56 2023
 80.84% done, estimate finish Wed Nov  8 15:37:56 2023
 82.14% done, estimate finish Wed Nov  8 15:37:56 2023
 83.45% done, estimate finish Wed Nov  8 15:37:57 2023
 84.75% done, estimate finish Wed Nov  8 15:37:57 2023
 86.05% done, estimate finish Wed Nov  8 15:37:57 2023
 87.35% done, estimate finish Wed Nov  8 15:37:57 2023
 88.66% done, estimate finish Wed Nov  8 15:37:57 2023
 89.96% done, estimate finish Wed Nov  8 15:37:57 2023
 91.27% done, estimate finish Wed Nov  8 15:37:57 2023
 92.57% done, estimate finish Wed Nov  8 15:37:57 2023
 93.88% done, estimate finish Wed Nov  8 15:37:57 2023
 95.18% done, estimate finish Wed Nov  8 15:37:57 2023
 96.48% done, estimate finish Wed Nov  8 15:37:57 2023
 97.79% done, estimate finish Wed Nov  8 15:37:57 2023
 99.09% done, estimate finish Wed Nov  8 15:37:57 2023
Total translation table size: 2048
Total rockridge attributes bytes: 220207
Total directory bytes: 1125006
Path table size(bytes): 7516
Max brk space used 1f2000
383493 extents written (749 MB)
 



Pour le rendre bootable depuis cdrom

isohybrid /home/didier/linux.iso
 


Pour vérifier qu'il est bien booteable

file /home/didier/linux.iso
/home/didier/linux.iso: ISO 9660 CD-ROM filesystem data (DOS/MBR boot sector) 'CDROM' (bootable)



C'est cette iso finale que je grave sur DVD.
Ce DVD boote bien sous virtualbox

Où est l'erreur???

Dernière modification par wardidi (08-11-2023 17:24:44)

En ligne

#9 08-11-2023 21:22:39

raleur
Membre
Inscription : 03-10-2014

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

wardidi a écrit :

Comment faire pour les installer? en ssh depuis sda qui boot?


Les firmwares pour la carte réseau ? Il faut les installer tant que le disque est dans l'autre PC, comme le reste.

wardidi a écrit :

Pour le rendre bootable depuis cdrom
isohybrid


Sauf erreur de ma part, isohybrid sert à rendre une image ISO amorçable sur un disque dur ou une clé USB, pas sur un CD ou DVD.

wardidi a écrit :

Ce DVD boote bien sous virtualbox


Le DVD ou l'image ISO ? Si l'image ISO, en tant que lecteur CD/DVD virtuel ou en tant que disque dur virtuel ?
As-tu testé le DVD sur un véritable ordinateur complet ?


Il vaut mieux montrer que raconter.

Hors ligne

#10 08-11-2023 22:37:28

wardidi
Adhérent(e)
Lieu : Bretagne
Distrib. : DF 12.4
Noyau : 6.1.0-13-amd64
Inscription : 28-11-2022

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

raleur a écrit :

wardidi a écrit :

Comment faire pour les installer? en ssh depuis sda qui boot?


Les firmwares pour la carte réseau ? Il faut les installer tant que le disque est dans l'autre PC, comme le reste.


Oui j'ai bien bien compris qu'il faut que le disque soit dans l'autre PC mais comment trouver le bon firmware, comment i'installer en ligne de commande via ssh. Le terminal n'est pas mon fort.
J'aurais besoin qu'on me tienne la main pour ça.

raleur a écrit :


Sauf erreur de ma part, isohybrid sert à rendre une image ISO amorçable sur un disque dur ou une clé USB, pas sur un CD ou DVD.


Ici https://papy-tux.legtux.org/doc1078/index.html il précise """Pour transformer le fichier linux.iso en fichier hybride, bootable depuis un CDROM et une clé USB, utiliser isohybrid du paquet syslinux-utils"""
Je ne retrouve pas la doc de debian.org mais quasi certain d'y avoir vu la même chose.

raleur a écrit :

wardidi a écrit :

Ce DVD boote bien sous virtualbox


Le DVD ou l'image ISO ?


Sur virtualbox j'ai essayé les 2 avec le DVD et avec l'iso. Installation faite avec les 2 méthodes.

raleur a écrit :

Si l'image ISO, en tant que lecteur CD/DVD virtuel ou en tant que disque dur virtuel ?


Pas sûr de te comprendre. Pour sélectionner l'iso je vais dans stockage/controleur:ide et je pointe vers l'mplacement de l'iso

raleur a écrit :

As-tu testé le DVD sur un véritable ordinateur complet ?


Non, je n'ai qu'une machine i386. Mon portable sous ubuntu est en 64bits.

EDITJ'ai testé le dvd rw modifié sur mon portable 64bit mis en legacy pour l'essai. Il boot bien dessus. Je ne le laisse pas commencer l'install mais le menu de boot avec les 10sec de latence apparait bien.



Merci encore du temps pris pour moi.

Dernière modification par wardidi (10-11-2023 19:34:46)

En ligne

#11 15-11-2023 21:54:15

wardidi
Adhérent(e)
Lieu : Bretagne
Distrib. : DF 12.4
Noyau : 6.1.0-13-amd64
Inscription : 28-11-2022

Re : [resolu]syslinux/isolinux - aide pour une Installation automatique

Bonjour,


La méthode décrite au #1, l'astuce d'arpinux au #4 et la reconstitution au #8 donne une iso parfaitement exécutable et automatique.
Je l'ai utilisé sur un autre (vieux également) PC et tout c'est bien déroulé.
Le problème vient bien de mon PC.
Je ne sais pas où est le problème: Le bios, le lecteur?? mais en tout cas le sujet de l'installation automatique est résolu grâce à vous .
Merci vv222, raleur et arpilinux pour votre aide. (ici et autres discussions)

En ligne

Pied de page des forums