1und1 Rootserver mit RHEL4

Um RHEL4 booten zu können, muss man zunächst den Bootloader anpassen, damit in das Installationssystem gebootet werden kann. Ferner müssen die ISO-Images in einer eigenen Partition liegen, so dass der Installer diese nutzen kann, da während der Installation aufgrund des besonderen Routings bei 1und1 keine externe Netzwerkverbindung möglich ist.

Daher wird zunächst ein “root-System” erstellt mittes debootstrap.

Reboot und Installation von RHEL4 via ttyS0 (serial).

erster_reboot_nach_lilo_fuer_rhel4_installkernel.txt

Die Details der Installation sind im folgenden dargestellt. Die sinnvollen Anpassungen nach der Installation umfassen u.a. pam_abl und yafc, sowie die Netzwerkkonfiguration.

UP

Automatische Hardware-Erkennung

+--------+ Loading SCSI driver +---------+
|                                        |
| Loading 3w-xxxx driver...              |
|                                        |
+----------------------------------------+

UP

...

==== Choose a Language ====
Sprache für den Installationsprozess

==== Installation Method ====
                     +------+ Installation Method +------+                      
                     |                                   |                      
                     | What type of media contains the   |                      
                     | packages to be installed?         |                      
                     |                                   |                      
                     |            Local CDROM            |                      
                     |            Hard drive             |                      
                     |            NFS image              |                      
                     |            FTP                    |                      
                     |            HTTP                   |                      
                     |                                   |                      
                     |     +----+          +------+      |                      
                     |     | OK |          | Back |      |                      
                     |     +----+          +------+      |                      
                     |                                   |                      
                     |                                   |                      
                     +-----------------------------------+                                                

                          
Wir wählen HardDrive, da aufgrund von 1und1 Routings während der Installation kein Netzwerk zur Verfügung 

steht.


     +----------------------+ Partition auswählen +----------------------+      
     |                                                                   |      
     |    Welche Partition und welches Verzeichnis dieser Partition      |      
     |    enthalten die CD (ISO9660) Images für Red Hat Enterprise       |      
     |    Linux? Wenn das Festplattenlaufwerk, das Sie verwenden,        |      
     |    nicht in dieser Liste aufgeführt ist, drücken Sie F2, um       |      
     |    zusätzliche Geräte zu konfigurieren.                           |      
     |                                                                   |      
     |                             /dev/sda1                             |      
     |                             /dev/sda2                             |      
     |                             /dev/sda5                             |      
     |                                                                   |      
     | Verzeichnis, das die Images enthält: ____________________________ |      
     |                                                                   |      
     |             +----+                         +--------+             |      
     |             | OK |                         | Zurück |             |      
     |             +----+                         +--------+             |      
     |                                                                   |      
     |                                                                   |      
     +-------------------------------------------------------------------+      

Anaconda, das Red Hat Enterprise Linux System-Installationsprogramm, wird ausgeführt - bitte warten...
Prüfe auf Grafikkarte:   ATI Rage XL
Prüfe Monitortyp:   Unknown monitor
Prüfe auf Maustyp:   No - mouse
Starte VNC...
Der VNC Server ist nun in Betrieb.
Bitte zu 87.106.4.172:1 verbinden, um mit der Installation zu beginnen...
Grafische Installation wird gestartet...
XKB extension not present on :1


buaEWrpT



               +--------+ Red Hat Enterprise Linux ES +--------+                
               |                                               |                
               | Welcome to Red Hat Enterprise Linux ES!       |                
               |                                               |                
               |                                               |                
               |        +----+                +------+         |                
               |        | OK |                | Back |         |                
               |        +----+                +------+         |                
               |                                               |                
               |                                               |                
               +-----------------------------------------------+       

====Partitionierung====
          +--------------+ Disk Partitioning Setup +--------------+            
           |                                                       |            
           | Automatic Partitioning sets partitions based on the   |            
           | selected installation type. You also can customize    |            
           | the partitions once they have been created.           |            
           |                                                       |            
           | The manual disk partitioning tool, Disk Druid,        |            
           | allows you to create partitions in an interactive     |            
           | environment. You can set the file system types,       |            
           | mount points, partition sizes, and more.              |            
           |                                                       |            
           |   +---------------+     +------------+    +------+    |            
           |   | Autopartition |     | Disk Druid |    | Back |    |            
           |   +---------------+     +------------+    +------+    |            
           |                                                       |            
           |                                                       |            
           +-------------------------------------------------------+        
