Linbo Gui erscheint nicht bei HP Prodesk 600 MT

Hallo
wir haben neue HP Prodesk 600 MT mit Intel i5 7500 7Gen erhalten. UEFI Modus aktiviert.
Nun kämpfe ich mit dem Problem das die Linbo Gui nicht erscheint. Partitionieren und formatieren mit
linbo_wrapper funtioniert. Kernel Optionen wie nomodeset habe ich auch schon ohne Erfolg probiert.
Hier dir boot.cfg:

# global part of group specific grub.cfg template for linbo net boot

# 20171107
#

# if you don't want this file being overwritten by import_workstations remove the following line:
# ### managed by linuxmusterpunktnet ###

# edit to your needs
set default=0
set timeout=0
set fallback=1

set gfxpayload=800x600x16

# 32bit pae, non pae or 64bit kernel
if cpuid -l; then
 set linbo_kernel=/linbo64
 set linbo_initrd=/linbofs64.lz
elif cpuid -p; then
 set linbo_kernel=/linbo
 set linbo_initrd=/linbofs.lz
else
 set linbo_kernel=/linbo-np
 set linbo_initrd=/linbofs-np.lz
fi

# theme settings (modify for custom theme)
set theme=/boot/grub/themes/linbo/theme.txt
#set font=/boot/grub/themes/linbo/unifont-regular-16.pf2

# load theme
#if [ -e "$theme" -a -e "$font" ]; then
# loadfont "$font"
 export theme
#fi

clear

# find linbo cache partition
set cachelabel="cache"
if [ -n "$cachelabel" ]; then
  search --label "$cachelabel" --set cacheroot
fi
if [ -z "$cacheroot" ]; then
  search --file /start.conf --set cacheroot
fi
if [ -z "$cacheroot" ]; then
  search --file "$linbo_initrd" --set cacheroot
fi
if [ -n "$cacheroot" ]; then
  set root="$cacheroot"
else
  set root="(hd1,6)"
fi

# linbo part, boot local or net (default #0)
menuentry 'LINBO' --class linux {

 echo LINBO $bootflag for group hp600g3mt
 echo

 if [ -e "$linbo_kernel" -a -e "$linbo_initrd" ]; then
  set bootflag=localboot
 elif [ -n "$pxe_default_server" ]; then
  set root="(tftp)"
  set bootflag=netboot
 fi

 if [ -n "$bootflag" ]; then
  echo -n "Loading $linbo_kernel ..."
  linux $linbo_kernel video=1920x1080 $bootflag
  echo
  echo -n "Loading $linbo_initrd ..."
  initrd $linbo_initrd
  boot
 else
  if [ "$grub_platform" = "pc" ]; then
   set ipxe="/ipxe.lkrn"
  fi
  if [ -e "$ipxe" ]; then
   echo -n "Initiating pxe boot ..."
   linux16 $ipxe dhcp
   boot
  fi
 fi

}
# group specific grub.cfg template for linbo net boot, should work with linux and windows operating systems
# thomas@linuxmusterpunktnet
# 20171107
#

# start "Windows 10" directly
menuentry 'Windows 10 (Start)' --class win_start {

 set oslabel="win10"
 if [ -n "$oslabel" ]; then
  search --label "$oslabel" --set osroot
 fi
 if [ -n "$osroot" ]; then
  set root="$osroot"
 else
  set root="(hd1,3)"
 fi
 set win_efiloader="/EFI/Microsoft/Boot/bootmgfw.efi"

 if [ -e /vmlinuz -a -e /initrd.img ]; then
  linux /vmlinuz root=LABEL=win10 
  initrd /initrd.img
 elif [ -e /vmlinuz -a -e /initrd ]; then
  linux /vmlinuz root=LABEL=win10 
  initrd /initrd
 elif [ -e /auto -a -e /noinitrd_placeholder ]; then
  linux /auto root=LABEL=win10 
  initrd /noinitrd_placeholder
 elif [ -e /auto ]; then
  linux /auto root=LABEL=win10 
 elif [ -s /boot/grub/grub.cfg ] ; then
  configfile /boot/grub/grub.cfg
 elif [ "$grub_platform" = "pc" ]; then
  if [ -s /bootmgr ] ; then
   ntldr /bootmgr
  elif [ -s /ntldr ] ; then
   ntldr /ntldr
  elif [ -s /grldr ] ; then
   ntldr /grldr
  else
   chainloader +1
  fi
 elif [ -e "$win_efiloader" ]; then
  chainloader $win_efiloader
  boot
 fi

}

# boot LINBO, sync and then start "Windows 10"
menuentry 'Windows 10 (Sync+Start)' --class win_syncstart {

 if [ -e "$linbo_kernel" -a -e "$linbo_initrd" ]; then
  set bootflag=localboot
 elif [ -n "$pxe_default_server" ]; then
  set root="(tftp)"
  set bootflag=netboot
 fi

 if [ -n "$bootflag" ]; then
  echo LINBO $bootflag for group hp600g3mt
  echo
  echo -n "Loading $linbo_kernel ..."
  linux $linbo_kernel video=1920x1080 linbocmd=sync:1,start:1 $bootflag
  echo
  echo -n "Loading $linbo_initrd ..."
  initrd $linbo_initrd
  boot
 fi

}

# boot LINBO, format os partition, sync and then start "Windows 10"
menuentry 'Windows 10 (Neu+Start)' --class win_newstart {

 if [ -e "$linbo_kernel" -a -e "$linbo_initrd" ]; then
  set bootflag=localboot
 elif [ -n "$pxe_default_server" ]; then
  set root="(tftp)"
  set bootflag=netboot
 fi

 if [ -n "$bootflag" ]; then
  echo LINBO $bootflag for group hp600g3mt
  echo
  echo -n "Loading $linbo_kernel ..."
  linux $linbo_kernel video=1920x1080 linbocmd=format:3,sync:1,start:1 $bootflag
  echo
  echo -n "Loading $linbo_initrd ..."
  initrd $linbo_initrd
  boot
 fi

}
# group specific grub.cfg template for linbo net boot, should work with linux and windows operating systems
# thomas@linuxmuster.net
# 20171107
#

