Changeset 366


Ignore:
Timestamp:
11/26/08 21:40:07 (3 years ago)
Author:
tschmitt
Message:
  • grub4dos auf 0.4.4-11-19 aktualisiert.
  • in den start.conf-Beispielen hda nach sda geändert;
  • Kernel auf 2.6.27.7 aktualisiert.
Location:
main/linuxmuster-linbo/trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • main/linuxmuster-linbo/trunk/debian/changelog

    r338 r366  
     1linuxmuster-linbo (1.1.1-1) testing; urgency=low 
     2 
     3  * updated grub4dos to 0.4.4-11-19 
     4  * changed hda to sda in start.conf examples 
     5  * kernel update to 2.6.27.7 
     6 
     7 -- Thomas Schmitt <schmitt@lmz-bw.de>  Mon, 24 Nov 2008 19:07:58 +0100 
     8 
    19linuxmuster-linbo (1.1.0-1) unstable; urgency=low 
    210 
  • main/linuxmuster-linbo/trunk/debian/md5sums.src

    r333 r366  
    2209addfe7ae469677da39ed66d83858d3  chntpw-source-080526.zip 
    33876e1f0951cb00c8a5fea23383f99706  cloop_2.625-1.tar.gz 
    4 c1826829d8b327afff4e8525b01089c8  grub4dos-0.4.4-2008-11-11-src.zip 
     44d7a02399fc8669ba64ca689ae93a722  grub4dos-0.4.4-2008-11-19-src.zip 
    55d9f2ecd3c3307905f24130a25816e6cc  kexec-tools-2.0.0.tar.bz2 
    6 e0a2ccc01319efdfd5869345099f06f4  linux-2.6.27.6.tar.bz2 
     6db323884c7dc46e4cd33d0d944fa59a9  linux-2.6.27.7.tar.bz2 
    776fad0a69ac89440ad4f696dbbbf11497  ms-sys-2.1.3.tgz 
    88601db52936011902206dfe1be05e4756  ntfs-3g-1.5012.tgz 
  • main/linuxmuster-linbo/trunk/debian/rules

    r337 r366  
    2727QT_ARCHIVE=$(shell grep qt-embedded-free- debian/md5sums.src | awk '{ print $$2 }') 
    2828QT_DIR=linbo_gui/$(shell echo $(QT_ARCHIVE) | sed -e 's/.tar.bz2//') 
     29#QT_URL=http://wftp.tu-chemnitz.de/pub/Qt/qt/source 
    2930QT_URL=$(LML_URL) 
    3031 
  • main/linuxmuster-linbo/trunk/examples/start.conf.kubuntu

    r329 r366  
    77 
    88[LINBO]                  # Start der globalen Konfiguration 
    9 Cache = /dev/hda2        # lokale Cache Partition 
     9Cache = /dev/sda2        # lokale Cache Partition 
    1010Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1111RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1616 
    1717[Partition]              # Start einer Partitionsdefinition fuer ein Betriebssystem (Kubuntu) 
    18 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     18Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    1919Size = 6291456           # Partitionsgroesse in kB (Bsp.: 6G) 
    2020Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2323 
    2424[Partition]              # Start einer Partitionsdefinition, Cachepartition 
    25 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     25Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2626Size = 10485760          # Partitionsgroesse 8388608 kB (Bsp.: 10G) 
    2727Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    3030 
    3131[Partition]              # Definition der Swap-Partition 
    32 Dev = /dev/hda3          # Device-Name der Partition (hda3 = dritte Partition auf erster IDE-Platte) 
     32Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster IDE-Platte) 
    3333Size = 524288            # Partitionsgroesse in kB (Bsp.: 512M) 
    3434Id = 82                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    3737 
    3838[Partition]              # Start einer Partitionsdefinition, Datenpartition 
    39 Dev = /dev/hda4          # Device-Name der Partition (hda4 = vierte Partition auf erster IDE-Platte) 
     39Dev = /dev/sda4          # Device-Name der Partition (sda4 = vierte Partition auf erster IDE-Platte) 
    4040Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte, ca. 25G) 
    4141Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    5050Image =                             # erst eintragen, wenn es erzeugt werden soll 
    5151BaseImage = hardy.cloop             # Dateiname des Basisimages (Erweiterung .cloop) 
    52 Boot = /dev/hda1                    # Partition, die Kernel & Initrd enthaelt 
    53 Root = /dev/hda1                    # Rootpartition, in die das BS installiert ist 
     52Boot = /dev/sda1                    # Partition, die Kernel & Initrd enthaelt 
     53Root = /dev/sda1                    # Rootpartition, in die das BS installiert ist 
    5454Kernel = vmlinuz                    # Relativer Pfad zum Kernel 
    5555Initrd = initrd.img                 # Relativer Pfad zur Initrd 
  • main/linuxmuster-linbo/trunk/examples/start.conf.remote_cache

    r329 r366  
    1414 
    1515[Partition]                     # Start einer Partitionsdefinition, Windows XP 
    16 Dev = /dev/hda1                 # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     16Dev = /dev/sda1                 # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    1717Size = 5192000                  # Partitionsgroesse in kB (Bsp.: 5G) 
    1818Id = c                          # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2121 
    2222[Partition]                     # Start einer Partitionsdefinition, Datenpartition 
    23 Dev = /dev/hda2                 # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     23Dev = /dev/sda2                 # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2424Size =                          # Datenpartition nimmt den Rest der Platte ein 
    2525Id = c                          # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    3434Image =                              # erst eintragen, wenn es erzeugt werden soll 
    3535BaseImage = win2k.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    36 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    37 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     36Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     37Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    3838                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    3939Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    4040Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    4141                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    42                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    43 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     42                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     43Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    4444StartEnabled = yes                   # "Start"-Button anzeigen 
    4545SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/examples/start.conf.win2k

    r329 r366  
    66 
    77[LINBO]                  # globale Konfiguration 
    8 Cache = /dev/hda3        # lokale Cache Partition 
     8Cache = /dev/sda3        # lokale Cache Partition 
    99Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1010RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1515 
    1616[Partition]              # Start einer Partitionsdefinition, Windows XP 
    17 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte ) 
     17Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte ) 
    1818Size = 5192000           # Partitionsgroesse in kB (Bsp.: 5G) 
    1919Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2222 
    2323[Partition]              # Start einer Partitionsdefinition, Datenpartition 
    24 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte ) 
     24Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte ) 
    2525Size = 10485760          # Partitionsgroesse in kB (Bsp.: 10G) 
    2626Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2929 
    3030[Partition]              # Definition der Cache-Partition 
    31 Dev = /dev/hda3          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte ) 
     31Dev = /dev/sda3          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte ) 
    3232Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte) 
    3333Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    4242Image =                              # erst eintragen, wenn es erzeugt werden soll 
    4343BaseImage = win2k.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    44 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    45 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     44Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     45Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    4646                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    4747Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    4848Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    4949                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    50                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    51 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     50                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     51Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    5252StartEnabled = yes                   # "Start"-Button anzeigen 
    5353SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/examples/start.conf.win2k_xp

    r329 r366  
    66 
    77[LINBO]                  # globale Konfiguration 
    8 Cache = /dev/hda3        # lokale Cache Partition 
     8Cache = /dev/sda3        # lokale Cache Partition 
    99Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1010RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1515 
    1616[Partition]              # Start einer Partitionsdefinition, Windows XP 
    17 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     17Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    1818Size = 5192000           # Partitionsgroesse in kB (Bsp.: 5G) 
    1919Id = 7                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2222 
    2323[Partition]              # Start einer Partitionsdefinition, Datenpartition 
    24 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     24Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2525Size = 8388608           # Partitionsgroesse 8388608 kB (Bsp.: 8G) 
    2626Id = 7                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2929 
    3030[Partition]              # Definition der Cache-Partition 
    31 Dev = /dev/hda3          # Device-Name der Partition (hda3 = dritte Partition auf erster IDE-Platte) 
     31Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster IDE-Platte) 
    3232Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte) 
    3333Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    4141Image =                              # kein differentielles Image von NTFS-Partitionen 
    4242BaseImage = win2k.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    43 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    44 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     43Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     44Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    4545                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    4646Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    4747Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    4848                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    49                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    50 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     49                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     50Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    5151StartEnabled = yes                   # "Start"-Button anzeigen 
    5252SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
     
    6161Image =                              # kein differentielles Image von NTFS-Partitionen 
    6262BaseImage = winxp.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    63 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    64 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     63Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     64Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    6565                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    6666Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    6767Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    6868                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    69                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    70 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     69                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     70Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    7171StartEnabled = yes                   # "Start"-Button anzeigen 
    7272SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/examples/start.conf.win2k_xp_kubuntu_versionen

    r329 r366  
    99 
    1010[LINBO]                  # globale Konfiguration 
    11 Cache = /dev/hda6        # lokale Cache Partition 
     11Cache = /dev/sda6        # lokale Cache Partition 
    1212Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1313RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1818 
    1919[Partition]              # Start einer Partitionsdefinition, Windows XP mit FAT32 
    20 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     20Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    2121Size = 5192000           # Partitionsgroesse in kB (Bsp.: 5G) 
    2222Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2525 
    2626[Partition]              # Start einer Partitionsdefinition, Kubuntu 
    27 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     27Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2828Size = 6291456           # Partitionsgroesse in kB (Bsp.: 6G) 
    2929Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    3232 
    3333[Partition]              # Definition der Swappartition 
    34 Dev = /dev/hda3          # Device-Name der Partition (hda3 = dritte Partition auf erster IDE-Platte) 
     34Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster IDE-Platte) 
    3535Size = 1048576           # Partitionsgroesse in kB (Bsp.: 1G) 
    3636Id = 82                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    3838 
    3939[Partition]              # Erweiterte Partition 
    40 Dev = /dev/hda4          # Device-Name der Partition (hda4 = vierte Partition auf erster IDE-Platte) 
     40Dev = /dev/sda4          # Device-Name der Partition (sda4 = vierte Partition auf erster IDE-Platte) 
    4141Size =                   # Partitionsgroesse in kB (leer bei erweiterter Partition) 
    4242Id = 5                   # Partitionstyp (5 = erweiterte Partition) 
     
    4545 
    4646[Partition]              # Start einer Partitionsdefinition, Datenpartition mit NTFS 
    47 Dev = /dev/hda5          # Device-Name der Partition (hda5 = fünfte Partition auf erster IDE-Platte) 
     47Dev = /dev/sda5          # Device-Name der Partition (sda5 = fünfte Partition auf erster IDE-Platte) 
    4848Size = 36700160          # Partitionsgroesse in kB (Bsp.: 35G) 
    4949Id = 7                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    5252 
    5353[Partition]              # Definition der Cache-Partition 
    54 Dev = /dev/hda6          # Device-Name der Partition (hda6 = sechste Partition auf erster IDE-Platte) 
     54Dev = /dev/sda6          # Device-Name der Partition (sda6 = sechste Partition auf erster IDE-Platte) 
    5555Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte, ca. 8G) 
    5656Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    6464Image = win2k.rsync                  # Dateiname des differentiellen Images (Erweiterung .rsync) 
    6565BaseImage = win2k.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    66 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    67 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     66Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     67Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    6868                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    6969Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    7070Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    7171                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    72                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    73 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     72                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     73Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    7474StartEnabled = no                    # "Start"-Button deaktiviert 
    7575SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
     
    8484Image =                              # kein differentielles Image definiert 
    8585BaseImage = win2k.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    86 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    87 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     86Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     87Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    8888                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    8989Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    9090Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    9191                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    92                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    93 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     92                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     93Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    9494StartEnabled = no                    # "Start"-Button deaktiviert 
    9595SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
     
    104104Image = winxp.rsync                  # Dateiname des differentiellen Images (Erweiterung .rsync) 
    105105BaseImage  = winxp.cloop             # Dateiname des Basisimages (Erweiterung .cloop) 
    106 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    107 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     106Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     107Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    108108                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    109109Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    110110Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    111111                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    112                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    113 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     112                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     113Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    114114StartEnabled = no                    # "Start"-Button deaktiviert 
    115115SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
     
    124124Image =                              # kein differentielles Image definiert 
    125125BaseImage  = winxp.cloop             # Dateiname des Basisimages (Erweiterung .cloop) 
    126 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    127 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     126Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     127Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    128128                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    129129Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    130130Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    131131                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    132                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    133 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     132                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     133Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    134134StartEnabled = no                    # "Start"-Button deaktiviert 
    135135SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
     
    144144Image =  hardy.rsync                # Dateiname des differentiellen Images (Erweiterung .rsync) 
    145145BaseImage = hardy.cloop             # Dateiname des Basisimages (Erweiterung .cloop) 
    146 Boot = /dev/hda2                    # Partition, die Kernel & Initrd enthaelt 
    147 Root = /dev/hda2                    # Rootpartition, in die das BS installiert ist 
     146Boot = /dev/sda2                    # Partition, die Kernel & Initrd enthaelt 
     147Root = /dev/sda2                    # Rootpartition, in die das BS installiert ist 
    148148Kernel = vmlinuz                    # Relativer Pfad zum Kernel 
    149149Initrd = initrd.img                 # Relativer Pfad zur Initrd 
     
    165165Image =                             # kein differentielles Image 
    166166BaseImage = hardy.cloop             # Dateiname des Basisimages (Erweiterung .cloop) 
    167 Boot = /dev/hda2                    # Partition, die Kernel & Initrd enthaelt 
    168 Root = /dev/hda2                    # Rootpartition, in die das BS installiert ist 
     167Boot = /dev/sda2                    # Partition, die Kernel & Initrd enthaelt 
     168Root = /dev/sda2                    # Rootpartition, in die das BS installiert ist 
    169169Kernel = vmlinuz                    # Relativer Pfad zum Kernel 
    170170Initrd = initrd.img                 # Relativer Pfad zur Initrd 
  • main/linuxmuster-linbo/trunk/examples/start.conf.win98se

    r329 r366  
    66 
    77[LINBO]                  # globale Konfiguration 
    8 Cache = /dev/hda3        # lokale Cache Partition 
     8Cache = /dev/sda3        # lokale Cache Partition 
    99Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1010RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1515 
    1616[Partition]              # Start einer Partitionsdefinition, Windows 98SE 
    17 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     17Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    1818Size = 2097152           # Partitionsgroesse in kB (Bsp.: 2G) 
    1919Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2222 
    2323[Partition]              # Start einer Partitionsdefinition, Datenpartition 
    24 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     24Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2525Size = 14680064          # Partitionsgroesse in kB (Bsp.: 14G) 
    2626Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2929 
    3030[Partition]              # Definition der Cache-Partition 
    31 Dev = /dev/hda3          # Device-Name der Partition (hda3 = dritte Partition auf erster IDE-Platte) 
     31Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster IDE-Platte) 
    3232Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte, ca. 4GB) 
    3333Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    4242Image =                              # erst eintragen, wenn es erzeugt werden soll 
    4343BaseImage  = win98se.cloop           # Dateiname des Basisimages (Erweiterung .cloop) 
    44 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    45 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     44Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     45Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    4646                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    4747Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    4848Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    4949                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    50                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    51 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/io.sys; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     50                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     51Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/io.sys; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    5252StartEnabled = no                    # "Start"-Button deaktiviert 
    5353SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/examples/start.conf.winxp_fat32

    r329 r366  
    66 
    77[LINBO]                  # globale Konfiguration 
    8 Cache = /dev/hda3        # lokale Cache Partition 
     8Cache = /dev/sda3        # lokale Cache Partition 
    99Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1010RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1515 
    1616[Partition]              # Start einer Partitionsdefinition, Windows XP 
    17 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     17Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    1818Size = 5192000           # Partitionsgroesse in kB (Bsp.: 5G) 
    1919Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2222 
    2323[Partition]              # Start einer Partitionsdefinition, Datenpartition 
    24 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     24Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2525Size = 10485760          # Partitionsgroesse in kB (Bsp.: 10G) 
    2626Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2929 
    3030[Partition]              # Definition der Cache-Partition 
    31 Dev = /dev/hda3          # Device-Name der Partition (hda3 = dritte Partition auf erster IDE-Platte) 
     31Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster IDE-Platte) 
    3232Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte, ca. 5GB) 
    3333Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    4242Image =                                      # erst eintragen, wenn es erzeugt werden soll 
    4343BaseImage  = winxp-fat.cloop                 # Dateiname des Basisimages (Erweiterung .cloop) 
    44 Boot = /dev/hda1                             # Partition, die Kernel & Initrd enthaelt 
    45 Root = /dev/hda1                             # Rootpartition, in die das BS installier ist 
     44Boot = /dev/sda1                             # Partition, die Kernel & Initrd enthaelt 
     45Root = /dev/sda1                             # Rootpartition, in die das BS installier ist 
    4646                                             # bei Windows ist Boot und Root immer dieselbe Partition 
    4747Kernel = grub.exe                            # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    4848Initrd =                                     # Relativer Pfad zur Initrd, bei Windows immer leer 
    4949                                             # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    50                                              # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    51 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     50                                             # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     51Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    5252StartEnabled = yes                           # "Start"-Button anzeigen 
    5353SyncEnabled = yes                            # "Sync+Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/examples/start.conf.winxp_kubuntu

    r329 r366  
    99 
    1010[LINBO]                  # globale Konfiguration 
    11 Cache = /dev/hda6        # lokale Cache Partition 
     11Cache = /dev/sda6        # lokale Cache Partition 
    1212Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1313RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1818 
    1919[Partition]              # Start einer Partitionsdefinition, Windows XP mit FAT32 
    20 Dev = /dev/hda1          # Device-Name der Partition (hda1 = 1. Partition auf erster IDE-Platte) 
     20Dev = /dev/sda1          # Device-Name der Partition (sda1 = 1. Partition auf erster IDE-Platte) 
    2121Size = 5192000           # Partitionsgroesse in kB (Bsp.: 5G) 
    2222Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2525 
    2626[Partition]              # Start einer Partitionsdefinition, Kubuntu 
    27 Dev = /dev/hda2          # Device-Name der Partition (hda2 = 2. Partition auf erster IDE-Platte) 
     27Dev = /dev/sda2          # Device-Name der Partition (sda2 = 2. Partition auf erster IDE-Platte) 
    2828Size = 6291456           # Partitionsgroesse in kB (Bsp.: 6G) 
    2929Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    3232 
    3333[Partition]              # Definition der Swappartition 
    34 Dev = /dev/hda3          # Device-Name der Partition (hda3 = 3. Partition auf erster IDE-Platte) 
     34Dev = /dev/sda3          # Device-Name der Partition (sda3 = 3. Partition auf erster IDE-Platte) 
    3535Size = 1048576           # Partitionsgroesse in kB (Bsp.: 1G) 
    3636Id = 82                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    3838 
    3939[Partition]              # Erweiterte Partition 
    40 Dev = /dev/hda4          # Device-Name der Partition (hda4 = 4. Partition auf erster IDE-Platte) 
     40Dev = /dev/sda4          # Device-Name der Partition (sda4 = 4. Partition auf erster IDE-Platte) 
    4141Size =                   # Partitionsgroesse in kB (leer bei erweiterter Partition) 
    4242Id = 5                   # Partitionstyp (5 = erweiterte Partition) 
     
    4545 
    4646[Partition]              # Start einer Partitionsdefinition, Datenpartition mit FAT32 
    47 Dev = /dev/hda5          # Device-Name der Partition (hda5 = 5. Partition auf erster IDE-Platte) 
     47Dev = /dev/sda5          # Device-Name der Partition (sda5 = 5. Partition auf erster IDE-Platte) 
    4848Size = 31457280          # Partitionsgroesse in kB (Bsp.: 30G) 
    4949Id = c                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    5252 
    5353[Partition]              # Definition der Cache-Partition 
    54 Dev = /dev/hda6          # Device-Name der Partition (hda6 = 6. Partition auf erster IDE-Platte) 
     54Dev = /dev/sda6          # Device-Name der Partition (sda6 = 6. Partition auf erster IDE-Platte) 
    5555Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte, ca. 18G) 
    5656Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    6565Image =                              # erst eintragen, wenn es erzeugt werden soll 
    6666BaseImage  = winxp.cloop             # Dateiname des Basisimages (Erweiterung .cloop) 
    67 Boot = /dev/hda1                     # Partition, die Kernel & Initrd enthaelt 
    68 Root = /dev/hda1                     # Rootpartition, in die das BS installiert ist 
     67Boot = /dev/sda1                     # Partition, die Kernel & Initrd enthaelt 
     68Root = /dev/sda1                     # Rootpartition, in die das BS installiert ist 
    6969                                     # bei Windows ist Boot und Root immer dieselbe Partition 
    7070Kernel = grub.exe                    # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    7171Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    7272                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    73                                      # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    74 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     73                                     # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     74Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    7575StartEnabled = yes                   # "Start"-Button anzeigen 
    7676SyncEnabled = yes                    # "Sync+Start"-Button anzeigen 
     
    8686Image =                              # erst eintragen, wenn es erzeugt werden soll 
    8787BaseImage = hardy.cloop              # Dateiname des Basisimages (Erweiterung .cloop) 
    88 Boot = /dev/hda2                     # Partition, die Kernel & Initrd enthaelt 
    89 Root = /dev/hda2                     # Rootpartition, in die das BS installiert ist 
     88Boot = /dev/sda2                     # Partition, die Kernel & Initrd enthaelt 
     89Root = /dev/sda2                     # Rootpartition, in die das BS installiert ist 
    9090Kernel = vmlinuz                     # Relativer Pfad zum Kernel 
    9191Initrd = initrd.img                  # Relativer Pfad zur Initrd 
  • main/linuxmuster-linbo/trunk/examples/start.conf.winxp_kubuntu_sata

    r329 r366  
    7070Initrd =                             # Relativer Pfad zur Initrd, bei Windows immer leer 
    7171                                     # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. SATA-Festplatte 
    72                                      # bei IDE-Platten statt /dev/sda /dev/hda eintragen 
     72                                     # bei IDE-Platten statt /dev/sda /dev/sda eintragen 
    7373Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    7474StartEnabled = yes                   # "Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/examples/start.conf.winxp_ntfs

    r329 r366  
    66 
    77[LINBO]                  # globale Konfiguration 
    8 Cache = /dev/hda3        # lokale Cache Partition 
     8Cache = /dev/sda3        # lokale Cache Partition 
    99Server = 10.16.1.1       # IP des TFTP-Servers, der Images vorhaelt 
    1010RootTimeout = 600        # automatischer Rootlogout nach 600 Sek. 
     
    1515 
    1616[Partition]              # Start einer Partitionsdefinition, Windows XP 
    17 Dev = /dev/hda1          # Device-Name der Partition (hda1 = erste Partition auf erster IDE-Platte) 
     17Dev = /dev/sda1          # Device-Name der Partition (sda1 = erste Partition auf erster IDE-Platte) 
    1818Size = 5192000           # Partitionsgroesse in kB (Bsp.: 5G) 
    1919Id = 7                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2222 
    2323[Partition]              # Start einer Partitionsdefinition, Datenpartition 
    24 Dev = /dev/hda2          # Device-Name der Partition (hda2 = zweite Partition auf erster IDE-Platte) 
     24Dev = /dev/sda2          # Device-Name der Partition (sda2 = zweite Partition auf erster IDE-Platte) 
    2525Size = 10485760          # Partitionsgroesse in kB (Bsp.: 10G) 
    2626Id = 7                   # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, 7 = NTFS, ...) 
     
    2929 
    3030[Partition]              # Definition der Cache-Partition 
    31 Dev = /dev/hda3          # Device-Name der Partition (hda3 = dritte Partition auf erster IDE-Platte) 
     31Dev = /dev/sda3          # Device-Name der Partition (sda3 = dritte Partition auf erster IDE-Platte) 
    3232Size =                   # Partitionsgroesse in kB (Bsp.: keine Angabe = Rest der Platte, ca. 5GB) 
    3333Id = 83                  # Partitionstyp (83 = Linux, 82 = swap, c = FAT32, ...) 
     
    4141Image =                                       # kein differentielles Image von NTFS-Partitionen 
    4242BaseImage  = winxp-ntfs.cloop                 # Dateiname des Basisimages (Erweiterung .cloop) 
    43 Boot = /dev/hda1                              # Partition, die Kernel & Initrd enthaelt 
    44 Root = /dev/hda1                              # Rootpartition, in die das BS installier ist 
     43Boot = /dev/sda1                              # Partition, die Kernel & Initrd enthaelt 
     44Root = /dev/sda1                              # Rootpartition, in die das BS installier ist 
    4545                                              # bei Windows ist Boot und Root immer dieselbe Partition 
    4646Kernel = grub.exe                            # Relativer Pfad zum Kernel, bei Windows immer grub.exe 
    4747Initrd =                                     # Relativer Pfad zur Initrd, bei Windows immer leer 
    4848                                             # Kernel-Parameter fuer Windows-Boot aus 1. Partition der 1. IDE-Festplatte 
    49                                              # bei SATA-Platten statt /dev/hda /dev/sda eintragen 
    50 Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/hda 
     49                                             # bei SATA-Platten statt /dev/sda /dev/sda eintragen 
     50Append = --config-file=map(rd) (hd0,0); map --hook; chainloader (hd0,0)/ntldr; rootnoverify(hd0,0) --device-map=(hd0) /dev/sda 
    5151StartEnabled = yes                            # "Start"-Button anzeigen 
    5252SyncEnabled = yes                             # "Sync+Start"-Button anzeigen 
  • main/linuxmuster-linbo/trunk/linbo_gui/Makefile

    r333 r366  
    11############################################################################# 
    22# Makefile for building: linbo_gui 
    3 # Generated by qmake (1.07a) (Qt 3.3.7) on: Wed Nov 19 11:10:29 2008 
     3# Generated by qmake (1.07a) (Qt 3.3.7) on: Fri Nov 21 14:10:56 2008 
    44# Project:  linboGUI.pro 
    55# Template: app 
  • main/linuxmuster-linbo/trunk/linbo_gui/linboGUIImpl.cc

    r329 r366  
    11831183 
    11841184  linboMsgImpl *waiting = new linboMsgImpl(this, "foo",0,Qt::WStyle_Customize | Qt::WStyle_NoBorder ); 
    1185   waiting->message->setText("LINBO 1.1.0-1<br>Netzwerk Check"); 
     1185  waiting->message->setText("LINBO 1.1.1-1<br>Netzwerk Check"); 
    11861186 
    11871187  QStringList waitCommand = LINBO_CMD("ready") 
Note: See TracChangeset for help on using the changeset viewer.