Hier wählen wir ''STRG+Z'', um eine Shell zu erhalten.

Type <exit> to return to the install program.

-/bin/sh-3.00# fdisk /dev/sda

+--------------------------------------------------------------------+
Disk /dev/sda: 250.0 GB, 250058301440 bytes
64 heads, 32 sectors/track, 238474 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         192      196592   83  Linux
/dev/sda2             193        4008     3907584   83  Linux
/dev/sda4            4009      238474   240093184    5  Extended
/dev/sda5            4009      238474   240093168   8e  Linux LVM
+--------------------------------------------------------------------+

Jetzt rufen wir die LVM Shell auf:
-/bin/sh-3.00# lvm
lvm> pvcreate /dev/sda5
  Physical volume "/dev/sda5" successfully created
lvm> vgcreate rootvg /dev/sda5
  Volume group "rootvg" successfully created
lvm> lvcreate -L4G -nrootlv rootvg
  Logical volume "rootlv" created
lvm> lvcreate -L4G -nvarlv rootvg
  Logical volume "varlv" created
lvm> lvcreate -L4G -nusrlv rootvg
  Logical volume "usrlv" created
lvm> lvcreate -L4G -ntmplv rootvg
  Logical volume "tmplv" created
lvm> lvcreate -L2G -nswap1lv rootvg
  Logical volume "swap1lv" created
lvm> pvs
  PV         VG     Fmt  Attr PSize   PFree  
  /dev/sda5  rootvg lvm2 a-   228.97G 210.97G
lvm> vgs
  VG     #PV #LV #SN Attr  VSize   VFree  
  rootvg   1   5   0 wz--n 228.97G 210.97G
lvm> lvs
  LV      VG     Attr   LSize Origin Snap%  Move Log Copy% 
  rootlv  rootvg -wi-a- 4.00G                              
  swap1lv rootvg -wi-a- 2.00G                              
  tmplv   rootvg -wi-a- 4.00G                              
  usrlv   rootvg -wi-a- 4.00G                              
  varlv   rootvg -wi-a- 4.00G                     
lvm> exit
  Exiting.
-/bin/sh-3.00# 

Jetzt sieht das ganze schon viel freundlicher aus:

   +----------------------------+ Partitioning +----------------------------+   
   |                                                                        |   
   |      Device        Start   End    Size       Type     Mount Point      |   
   | VG rootvg                        234464M  VolGroup                   # |   
   | LV tmplv                           4096M  foreign                    # |   
   | LV usrlv                           4096M  foreign                    # |   
   | LV swap1lv                         2048M  foreign                    # |   
   | LV varlv                           4096M  foreign                    # |   
   | LV rootlv                          4096M  foreign                    # |   
   | /dev/sda                                                             # |   
   |   sda1                 1    192     191M  ext3                       # |   
   |   sda2               193   4008    3816M  ext3                       # |   
   |   sda4              4009  23847  234466M  Extended                   # |   
   |                                                                        |   
   |    +-----+   +------+   +--------+   +------+   +----+   +------+      |   
   |    | New |   | Edit |   | Delete |   | RAID |   | OK |   | Back |      |   
   |    +-----+   +------+   +--------+   +------+   +----+   +------+      |   
   |                                                                        |   
   |                                                                        |   
   +------------------------------------------------------------------------+   


Achtung: /boot bleibt wie es ist:
   +----------+----------------+ Add Partition +-----------------+----------+   
   |          |                                                  |          |   
   |      Devi|         Mount Point:/boot_______________         | int      |   
   | VG rootvg|                                                  |        # |   
   | LV rootlv|        File System Type:             ext3        |        # |   
   | LV swap1l|                                                  |        # |   
   | LV varlv |        File System Label:           /boot        |        # |   
   | LV usrlv |                                                  |        # |   
   | LV tmplv |        Size (MB):                     191        |        # |   
   | /dev/sda |                                                  |        # |   
   |   sda1   |        File System Option:Leave unchanged        |        # |   
   |   sda2   |                                                  |        # |   
   |   sda4   |                                                  |        # |   
   |          |  +----+   +---------------------+   +--------+   |          |   
   |    +-----|  | OK |   | File System Options |   | Cancel |   | --+      |   
   |    | New |  +----+   +---------------------+   +--------+   | k |      |   
   |    +-----|                                                  | --+      |   
   |          |                                                  |          |   
   |          +--------------------------------------------------+          |   
   +-----------                                                    ---------+   