# start "Linux Mint" directly
menuentry 'Linux Mint (Start)' --class linux_start {

 set oslabel="linuxmint"
 if [ -n "$oslabel" ]; then
  search --label "$oslabel" --set osroot
 fi
 if [ -n "$osroot" ]; then
  set root="$osroot"
 else
  set root="(hd1,4)"
 fi
 set win_efiloader="/EFI/Microsoft/Boot/bootmgfw.efi"

 if [ -e /vmlinuz -a -e /initrd.img ]; then
  linux /vmlinuz root=LABEL=linuxmint ro splash
  initrd /initrd.img
 elif [ -e /vmlinuz -a -e /initrd ]; then
  linux /vmlinuz root=LABEL=linuxmint ro splash
  initrd /initrd
 elif [ -e /vmlinuz -a -e /initrd.img ]; then
  linux /vmlinuz root=LABEL=linuxmint ro splash
  initrd /initrd.img
 elif [ -e /vmlinuz ]; then
  linux /vmlinuz root=LABEL=linuxmint ro splash
 elif [ -s /boot/grub/grub.cfg ] ; then
  configfile /boot/grub/grub.cfg
 elif [ "$grub_platform" = "pc" ]; then
  if [ -s /bootmgr ] ; then
   ntldr /bootmgr
  elif [ -s /ntldr ] ; then
   ntldr /ntldr
  elif [ -s /grldr ] ; then
   ntldr /grldr
  else
   chainloader +1
  fi
 elif [ -e "$win_efiloader" ]; then
  chainloader $win_efiloader
  boot
 fi

}

# boot LINBO, sync and then start "Linux Mint"
menuentry 'Linux Mint (Sync+Start)' --class linux_syncstart {

 if [ -e "$linbo_kernel" -a -e "$linbo_initrd" ]; then
  set bootflag=localboot
 elif [ -n "$pxe_default_server" ]; then
  set root="(tftp)"
  set bootflag=netboot
 fi

 if [ -n "$bootflag" ]; then
  echo LINBO $bootflag for group hp600g3mt
  echo
  echo -n "Loading $linbo_kernel ..."
  linux $linbo_kernel video=1920x1080 linbocmd=sync:2,start:2 $bootflag
  echo
  echo -n "Loading $linbo_initrd ..."
  initrd $linbo_initrd
  boot
 fi

}

# boot LINBO, format os partition, sync and then start "Linux Mint"
menuentry 'Linux Mint (Neu+Start)' --class linux_newstart {

 if [ -e "$linbo_kernel" -a -e "$linbo_initrd" ]; then
  set bootflag=localboot
 elif [ -n "$pxe_default_server" ]; then
  set root="(tftp)"
  set bootflag=netboot
 fi

 if [ -n "$bootflag" ]; then
  echo LINBO $bootflag for group hp600g3mt
  echo
  echo -n "Loading $linbo_kernel ..."
  linux $linbo_kernel video=1920x1080 linbocmd=format:4,sync:2,start:2 $bootflag
  echo
  echo -n "Loading $linbo_initrd ..."
  initrd $linbo_initrd
  boot
 fi

}

Hier die start.conf:

# LINBO start.conf Beispiel mit EFI (GPT)
# EFI 64 Partition 1
# MSR  Partition 2
# Windows 10 Partition 3
# Linux Mint Partition 4
# Swap Partition 5
# Cache auf Partition 6


[LINBO]                  # globale Konfiguration
Cache = /dev/sda6        # lokale Cache Partition
Server = 10.16.1.1       # IP des Linbo-Servers, der das Linbo-Repository vorhaelt
Group = hp600g3mt            # Name der Rechnergruppe fuer die diese Konfigurationsdatei gilt
# Achtung: Server und Group werden beim Workstationsimport automatisch gesetzt!
SystemType = efi64                  # moeglich ist bios|bios64|efi32|efi64 (Standard: bios fuer bios 32bit)
RootTimeout = 600        # automatischer Rootlogout nach 600 Sek.
AutoPartition = no       # automatische Partitionsreparatur beim LINBO-Start
AutoFormat = no          # kein automatisches Formatieren aller Partitionen beim LINBO-Start
AutoInitCache = no       # kein automatisches Befuellen des Caches beim LINBO-Start
DownloadType = rsync   # Image-Download per torrent|multicast|rsync, default ist rsync
BackgroundFontColor = white         # Bildschirmschriftfarbe (default: white)
ConsoleFontColorStdout = white # Konsolenschriftfarbe (default: white)
ConsoleFontColorStderr = red     # Konsolenschriftfarbe fuer Fehler-/Warnmeldungen (default: red)
KernelOptions =  video=1920x1080        # Beispiele:
#KernelOptions =quiet splash acpi=noirq irqpoll intel_pstate=skylake_hwp # LINBO Kerneloptionen (z. B. acpi=off), m. Leerz. getrennt
#KernelOptions = server=10.16.1.5   # Abweichende Linbo-Server-IP als Kerneloption gesetzt
                                    # falls gesetzt wird diese IP beim Workstationsimport verwendet 

[Partition]              # Partition fuer EFI
Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster Platte)
Size = 200M              # Partitionsgroesse (Bsp.: 200M), ist keine Einheit (M, G oder T) angegeben, wird kiB angenommen
Id = ef                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ef = efi)
FSType = vfat            # Dateisystem auf der Partition (FAT32)
Bootable = yes           # Bootable-Flag gesetzt
Label = efi              # Partitionslabel efi (efi system partition)