Das Ergebnis:

   +----------------------------+ Partitioning +----------------------------+   
   |                                                                        |   
   |      Device        Start   End    Size       Type     Mount Point      |   
   | VG rootvg                        234464M  VolGroup                   # |   
   | LV swap1lv                         2048M  swap                       # |   
   | LV rootlv                          4096M  ext3        /              # |   
   | LV varlv                           4096M  ext3        /var           # |   
   | LV usrlv                           4096M  ext3        /usr           # |   
   | LV tmplv                           4096M  ext3        /tmp           # |   
   | /dev/sda                                                             # |   
   |   sda1                 1    192     191M  ext3        /boot          # |   
   |   sda2               193   4008    3816M  ext3                       # |   
   |   sda4              4009  23847  234466M  Extended                   # |   
   |                                                                        |   
   |    +-----+   +------+   +--------+   +------+   +----+   +------+      |   
   |    | New |   | Edit |   | Delete |   | RAID |   | OK |   | Back |      |   
   |    +-----+   +------+   +--------+   +------+   +----+   +------+      |   
   |                                                                        |   
   |                                                                        |   
   +------------------------------------------------------------------------+   


==== Bootloader ====
      +------------------+ Boot Loader Configuration +------------------+       
      |                                                                 |       
      | A few systems will need to pass special options to the kernel   |       
      | at boot time for the system to function properly. If you need   |       
      | to pass boot options to the kernel, enter them now. If you      |       
      | don't need any or aren't sure, leave this blank.                |       
      |                                                                 |       
      |        acpi=off console=ttyS0,57600____________________         |       
      |                                                                 |       
      |         [ ] Force use of LBA32 (not normally required)          |       
      |                                                                 |       
      |             +----+                        +------+              |       
      |             | OK |                        | Back |              |       
      |             +----+                        +------+              |       
      |                                                                 |       
      |                                                                 |       
      +-----------------------------------------------------------------+       


Als Bootloader wird grub vorausgesetzt.
     +-------------------+ Boot Loader Configuration +-------------------+      
     |                                                                   |      
     | The boot manager Red Hat Enterprise Linux ES uses can             |      
     | boot other operating systems as well. You need to tell            |      
     | me what partitions you would like to be able to boot              |      
     | and what label you want to use for each of them.                  |      
     |                                                                   |      
     | Default  Boot label                Device                         |      
     |    *     Red Hat Enterprise Linux ES /dev/rootvg/rootlv         # |      
     |                                                                 # |      
     |                                                                 # |      
     |                                                                 # |      
     |                                                                 # |      
     |                                                                   |      
     |        +----+              +------+              +------+         |      
     |        | OK |              | Edit |              | Back |         |      
     |        +----+              +------+              +------+         |      
     |                                                                   |      
     |                                                                   |      
     +-------------------------------------------------------------------+   

==== Netzwerk ====
                 +----+ Network Configuration for eth0 +-----+                  
                 |                                           |                  
                 | Network Device: eth0                      |                  
                 |                                           |                  
                 | [*] Configure using DHCP                  |                  
                 | [*] Activate on boot                      |                  
                 |                                           |                  
                 | IP Address               ________________ |                  
                 | Netmask                  ________________ |                  
                 |                                           |                  
                 |       +----+              +------+        |                  
                 |       | OK |              | Back |        |                  
                 |       +----+              +------+        |                  
                 |                                           |                  
                 |                                           |                  
                 +-------------------------------------------+            
==== Hostname ====
     +--------------------+ Hostname Configuration +---------------------+      
     |                                                                   |      
     | If your system is part of a larger network where hostnames are    |      
     | assigned by DHCP, select automatically via DHCP. Otherwise,       |      
     | select manually and enter in a hostname for your system. If you   |      
     | do not, your system will be known as 'localhost.'                 |      
     |                                                                   |      
     |        (*) automatically via DHCP                                 |      
     |        ( ) manually               ________________________        |      
     |                                                                   |      
     |             +----+                          +------+              |      
     |             | OK |                          | Back |              |      
     |             +----+                          +------+              |      
     |                                                                   |      
     |                                                                   |      
     +-------------------------------------------------------------------+   
==== Firewall ====
    +-----------------+ Customize Firewall Configuration +-----------------+    
    |                                                                      |    
    | With a firewall, you may wish to allow access to specific services   |    
    | on your computer from others.  Allow access to which services?       |    
    |                                                                      |    
    | Allow incoming: [*] Remote Login (SSH)                               |    
    |                 [*] Web Server (HTTP, HTTPS)                         |    
    |                 [*] File Transfer (FTP)                              |    
    |                 [ ] Mail Server (SMTP)                               |    
    |                                                                      |    
    |                                                                      |    
    |                               +----+                                 |    
    |                               | OK |                                 |    
    |                               +----+                                 |    
    |                                                                      |    
    |                                                                      |    
    +----------------------------------------------------------------------+    
==== SE Linux ====
               +----------+ Security Enhanced Linux +-----------+               
               |                                                |               
               | Security Enhanced Linux (SELinux) provides     |               
               | finer-grained security controls than those     |               
               | available in a traditional Linux system.  It   |               
               | can be set up in a disabled state, a state     |               
               | which only warns about things which would be   |               
               | denied, or a fully active state.               |               
               |                                                |               
               |                  ( ) Disabled                  |               
               |                    (*) Warn                    |               
               |                   ( ) Active                   |               
               |                                                |               
               |        +----+                +------+          |               
               |        | OK |                | Back |          |               
               |        +----+                +------+          |               
               |                                                |               
               |                                                |               
               +------------------------------------------------+     

==== Sprache ====
             +---------------+ Language Support +----------------+              
             |                                                   |              
             | Choose additional languages that you would        |              
             | like to use on this system:                       |              
             |                                                   |              
             |       [ ] French (France)                 #       |              
             |       [ ] French (Luxemburg)              #       |              
             |       [ ] French (Switzerland)            #       |              
             |       [ ] Galician (Spain)                #       |              
             |       [ ] German (Austria)                #       |              
             |       [ ] German (Belgium)                #       |              
             |       [*] German (Germany)                #       |              
             |       [ ] German (Luxemburg)              #       |              
             |                                                   |              
             |  +----+   +------------+   +-------+   +------+   |              
             |  | OK |   | Select All |   | Reset |   | Back |   |              
             |  +----+   +------------+   +-------+   +------+   |              
             |                                                   |              
             |                                                   |              
             +---------------------------------------------------+       
zusätzlich: English (USA)

                    +-----+ Default Language +------+                        
                       |                               |                        
                       | Choose the default language   |                        
                       | for this system:              |                        
                       |                               |                        
                       |      English (USA)     #      |                        
                       |      German (Germany)  #      |                        
                       |                               |                        
                       |    +----+        +------+     |                        
                       |    | OK |        | Back |     |                        
                       |    +----+        +------+     |                        
                       |                               |                        
                       |                               |                        
                       +-------------------------------+        

=== Timezone ====
                    +-------+ Time Zone Selection +-------+                     
                    |                                     |                     
                    | What time zone are you located in?  |                     
                    |                                     |                     
                    | [ ] System clock uses UTC           |                     
                    |                                     |                     
                    | Europe/Berlin                     # |                     
                    | Europe/Bratislava                 # |                     
                    | Europe/Brussels                   # |                     
                    | Europe/Bucharest                  # |                     
                    | Europe/Budapest                   # |                     
                    |                                     |                     
                    |      +----+          +------+       |                     
                    |      | OK |          | Back |       |                     
                    |      +----+          +------+       |                     
                    |                                     |                     
                    |                                     |                     
                    +-------------------------------------+      

==== Software ====
           +-----------------+ Package Defaults +------------------+            
           |                                                       |            
           | The default installation environment includes our     |            
           | recommended package selection.  After installation,   |            
           | additional software can be added or removed using     |            
           | the 'system-config-packages' tool.                    |            
           |                                                       |            
           | However Red Hat Enterprise Linux ES ships with many   |            
           | more applications, and you may customize the          |            
           | selection of software installed if you want.          |            
           |                                                       |            
           |           [*] Customize software selection            |            
           |                                                       |            
           |          +----+                    +------+           |            
           |          | OK |                    | Back |           |            
           |          +----+                    +------+           |            
           |                                                       |            
           |                                                       |            
           +-------------------------------------------------------+   