[Partition]              # Partition fuer MSR
Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster Platte)
Size = 128M              # Partitionsgroesse 128M
Id = 0c01                # Partitionstyp 0c01
FSType =                 # kein Dateisystem
Bootable = no            # kein Bootable-Flag
Label = msr              # Partitionslabel msr (microsoft reserved partition)

[Partition]              # Partition fuer Windows
Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster Platte)
Size = 50G               # Partitionsgroesse 30G
Id = 7                   # Partitionstyp 83
FSType = ntfs            # Dateisystem ext4
Bootable = no            # kein Bootable-Flag
Label = win10            # Partitionslabel win10

[Partition]              # Partition fuer Ubuntu
Dev = /dev/sda4          # Device-Name der Partition (sda4 = vierte Partition auf erster Platte)
Size = 30G               # Partitionsgroesse 30G
Id = 83                  # Partitionstyp 83
FSType = ext4            # Dateisystem ext4
Bootable = no            # kein Bootable-Flag
Label = linuxmint        # Partitionslabel ubuntu

[Partition]              # Swap-Partition
Dev = /dev/sda5          # Device-Name der Partition (sda5 = fuenfte Partition auf erster Platte)
Size = 2G                # Partitionsgroesse 4G
Id = 82                  # Partitionstyp 82
FSType = swap            # Dateisystem swap
Bootable = no            # kein Bootable-Flag
Label = swap             # Partitionslabel swap

[Partition]              
Dev = /dev/sda6          
Size = 80G               
Id = 83                  
FSType = ext4            
Bootable = no           
Label = cache            



[OS]                         
Name = Windows 10            
Version =                    
Description = Windows 10     
IconName = win10.png         
Image =                      
BaseImage = win10.cloop      
Boot = /dev/sda3             
Root = /dev/sda3             
Kernel = auto                
Initrd =                     
Append =                     
StartEnabled = yes           
SyncEnabled = no             
NewEnabled = yes             
Hidden = yes                 
Autostart = no               
AutostartTimeout = 5         
DefaultAction = start        



[OS]
Name = Linux Mint                 
Version =                         
Description = Mint 18.03          
IconName = mint.png               
Image =                           
BaseImage = mint18.cloop          
Boot = /dev/sda4                  
Root = /dev/sda4                  
Kernel = vmlinuz                  
Initrd = initrd.img               
Append = ro splash                
StartEnabled = yes                
SyncEnabled = yes                 
NewEnabled = yes                  
Hidden = yes                      
Autostart = no                    
AutostartTimeout = 5              
DefaultAction = start

Der PC bleibt stehen bei folgender Meldung:

Dann müßte er auf den Linbo Bildschirm umschalten. Das passiert nicht.
Drückt man Enter schaltet sich der PC aus.
Bitte um Hilfe.

Gruß
Uwe

Hallo Uwe,

ich habe 15 HP EliteDesc 800 G3 TWR im Einsatz.
Da sind, meine ich, auch Intel Prozessoren der 7ten Generation drin.

welche linbo Version habt ihr den?
Was sind den da für Massenspeicher drin?
In meinen stecken nvme SSDs: da funktioniert sdx natürlich nicht …

Bitte mach mal folgendes: wenn linbo in dem Zustan wie im Bild steht,
dann geh vom Server aus auf die Möhre mittels:

linbo-ssh multi-pc1

Danach:
fdisk -l

Außerdem könntest du uns mal die Logdateien von linbo, die auf dem
Server unter /var/linbo/log/ liegen, schicken.

Was passiert den, wenn du einen Rechner am Netzwerk bootest, der noch
nciht aufgenommen ist?

LG

Holger

Hallo Holger
benutzt du den integrierten Grafikchip oder eine eingebaute Grafikkarte?
Linbo Version ist 2.3.37.
fdisk -i =

~ # fdisk -l
Found valid GPT with protective MBR; using GPT

Disk /dev/sda: 500118192 sectors, 2534M
Logical sector size: 512
Disk identifier (GUID): 36e0d580-2142-4324-a9a3-1d1ac62a796e
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 500118158

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048          411647        200M   0700  EFI system partition
   2          411648          673791        128M   0700  Microsoft reserved partition
   3          673792       105531391       50.0G   0700  Basic data partition
   4       105531392       168445951       30.0G   0700  linuxmint
   5       168445952       176834559       4096M   0700  swap
   6       176834560       344606719       80.0G   0700  cache

Logdatei:

## Log session begin: Mo 11. Jun 08:25:31 CEST 2018 ##
## Hardware-Setup - Anfang ##
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
ACPI: Executed 17 blocks of module-level executable AML code
ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF8802165D6800 000717 (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
ACPI: Executed 1 blocks of module-level executable AML code
ACPI: \_PR_.PR00: _OSC native thermal LVT Acked
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF88021654E800 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
ACPI: Executed 1 blocks of module-level executable AML code
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF880216400000 000D14 (v02 PmRef  ApIst    00003000 INTL 20160422)
ACPI: Executed 1 blocks of module-level executable AML code
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0xFFFF880216501C00 00030A (v02 PmRef  ApCst    00003000 INTL 20160422)
ACPI: Executed 1 blocks of module-level executable AML code
ACPI : EC: EC started
ACPI : EC: interrupt blocked
ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x6e, EC_CMD/EC_SC=0x66, EC_DATA=0x62
ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S5)
ACPI: Using IOAPIC for interrupt routing
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: Power Resource [WRST] (off)
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
pci_bus 0000:00: root bus resource [mem 0xde800000-0xf7ffffff window]
pci_bus 0000:00: root bus resource [mem 0x1c00000000-0x1fffffffff window]
pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
pci_bus 0000:00: root bus resource [bus 00-3e]
pci 0000:00:00.0: [8086:591f] type 00 class 0x060000
pci 0000:00:02.0: [8086:5912] type 00 class 0x030000
pci 0000:00:02.0: reg 0x10: [mem 0x1ff0000000-0x1ff0ffffff 64bit]
pci 0000:00:02.0: reg 0x18: [mem 0x1fe0000000-0x1fefffffff 64bit pref]
pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
pci 0000:00:14.0: [8086:a2af] type 00 class 0x0c0330
pci 0000:00:14.0: reg 0x10: [mem 0xde920000-0xde92ffff 64bit]
pci 0000:00:14.0: PME# supported from D3hot D3cold
pci 0000:00:14.0: System wakeup disabled by ACPI
pci 0000:00:14.2: [8086:a2b1] type 00 class 0x118000
pci 0000:00:14.2: reg 0x10: [mem 0x1ff1016000-0x1ff1016fff 64bit]
pci 0000:00:16.0: [8086:a2ba] type 00 class 0x078000
pci 0000:00:16.0: reg 0x10: [mem 0x1ff1015000-0x1ff1015fff 64bit]
pci 0000:00:16.0: PME# supported from D3hot
pci 0000:00:16.3: [8086:a2bd] type 00 class 0x070002
pci 0000:00:16.3: reg 0x10: [io  0x3088-0x308f]
pci 0000:00:16.3: reg 0x14: [mem 0xde938000-0xde938fff]
pci 0000:00:17.0: [8086:a282] type 00 class 0x010601
pci 0000:00:17.0: reg 0x10: [mem 0xde934000-0xde935fff]
pci 0000:00:17.0: reg 0x14: [mem 0xde937000-0xde9370ff]
pci 0000:00:17.0: reg 0x18: [io  0x3080-0x3087]
pci 0000:00:17.0: reg 0x1c: [io  0x3090-0x3093]
pci 0000:00:17.0: reg 0x20: [io  0x3060-0x307f]
pci 0000:00:17.0: reg 0x24: [mem 0xde936000-0xde9367ff]
pci 0000:00:17.0: PME# supported from D3hot
pci 0000:00:1f.0: [8086:a2c6] type 00 class 0x060100
pci 0000:00:1f.2: [8086:a2a1] type 00 class 0x058000
pci 0000:00:1f.2: reg 0x10: [mem 0xde930000-0xde933fff]
pci 0000:00:1f.3: [8086:a2f0] type 00 class 0x040300
pci 0000:00:1f.3: reg 0x10: [mem 0x1ff1010000-0x1ff1013fff 64bit]
pci 0000:00:1f.3: reg 0x20: [mem 0x1ff1000000-0x1ff100ffff 64bit]
pci 0000:00:1f.3: PME# supported from D3hot D3cold
pci 0000:00:1f.3: System wakeup disabled by ACPI
pci 0000:00:1f.4: [8086:a2a3] type 00 class 0x0c0500
pci 0000:00:1f.4: reg 0x10: [mem 0x1ff1014000-0x1ff10140ff 64bit]
pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
pci 0000:00:1f.6: [8086:15e3] type 00 class 0x020000
pci 0000:00:1f.6: reg 0x10: [mem 0xde900000-0xde91ffff]
pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
pci 0000:00:1f.6: System wakeup disabled by ACPI
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
ACPI: Enabled 3 GPEs in block 00 to 7F
ACPI : EC: interrupt unblocked
ACPI : EC: event unblocked
ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x6e, EC_CMD/EC_SC=0x66, EC_DATA=0x62
ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
vgaarb: setting as boot device: PCI:0000:00:02.0
vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
vgaarb: bridge control possible 0000:00:02.0
SCSI subsystem initialized
ACPI: bus type USB registered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
Registered efivars operations
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
e820: reserve RAM buffer [mem 0xc80b3000-0xcbffffff]
e820: reserve RAM buffer [mem 0xd8f9b000-0xdbffffff]
e820: reserve RAM buffer [mem 0xda000000-0xdbffffff]
e820: reserve RAM buffer [mem 0x21f800000-0x21fffffff]
clocksource: Switched to clocksource hpet
FS-Cache: Loaded
pnp: PnP ACPI init
system 00:00: [mem 0xfd000000-0xfdabffff] has been reserved
system 00:00: [mem 0xfdad0000-0xfdadffff] has been reserved
system 00:00: [mem 0xfdb00000-0xfdffffff] has been reserved
system 00:00: [mem 0xfe000000-0xfe01ffff] could not be reserved
system 00:00: [mem 0xfe03d000-0xfe3fffff] has been reserved
system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
system 00:01: [io  0x2000-0x20fe] has been reserved
system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
system 00:02: [io  0x0680-0x069f] has been reserved
system 00:02: [io  0xffff] has been reserved
system 00:02: [io  0xffff] has been reserved
system 00:02: [io  0xffff] has been reserved
system 00:02: [io  0x1800-0x18fe] has been reserved
system 00:02: [io  0x164e-0x164f] has been reserved
system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
system 00:03: [io  0x0800-0x087f] has been reserved
system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
system 00:05: [io  0x1854-0x1857] has been reserved
system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
pnp 00:06: Plug and Play ACPI device, IDs HPQ8002 PNP0303 (active)
pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 SYN0100 SYN0002 (active)
system 00:08: [io  0x0200-0x023f] has been reserved
system 00:08: [mem 0xfedb0000-0xfedbffff] has been reserved
system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
system 00:09: [mem 0xff000000-0xffffffff] has been reserved
system 00:09: [mem 0xfee00000-0xfeefffff] has been reserved
system 00:09: [mem 0xde800000-0xde81ffff] has been reserved
system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:0a: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
pnp: PnP ACPI: found 11 devices
clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
pci_bus 0000:00: resource 19 [mem 0xde800000-0xf7ffffff window]
pci_bus 0000:00: resource 20 [mem 0x1c00000000-0x1fffffffff window]
pci_bus 0000:00: resource 21 [mem 0xfd000000-0xfe7fffff window]
NET: Registered protocol family 2
TCP established hash table entries: 65536 (order: 7, 524288 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 65536 bind 65536)
UDP hash table entries: 4096 (order: 5, 131072 bytes)
UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
PCI: CLS 0 bytes, default 64
Trying to unpack rootfs image as initramfs...
Freeing initrd memory: 20508K
PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
software IO TLB [mem 0xd1e7f000-0xd5e7f000] (64MB) mapped at [ffff8800d1e7f000-ffff8800d5e7efff]
Scanning for low memory corruption every 60 seconds
workingset: timestamp_bits=62 max_order=21 bucket_order=0
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
ntfs: driver 2.1.32 [Flags: R/W].
fuse init (API version 7.26)
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
io scheduler noop registered
io scheduler cfq registered (default)
efifb: probing for efifb
efifb: framebuffer at 0xe0000000, using 8128k, total 8128k
efifb: mode is 1920x1080x32, linelength=7680, pages=1
efifb: scrolling: redraw
efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
fb0: EFI VGA frame buffer device
input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
ACPI: Sleep Button [SLPB]
input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
ACPI: Power Button [PWRF]
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Monitor-Mwait will be used to enter C-3 state
ioatdma: Intel(R) QuickData Technology Driver 4.00
brd: module loaded
loop: module loaded
Guest personality initialized and is inactive
VMCI host device registered (name=vmci, major=10, minor=61)
Initialized host personality
dmfe: Davicom DM9xxx net driver, version 1.36.4 (2002-01-17)
v1.01-e (2.4 port) Sep-11-2006  Donald Becker
uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29)
Fusion MPT base driver 3.04.20
Copyright (c) 1999-2008 LSI Corporation
Fusion MPT SPI Host driver 3.04.20
Fusion MPT SAS Host driver 3.04.20
usbcore: registered new interface driver idmouse
i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mousedev: PS/2 mouse device common for all mice
rtc_cmos 00:04: RTC can wake from S4
rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
EFI Variables Facility v0.08 2004-May-17
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
NET: Registered protocol family 17
NET: Registered protocol family 15
8021q: 802.1Q VLAN Support v1.8
Key type dns_resolver registered
microcode: sig=0x906e9, pf=0x2, revision=0x84
microcode: Microcode Update Driver: v2.01
rtc_cmos 00:04: setting system clock to 2018-06-11 08:25:33 UTC (1528705533)
Freeing unused kernel memory: 884K
Write protecting the kernel read-only data: 8192k
Freeing unused kernel memory: 1148K
Freeing unused kernel memory: 256K
random: udevd: uninitialized urandom read (16 bytes read)
random: udevd: uninitialized urandom read (16 bytes read)
random: udevd: uninitialized urandom read (16 bytes read)
random: udevd: uninitialized urandom read (16 bytes read)
random: udevd: uninitialized urandom read (16 bytes read)
random: udevd: uninitialized urandom read (16 bytes read)
random: udevadm: uninitialized urandom read (16 bytes read)
random: udevadm: uninitialized urandom read (16 bytes read)
random: udevadm: uninitialized urandom read (16 bytes read)
random: udevadm: uninitialized urandom read (16 bytes read)
wmi: Mapper loaded
Linux agpgart interface v0.103
xhci_hcd 0000:00:14.0: xHCI Host Controller
xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[drm] Initialized
libata version 3.00 loaded.
xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 16 ports detected
Console: switching to colour frame buffer device 240x67
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti
PTP clock support registered
xhci_hcd 0000:00:14.0: xHCI Host Controller
xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 10 ports detected
e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
usb: port power management may be unreliable
ahci 0000:00:17.0: version 3.0
ahci 0000:00:17.0: AHCI 0001.0301 32 slots 5 ports 6 Gbps 0x1f impl SATA mode
ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
scsi host0: ahci
scsi host1: ahci
scsi host2: ahci
scsi host3: ahci
scsi host4: ahci
ata1: SATA max UDMA/133 abar m2048@0xde936000 port 0xde936100 irq 121
ata2: SATA max UDMA/133 abar m2048@0xde936000 port 0xde936180 irq 121
ata3: SATA max UDMA/133 abar m2048@0xde936000 port 0xde936200 irq 121
ata4: SATA max UDMA/133 abar m2048@0xde936000 port 0xde936280 irq 121
ata5: SATA max UDMA/133 abar m2048@0xde936000 port 0xde936300 irq 121
i801_smbus 0000:00:1f.4: enabling device (0100 -> 0103)
i801_smbus 0000:00:1f.4: SPD Write Disable is set
i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[drm] Memory usable by graphics device = 4096M
checking generic (e0000000 7f0000) vs hw (1fe0000000 10000000)
[drm] Replacing VGA console driver
[drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[drm] Driver supports precise vblank timestamp query.
vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
i915 0000:00:02.0: Direct firmware load for i915/kbl_dmc_ver1_01.bin failed with error -2
i915 0000:00:02.0: Failed to load DMC firmware [https://01.org/linuxgraphics/intel-linux-graphics-firmwares], disabling runtime power management.
usb 1-11: new low-speed USB device number 2 using xhci_hcd
ata2: SATA link down (SStatus 4 SControl 300)
ata5: SATA link down (SStatus 4 SControl 300)
ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
ata3: SATA link down (SStatus 4 SControl 300)
ata4: SATA link down (SStatus 4 SControl 300)
ata1.00: ACPI cmd f5/00:00:00:00:00:e0 (unknown) filtered out
ata1.00: ATA-9: SanDisk SD8SB8U-256G-1006, X4120006, max UDMA/133
ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
ata1.00: ACPI cmd f5/00:00:00:00:00:e0 (unknown) filtered out
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access     ATA      SanDisk SD8SB8U- 0006 PQ: 0 ANSI: 5
[drm] failed to retrieve link info, disabling eDP
[drm] GuC firmware load skipped
ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
[drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
input: Chicony HP Business Slim Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/0003:03F0:304A.0001/input/input7
random: fast init done
sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
sd 0:0:0:0: [sda] 4096-byte physical blocks
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda: sda1 sda2 sda3 sda4 sda5 sda6
sd 0:0:0:0: [sda] Attached SCSI disk
hid-generic 0003:03F0:304A.0001: input: USB HID v1.10 Keyboard [Chicony HP Business Slim Keyboard] on usb-0000:00:14.0-11/input0
input: Chicony HP Business Slim Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:03F0:304A.0002/input/input8
e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
hid-generic 0003:03F0:304A.0002: input,hiddev0: USB HID v1.10 Device [Chicony HP Business Slim Keyboard] on usb-0000:00:14.0-11/input1
e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 18:60:24:a5:b2:0b
e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
usb 1-12: new low-speed USB device number 3 using xhci_hcd
tsc: Refined TSC clocksource calibration: 3408.000 MHz
clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x311fd3cd494, max_idle_ns: 440795223879 ns
input: PixArt HP USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0/0003:03F0:134A.0003/input/input9
hid-generic 0003:03F0:134A.0003: input: USB HID v1.11 Mouse [PixArt HP USB Optical Mouse] on usb-0000:00:14.0-12/input0
checking generic (e0000000 7f0000) vs hw (1fe0000000 10000000)
fbcon: inteldrmfb (fb1) is primary device
fbcon: Remapping primary device, fb1, to tty 1-63
clocksource: Switched to clocksource tsc
[drm] RC6 on
i915 0000:00:02.0: fb1: inteldrmfb frame buffer device
## Hardware-Setup - Ende ##
Moeglicher Fehler erkannt: linbo_cmd laeuft bereits.
 1192 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd update_devices
 1195 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd update_devices
 1196 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd update_devices
Installing for x86_64-efi platform.
grub-install: warning: cannot open directory `/usr/share/locale': No such file or directory.
Installation finished. No error reported.
Moeglicher Fehler erkannt: linbo_cmd laeuft bereits.
 2365 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd mac
 2369 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd mac
Moeglicher Fehler erkannt: linbo_cmd laeuft bereits.
 2384 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd version
 2388 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd version
NTFS signature is missing.
Failed to mount '/dev/sda': Invalid argument
The device '/dev/sda' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
Moeglicher Fehler erkannt: linbo_cmd laeuft bereits.
 2650 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd start /dev/sda3 /dev/sda3 auto   /dev/sda6
 2654 root       0:00 {linbo_cmd} /bin/sh /usr/bin/linbo_cmd start /dev/sda3 /dev/sda3 auto   /dev/sda6
Kann Windows-EFI-Bootdateien nicht restaurieren.
Stelle EFI-Standardboot wieder her.
Setze EFI BootNext: 0015.
BootNext: 0015
BootCurrent: 0010
Timeout: 0 seconds
BootOrder: 0010,000C,000B,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000A
Boot0000  Startup Menu
Boot0001  System Information
Boot0002  Bios Setup
Boot0003  Drittanbieter-Option für das ROM-Management
Boot0004  System Diagnostics
Boot0005  System Diagnostics
Boot0006  System Diagnostics
Boot0007  System Diagnostics
Boot0008  Boot Menu
Boot0009  HP Recovery
Boot000A  Network Boot
Boot000B* IPV6 Network - Intel(R) Ethernet Connection (5) I219-LM
Boot000C* grub
Boot000E  USB:  
Boot000F  USB:  
Boot0010* IPV4 Network - Intel(R) Ethernet Connection (5) I219-LM
Boot0011* Linux Mint
Boot0013  SATA CD:  
Boot0014* Verbatim STORE N GO 078A1CE20425
Boot0015* Windows Boot Manager
Setze EFI Bootreihenfolge: 000C,0010.
BootNext: 0015
BootCurrent: 0010
Timeout: 0 seconds
BootOrder: 000C,0010
Boot0000  Startup Menu
Boot0001  System Information
Boot0002  Bios Setup
Boot0003  Drittanbieter-Option für das ROM-Management
Boot0004  System Diagnostics
Boot0005  System Diagnostics
Boot0006  System Diagnostics
Boot0007  System Diagnostics
Boot0008  Boot Menu
Boot0009  HP Recovery
Boot000A  Network Boot
Boot000B* IPV6 Network - Intel(R) Ethernet Connection (5) I219-LM
Boot000C* grub
Boot000E  USB:  
Boot000F  USB:  
Boot0010* IPV4 Network - Intel(R) Ethernet Connection (5) I219-LM
Boot0011* Linux Mint
Boot0013  SATA CD:  
Boot0014* Verbatim STORE N GO 078A1CE20425
Boot0015* Windows Boot Manager
Fehler beim Schreiben der EFI-Boot-Konfiguration.
Schreibe Reboot-Informationen nach /cache/boot/grub/grubenv.
## Log session end: Mo 11. Jun 08:25:31 CEST 2018 ##

Bei einem noch nicht aufgenommenen Rechner bleibt er stehen bei:
linbo%202

Gruß
Uwe

PS: Festpatte ist eine Sandisk X400 Sata

Ich antworte mir mal selbst. Problem gelöst!
In der /var/linbo/boot/grub/…cfg gibt es die Zeile
set gfxpayload=800x600x16
Auskommentieren, Leer lassen oder andere Auflösungen eintragen hatten alle nicht funtioniert!
Jetzt habe ich folgendes eingetragen:
set gfxpayload=ist mir doch egal
funktioniert wie es soll.

Muß man das verstehen??

Gruß
Uwe

Hallo Uwe,

Jetzt habe ich folgendes eingetragen:
set gfxpayload=ist mir doch egal
funktioniert wie es soll.

Deine Zeile in der .cfg sieht so aus?

set gfxpayload=ist mir doch egal

Sag mal: was für eine Grafikkarte ist den im Rechner?
Onboard? Oder gesteckt? Hersteller?

Ich hab in meinen EliteDesk die Onboard (Intel) in Verwendung.

LG

Holger

Hi, Uwe,

wenn Du den Grub unterbrichst, dann mit “e” ein Editieren der Befehlszeilen einleitest, dann aber mit F2 in den command-line-Modus wechselst, kriegst Du mit

videoinfo

eine Liste der derlaubten gfx-Modes für den gfxpayload.

L.G.
Christoph Gü
P.S.
Der Videomode “ist mir doch egal” geht nur bei fortgeschrittenen Grafikkarten ab KI 2.0 …:wink:

Hallo Holger
Ich benutze die integrierte vom i5 7500 mit Displayport auf DVI Adapter.
LG
Uwe

Bei mir tritt eine ähnliche Problematik zu Tage. Auch bei meinen ProDesk 600 M3 hängt sich Linbo nach dem PXE-Start einfach auf. Ein Enter-Drücken fährt dann die Maschine herunter.
Die obigen Schritte habe ich alle schon probiert.
KernelOption=nomodeset

und den graphic-load in der grub.cfg auskommentiert.

Hallo Henning,

bootet der PC von einem Linbo-USB-Bootstick? Wenn ja, könnte es an der Netzwerkkarte liegen.

Du musst dann einmal von USB booten, dann auf HDD-Boot umstellen (ist bei mir eh um 20 sec schneller) und dann geht es dauerhaft ohne USB-Stick. Nur, wenn Du einen neue Festplatte einbauen müsstest, müsstest Du einmal einen Linbo-Stick benutzen.

LG
Max

Hi maxEG,

vom Linbo-Stick lässt sich booten. Der Wrapper legt auch fast alles an. Dann bekommt er einen Fehler beim Partitionieren der sda-Partition.

Hallo Henning,

vom Linbo-Stick lässt sich booten. Der Wrapper legt auch fast alles an.
Dann bekommt er einen Fehler beim Partitionieren der sda-Partition.

kannst du mal die start.conf der Gruppe und die logdateien eines
betroffenen Rechners schicken?

Ebenso wären ein paar Details nicht schlecht:
SSD größe und wo sie angebunden ist (SATA;mSATA;NVMe?)
BIOS oder UEFI Boot?

LG

Holger

Hallo Holger,

also, die Arbeitsplätze sind HP Prodesk 600 MT G3.
Die Festplatte ist eine SATA mit 500GB.
Onboard sind Grafik und Netzwerk.

Unten habe ich dir die start.conf.win10 aufgelistet.

So langsam bin ich etwas ratlos.


# LINBO start.conf Beispiel mit EFI (GPT)
# EFI 64 Partition 1
# MSR  Partition 2
# Windows 10 Partition 3
# Ubuntu Partition 4
# Swap Partition 5
# Cache auf Partition 6
# Daten auf Partition 7

[LINBO]                  # globale Konfiguration
Server = 10.16.1.1       # IP des Linbo-Servers, der das Linbo-Repository vorhaelt
Group = win10
# Achtung: Server und Group werden beim Workstationsimport automatisch gesetzt!
Cache = /dev/sda6        # lokale Cache Partition
RootTimeout = 600        # automatischer Rootlogout nach 600 Sek.
AutoPartition = no       # automatische Partitionsreparatur beim LINBO-Start
AutoFormat = no          # kein automatisches Formatieren aller Partitionen beim LINBO-Start
AutoInitCache = no       # kein automatisches Befuellen des Caches beim LINBO-Start
DownloadType = torrent   # Image-Download per torrent|multicast|rsync, default ist rsync
BackgroundFontColor = white         # Bildschirmschriftfarbe (default: white)
ConsoleFontColorStdout = lightgreen # Konsolenschriftfarbe (default: white)
ConsoleFontColorStderr = orange     # Konsolenschriftfarbe fuer Fehler-/Warnmeldungen (default: red)
SystemType = efi64                  # moeglich ist bios|bios64|efi32|efi64 (Standard: bios fuer bios 32bit)
KernelOptions = quiet splash nomodeset      # Beispiele:
#KernelOptions = acpi=noirq irqpoll # LINBO Kerneloptionen (z. B. acpi=off), m. Leerz. getrennt
#KernelOptions = server=10.16.1.5   # Abweichende Linbo-Server-IP als Kerneloption gesetzt
                                    # falls gesetzt wird diese IP beim Workstationsimport verwendet 

[Partition]              # Partition fuer EFI
Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster Platte)
Label = efi              # Partitionslabel efi (efi system partition)
Size = 200M              # Partitionsgroesse (Bsp.: 200M), ist keine Einheit (M, G oder T) angegeben, wird kiB angenommen
Id = ef                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ef = efi)
FSType = vfat            # Dateisystem auf der Partition (FAT32)
Bootable = yes           # Bootable-Flag gesetzt

[Partition]              # Partition fuer MSR
Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster Platte)
Label = msr              # Partitionslabel msr (microsoft reserved partition)
Size = 128M              # Partitionsgroesse 128M
Id = 0c01                # Partitionstyp 0c01
FSType =                 # kein Dateisystem
Bootable = no            # kein Bootable-Flag

[Partition]              # Partition fuer Windows
Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster Platte)
Label = win10            # Partitionslabel win10
Size = 50G               # Partitionsgroesse 30G
Id = 7                   # Partitionstyp 83
FSType = ntfs            # Dateisystem ext4
Bootable = no            # kein Bootable-Flag

[Partition]              # Partition fuer Ubuntu
Dev = /dev/sda4          # Device-Name der Partition (sda4 = vierte Partition auf erster Platte)
Label = ubuntu           # Partitionslabel ubuntu
Size = 30G               # Partitionsgroesse 30G
Id = 83                  # Partitionstyp 83
FSType = ext4            # Dateisystem ext4
Bootable = no            # kein Bootable-Flag

[Partition]              # Swap-Partition
Dev = /dev/sda5          # Device-Name der Partition (sda5 = fuenfte Partition auf erster Platte)
Label = swap             # Partitionslabel swap
Size = 4G                # Partitionsgroesse 4G
Id = 82                  # Partitionstyp 82
FSType = swap            # Dateisystem swap
Bootable = no            # kein Bootable-Flag

[Partition]              # Cache-Partition
Dev = /dev/sda6          # Device-Name der Partition (sda6 = sechste Partition auf erster Platte)
Label = cache            # Partitionslabel cache
Size = 80G               # Partitionsgroesse 80G
Id = 83                  # Partitionstyp 83
FSType = ext4            # Dateisystem ext4
Bootable = no            # kein Bootable-Flag

[Partition]              # Daten-Partition
Dev = /dev/sda7          # Device-Name der Partition (sda7 = siebte Partition auf erster IDE-Platte)
Label = daten            # Partitionslabel daten
Size =                   # Partitionsgroesse nicht angegeben = Rest der Platte
Id = 7                   # Partitionstyp 7
FSType = ntfs            # Dateisystem ntfs
Bootable = no            # kein Bootable-Flag

[OS]                         # Beginn einer Betriebssystemdefinition
Name = Windows 10            # Name des Betriebssystems
Version =                    # Version (unbenutzt, leer lassen)
Description = Windows 10     # Beschreibung
IconName = win10.png         # Icon fuer den Startbutton, muss unter /var/linbo/icons abgelegt sein
Image =                      # differentielles Image (Erweiterung .rsync, Verwendung nicht empfohlen)
BaseImage = win10.cloop      # Dateiname des Basisimages (Erweiterung .cloop)
Boot = /dev/sda3             # Bootpartition (unbenutzt, immer gleich Rootpartition)
Root = /dev/sda3             # Rootpartition, in die das BS installiert ist
Kernel = auto                # Windows: auto (LINBO & Grub erkennen die Startparameter automatisch)
Initrd =                     # Windows: leer
Append =                     # Windows: leer
StartEnabled = yes           # "Start"-Button anzeigen
SyncEnabled = yes            # "Sync+Start"-Button anzeigen
NewEnabled = yes             # "Neu+Start"-Button anzeigen
Autostart = no               # automatischer Start des Betriebssystems (yes|no)
AutostartTimeout = 5         # Timeout in Sekunden fuer Benutzerabbruch bei Autostart
DefaultAction = sync         # Standardaktion bei Autostart: start|sync|new
Hidden = yes                 # verstecke OS-Reiter (unbenutzte Option, auf "yes" lassen)

[OS]
Name = Ubuntu                     # Name des Betriebssystems
Version =                         # Version (unbenutzt, leer lassen)
Description = Ubuntu 16.04 Xenial # Beschreibung
IconName = ubuntu.png             # Icon fuer den Startbutton, muss unter /var/linbo/icons abgelegt sein
Image =                           # differentielles Image (Erweiterung .rsync, Verwendung nicht empfohlen)
BaseImage = ubuntu.cloop          # Dateiname des Basisimages (Erweiterung .cloop)
Boot = /dev/sda4                  # Bootpartition (unbenutzt, immer gleich Rootpartition)
Root = /dev/sda4                  # Rootpartition, in die das BS installiert ist
Kernel = vmlinuz                  # Relativer Pfad zum Kernel
Initrd = initrd.img               # Relativer Pfad zur Initrd
Append = ro splash                # Kernel-Append-Parameter, ggf. anpassen
StartEnabled = yes                # "Start"-Button anzeigen
SyncEnabled = yes                 # "Sync+Start"-Button anzeigen
NewEnabled = yes                  # "Neu+Start"-Button anzeigen
Autostart = no                    # automatischer Start des Betriebssystems (yes|no)
AutostartTimeout = 5              # Timeout in Sekunden fuer Benutzerabbruch bei Autostart
DefaultAction = sync              # Standardaktion bei Autostart: start|sync|new
Hidden = yes                      # verstecke OS-Reiter (unbenutzte Option, auf "yes" lassen)

> Blockquote

Ich antworte mir mal selber: Im Bios unter SystemOption “alle uefi” einstellen.

Hallo Henning

War bei mir genauso
das auskommentieren der graphic-load funktioniert nicht. Da wird irgend ein Wert erwartet.
Das steht bei mir drin: set gfxpayload=ist mir doch egal
Damit funktionieren meine Pcs.

Gruß
Uwe

Wobei ich das irgendwie seltsam finde. Die Zuweisung für den gfxpayload müsse eigentlich bewirken, dass der Client mit der Default-Einstellung startet. Aber wenn es hilft?!

Hallo!
Hallo!
Ich habe das selbe Problem. Trozt, dass ich alle Einstellungen von der LMN6.2 übernommen habe, geht die gui nicht. Ich komme per ssh auf den Rechner, dort sagt dmesg:
linbo_gui[1657]: segfault at 8 …
immer wieder. Auch der Trick mit „Blödsinn eingeben“ bei gfxpayload funktioniert nicht.
Auch BIOS auf Uefi and Legacy stellen hat nichts gebracht.
Wenn ich im GRUB mit F2 in die Befehlszeile wechsle, bekomme ich bei jedem Befehl „tftp not found“ gemeldet.
Wenn ich in der start.conf bei LINBO KernelOptions eingebe, sind die beim nächsten linuxmuster-import-devices weg. warum?
Bin grad etwas ratlos, weil ich mein Image fertig habe und es nicht auf die Rechner bringe…
LG
Max