Wir wählen: "Webserver" und  "Compatibility Arch Support" .

==== Installationsstart ====
                 +---------+ Installation to begin +----------+                 
                 |                                            |                 
                 | A complete log of your installation will   |                 
                 | be in /root/install.log after rebooting    |                 
                 | your system. You may want to keep this     |                 
                 | file for later reference.                  |                 
                 |                                            |                 
                 |       +----+              +------+         |                 
                 |       | OK |              | Back |         |                 
                 |       +----+              +------+         |                 
                 |                                            |                 
                 |                                            |                 
                 +--------------------------------------------+    


Die Installation von 605 Paketen (1807MB) dauert ca. 6 Minuten.

         +----------------------+ Complete +-----------------------+           
          |                                                         |           
          | Congratulations, your Red Hat Enterprise Linux ES       |           
          | installation is complete.                               |           
          |                                                         |           
          | Remove any installation media (diskettes or CD-ROMs)    |           
          | used during the installation process and press          |           
          | <Enter> to reboot your system.                          |           
          |                                                         |           
          |                                                         |           
          |                       +--------+                        |           
          |                       | Reboot |                        |           
          |                       +--------+                        |           
          |                                                         |           
          |                                                         |           
          +---------------------------------------------------------+         

sending termination signals...done                                             
sending kill signals...done
disabling swap...
        /dev/mapper/rootvg-swap1lv
unmounting filesystems...
        /mnt/runtime done
        disabling /dev/loop1
        /proc/bus/usb done
        /proc done
        /dev/pts done
        /sys done
        /tmp/ramfs done
        /selinux done
        /mnt/sysimage/boot done
        /mnt/sysimage/proc done
        /mnt/sysimage/sys done
        /mnt/sysimage/tmp done
        /mnt/sysimage/usr done
        /mnt/sysimage/var done
        /mnt/sysimage/selinux done
        /mnt/sysimage/dev done
        /mnt/sysimage done
rebooting system
Restarting system.

=====Erster Start=====

    GNU GRUB  version 0.95  (632K lower / 3667840K upper memory)

 +-------------------------------------------------------------------------+
 | Red Hat Enterprise Linux ES (2.6.9-22.ELsmp)                            |  
 | Red Hat Enterprise Linux ES-up (2.6.9-22.EL)                            |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |
 |                                                                         |  
 +-------------------------------------------------------------------------+
      Use the ^ and v keys to select which entry is highlighted.
      Press enter to boot the selected OS, 'e' to edit the
      commands before booting, 'a' to modify the kernel arguments
      before booting, or 'c' for a command-line.



====Bootstart====
  Booting 'Red Hat Enterprise Linux ES (2.6.9-22.ELsmp)'

root (hd0,0)
 Filesystem type is ext2fs, partition type 0x83
kernel /vmlinuz-2.6.9-22.ELsmp ro root=/dev/rootvg/rootlv acpi=off console=ttyS
0,57600
   [Linux-bzImage, setup=0x1400, size=0x18fa89]
initrd /initrd-2.6.9-22.ELsmp.img
   [Linux-initrd @ 0x37e6b000, 0x184201 bytes]

Bootdata ok (command line is ro root=/dev/rootvg/rootlv acpi=off console=ttyS0,57600)
Linux version 2.6.9-22.ELsmp (bhcompile@crowe.devel.redhat.com) (gcc version 3.4.4 20050721 (Red Hat 

3.4.4-2)) #1 SMP Mon Sep 19 18:00:54 EDT 2005
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009e000 (usable)
 BIOS-e820: 000000000009e000 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 00000000dfee0000 (usable)
 BIOS-e820: 00000000dfee0000 - 00000000dfee3000 (ACPI NVS)
 BIOS-e820: 00000000dfee3000 - 00000000dfef0000 (ACPI data)
 BIOS-e820: 00000000dfef0000 - 00000000dff00000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
 BIOS-e820: 0000000100000000 - 0000000120000000 (usable)
Enabling SRAT NUMA discovery
SRAT: PXM 0 -> APIC 0 -> Node 0
SRAT: PXM 0 -> APIC 1 -> Node 0
SRAT: Node 0 PXM 0 0-9ffff
SRAT: Node 0 PXM 0 0-dfffffff
SRAT: Node 0 PXM 0 0-11fffffff
Warning: acpi_table_parse(ACPI_SLIT) returned 0!
Bootmem setup node 0 0000000000000000-000000011fffffff
No mptable found.
DMI 2.2 present.
Nvidia board detected. Ignoring ACPI timer override.
Intel MultiProcessor Specification v1.1
    Virtual Wire compatibility mode.
OEM ID: OEM00000 <6>Product ID: PROD00000000 <6>APIC at: 0xFEE00000
Processor #0 15:3 APIC version 17
Processor #1 15:3 APIC version 17
I/O APIC #2 Version 17 at 0xFEC00000.
Processors: 2
Checking aperture...
CPU 0: aperture @ 8000000 size 32 MB
Aperture from northbridge cpu 0 too small (32 MB)
No AGP bridge found
Your BIOS doesn't leave a aperture memory hole
Please enable the IOMMU option in the BIOS setup
This costs you 64 MB of RAM
Mapping aperture over 65536 KB of RAM @ 8000000
Built 1 zonelists
Kernel command line: ro root=/dev/rootvg/rootlv acpi=off console=ttyS0,57600
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 131072 bytes)
time.c: Using 1.193182 MHz PIT timer.
time.c: Detected 2210.221 MHz processor.
Console: colour VGA+ 80x25
Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Memory: 4043660k/4718592k available (2077k kernel code, 0k reserved, 1276k data, 188k init)
Security Scaffold v1.0.0 initialized
SELinux:  Initializing.
SELinux:  Starting in permissive mode
There is already a security framework initialized, register_security failed.
selinux_register_security:  Registering secondary module capability
Capability LSM initialized as secondary
Mount-cache hash table entries: 256 (order: 0, 4096 bytes)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
CPU 0(2) -> Node 0
CPU0: Physical Processor ID: 0
CPU0: Processor Core ID: 0
CPU0: Initial APIC ID: 0
Using local APIC NMI watchdog using perfctr0
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
CPU 0(2) -> Node 0
CPU0: Physical Processor ID: 0
CPU0: Processor Core ID: 0
CPU0: Initial APIC ID: 0
CPU0: Dual Core AMD Opteron(tm) Processor 175 stepping 02
per-CPU timeslice cutoff: 1023.90 usecs.
task migration cache decay timeout: 2 msecs.
Booting processor 1/1 rip 6000 rsp 1011ff85f58
Initializing CPU#1
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
CPU 1(2) -> Node 0
CPU1: Physical Processor ID: 0
CPU1: Processor Core ID: 1
CPU1: Initial APIC ID: 1
Dual Core AMD Opteron(tm) Processor 175 stepping 02
Total of 2 processors activated (8765.44 BogoMIPS).
Using IO-APIC 2
..MP-BIOS bug: 8254 timer not connected to IO-APIC
works.
Using local APIC timer interrupts.
Detected 12.558 MHz APIC timer.
checking TSC synchronization across 2 CPUs: passed.
Brought up 2 CPUs
time.c: Using PIT/TSC based timekeeping.
checking if image is initramfs... it is
NET: Registered protocol family 16
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20040816
ACPI: Interpreter disabled.
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Transparent bridge - 0000:00:09.0
PCI-DMA: Disabling AGP.
PCI-DMA: aperture base @ 8000000 size 65536 KB
PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $
audit: initializing netlink socket (disabled)
audit(1141239737.085:1): initialized
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
SELinux:  Registering netfilter hooks
Initializing Cryptographic API
ksign: Installing public key data
Loading keyring
- Added public key BFA28740EEFE8097
- User ID: Red Hat, Inc. (Kernel Module GPG key)
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Real Time Clock Driver v1.12
Linux agpgart interface v0.100 (c) Dave Jones
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing enabled
tyS0 at I/O 0x3f8 (irq = 4) is a 16550A
RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE-CK804: IDE controller at PCI slot 0000:00:06.0
NFORCE-CK804: chipset revision 242
NFORCE-CK804: not 100% native mode: will probe irqs later
NFORCE-CK804: 0000:00:06.0 (rev f2) UDMA133 controller
NFORCE-CK804: neither IDE port enabled (BIOS)
ide-floppy driver 0.99.newide
usbcore: registered new driver hiddev
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
mice: PS/2 mouse device common for all mice
md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP: routing cache hash table of 32768 buckets, 512Kbytes
TCP: Hash tables configured (established 262144 bind 65536)
Initializing IPsec netlink socket
NET: Registered protocol family 1
NET: Registered protocol family 17
powernow-k8: Found 2 AMD Athlon 64 / Opteron processors (version 1.39.04)
powernow-k8: MP systems not supported by PSB BIOS structure
powernow-k8: init not cpu 0
Freeing unused kernel memory: 188k freed
Red Hat nash version 4.2.1.6 starting
Mounted /proc filesystem
Mounting sysfs
Creating /dev
Starting udev
Loading scsi_mod.SCSI subsystem initialized
ko module
Loading sd_mod.k3ware Storage Controller device driver for Linux v1.26.00.039.
o module
Loading 3w-xxxx.ko module
scsi0 : Found a 3ware Storage Controller at 0xd800, IRQ: 11, P-chip: 1.3
scsi0 : 3ware Storage Controller
Using cfq io scheduler
  Vendor: 3ware     Model: Logical Disk 0    Rev: 1.2 
  Type:   Direct-Access                      ANSI SCSI revision: 00
SCSI device sda: 488395120 512-byte hdwr sectors (250058 MB)
SCSI device sda: drive cache: write back
 sda: sda1 sda2 sda4 < sda5 >
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
Loading dm-mod.ko module
device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel@redhat.com
Loading jbd.ko module
Loading ext3.ko module
Loading dm-mirror.ko module
Loading dm-zero.ko module
Loading dm-snapshot.ko module
Making device-mapper control node
Scanning logical volumes
  Reading all physical volumes.  This may take a while...
  Found volume group "rootvg" using metadata type lvm2
Activating logical volumes
  5 logical volume(s) in volume group "rootvg" now active
Creating root device
Mounting root filesystem
kjournald starting.  Commit interSwitching to newv root
al 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
security:  3 users, 4 roles, 349 types, 25 bools
security:  55 classes, 18746 rules
SELinux:  Completing initialization.
SELinux:  Setting up existing superblocks.
SELinux: initialized (dev dm-0, type ext3), uses xattr
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
SELinux: initialized (dev mqueue, type mqueue), not configured for labeling
SELinux: initialized (dev hugetlbfs, type hugetlbfs), not configured for labeling
SELinux: initialized (dev devpts, type devpts), uses transition SIDs
SELinux: initialized (dev eventpollfs, type eventpollfs), uses genfs_contexts
SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
SELinux: initialized (dev futexfs, type futexfs), uses genfs_contexts
SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
SELinux: initialized (dev proc, type proc), uses genfs_contexts
SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
INIT: version 2.85 booting
SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
                Welcome to Red Hat Enterprise Linux ES
                Press 'I' to enter interactive startup.
Starting udev:  [  OK  ]
Initializing hardware...  storage network audio done[  OK  ]
Configuring kernel parameters:  [  OK  ]
Setting clock  (localtime): Wed Mar  1 19:02:39 CET 2006 [  OK  ]
Setting hostname s15204930:  [  OK  ]
Checking root filesystem
[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/rootvg/rootlv 
/dev/rootvg/rootlv: clean, 5057/524288 files, 60676/1048576 blocks
[  OK  ]
Remounting root filesystem in read-write mode:  [  OK  ]
No Software RAID disks
Setting up Logical Volume Management: [  OK  ]
Checking filesystems
Checking all file systems.
[/sbin/fsck.ext3 (1) -- /boot] fsck.ext3 -a /dev/sda1 
/boot was not cleanly unmounted, check forced.
/boot: 13673/49152 files (3.2% non-contiguous), 186402/196592 blocks
[/sbin/fsck.ext3 (1) -- /tmp] fsck.ext3 -a /dev/rootvg/tmplv 
/dev/rootvg/tmplv: clean, 12/524288 files, 26715/1048576 blocks
[/sbin/fsck.ext3 (1) -- /usr] fsck.ext3 -a /dev/rootvg/usrlv 
/dev/rootvg/usrlv: clean, 64355/524288 files, 380833/1048576 blocks
[/sbin/fsck.ext3 (1) -- /var] fsck.ext3 -a /dev/rootvg/varlv 
/dev/rootvg/varlv: clean, 1253/524288 files, 36912/1048576 blocks
[PASSED]
Mounting local filesystems:  [  OK  ]
Enabling local filesystem quotas:  [  OK  ]
Enabling swap space:  [  OK  ]
INIT: Entering runlevel: 3
Entering non-interactive startup
Checking for new hardware [  OK  ]
Applying iptables firewall rules: [  OK  ]
Starting pcmcia:  [  OK  ]
Setting network parameters:  [  OK  ]
Bringing up loopback interface:  [  OK  ]
Bringing up interface eth0:  [  OK  ]
Starting system logger: [  OK  ]
Starting kernel logger: [  OK  ]
Starting irqbalance: [  OK  ]
Starting portmap: [  OK  ]
Starting NFS statd: [  OK  ]
Starting RPC idmapd: [  OK  ]
Mounting other filesystems:  [  OK  ]
Starting lm_sensors:  [  OK  ]
Starting automount: No Mountpoints Defined[  OK  ]
Starting smartd: [FAILED]
Starting cups: [  OK  ]
Generating SSH1 RSA host key: [  OK  ]
Generating SSH2 RSA host key: [  OK  ]
Generating SSH2 DSA host key: [  OK  ]
Starting sshd:[  OK  ]
Starting xinetd: [  OK  ]
Starting sendmail: [  OK  ]
Starting sm-client: [  OK  ]
Starting console mouse services: [  OK  ]
Starting crond: [  OK  ]
Starting xfs: [  OK  ]
Starting anacron: [  OK  ]
Starting atd: [  OK  ]
Starting system message bus: [  OK  ]
Starting HAL daemon: [  OK  ]

Red Hat Enterprise Linux ES release 4 (Nahant Update 2)
Kernel 2.6.9-22.ELsmp on an x86_64

s15204930 login: root

[root@s15204930 ~]# route add -host 10.255.255.1 eth0
[root@s15204930 ~]# route add -net 0.0.0.0/0 gw 10.255.255.1 eth0

[root@s15204930 ~]# ping 194.25.2.129
PING 194.25.2.129 (194.25.2.129) 56(84) bytes of data.
64 bytes from 194.25.2.129: icmp_seq=0 ttl=57 time=16.0 ms

--- 194.25.2.129 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 16.092/16.092/16.092/0.000 ms, pipe 2
[root@s15204930 ~]# cat > /etc/sysconfig/static-routes << EORT
host 10.255.255.1 eth0
net 0.0.0.0/0 gw 10.255.255.1 eth0
EORT
[root@s15204930 ~]# reboot
INIT: Sending processes the TERM signald Mar
Stopping HAL daemon: [  OK  ]
Stopping system message bus: [  OK  ]
Stopping atd: [  OK  ]
Stopping cups: [  OK  ]
Shutting down xfs: [  OK  ]
Shutting down console mouse services: [  OK  ]
Stopping sshd:[  OK  ]
Shutting down sendmail: [  OK  ]
Shutting down sm-client: [  OK  ]
Shutting down smartd: [FAILED]
Stopping xinetd: [  OK  ]
Stopping crond: [  OK  ]
Stopping NFS statd: [  OK  ]
Stopping portmap: [  OK  ]
Shutting down kernel logger: [  OK  ]
Shutting down system logger: [  OK  ]
Shutting down interface eth0:  [  OK  ]
Shutting down loopback interface:  [  OK  ]
Stopping iptables:  [  OK  ]
Stopping pcmcia:  unloading Kernel Card Services
[  OK  ]
Starting killall:  [  OK  ]
Sending all processes the TERM signal... 
Sending all processes the KILL signal... 
Saving random seed:  
Syncing hardware clock to system time 
Turning off swap:  
Turning off quotas:  
Unmounting pipe file systems:  
Unmounting file systems:  
Please stand by while rebooting the system...
md: stopping all md devices.
md: md0 switched to read-only mode.
3w-xxxx: Shutting down card 0.
3w-xxxx: Shutdown complete.
Synchronizing SCSI cache for disk sda: 
Restarting system.

UP

 
wissen/tips_und_tricks/rootserver/1und1_rootserver_mit_rhel4.txt · Zuletzt geändert: 05.09.2010 20:31
 
Recent changes RSS feed Donate Valid XHTML 1.0 Valid CSS Recent cached RSS feed cacert-signed web site: inhalt.serviert.de