This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ASG 7.502 on Toshiba Magnia SG30

I know, I know, this little box hasn't seen any love here in quite a few years, 3 since the last post about a SG20 as far as I saw in my searches.

That being said, it's still a perfect box for running ASG and replacing a standard router for a little more speed and control.  I actually have a couple of these servers and wanted to re-purpose them from their original Red-Hat installs.  For those not familiar with the box, it's a small headless server that was made for SOHO environments as a "all in one" box.  The headless part makes installing an OS on it challenging, and more so because I do not have the 8 pin serial cable for it's console access.

I took a look at shorewall on an Ubuntu 9.10 install and IPCop that was tailored for the SG series and wasn't super impressed with either.  Came across ASG and decided to take a deeper look into what was needed to get it working on my SG30.  Turns out, not much at all needs to be done...

The original install was done on a netbook using a USB to IDE adapter and a USB cd-rom, tried to keep it generic and simple so I wouldn't have any problems.  After I installed it, it took a little tweak in one file to make it boot & become accessible from the WebGUI:

/etc/modules.conf (Modified):

alias eth0 8139too
alias eth1 e100


This was added so that the shutdown command actually powers the box off completely;

/etc/rc.d/rc0.d/S10halt (Modified): (Lines besides those between double remarks are for finding location of addition)
fi


##Added for Toshiba SG LCD panel shutdown
echo -e "\033X"  > /dev/ttyS0
echo -ne "\033"  > /dev/ttyS0
echo -ne "8q"  > /dev/ttyS0
##End of add for Toshiba SG LCD
exec /sbin/halt -i -d -p -f >/dev/null 2>&1 &

# for more safety:
exit 1


Then to keep the LCD clean, I created the following files;

/etc/rc.d/sglcd_startup (Added): (Symbolic link from /etc/rc.d/rc3.d/S00sglcd_startup)
echo -ne "\033X" > /dev/ttyS0

echo -n "   Booting...   " > /dev/ttyS0


/etc/rc.d/sglcd_booted (Added): (Symbolic link from /etc/rc.d/rc3.d/S99sglcd_booted)
sleep 20

echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 20
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0


/etc/rc.d/sglcd_shutdown (Added): (Symbolic link from /etc/rc.d/rc0.d/S00sglcd_shutdown)
echo -ne "\033X" > /dev/ttyS0

echo -ne "Shutting Down...\n" > /dev/ttyS0


/etc/rc.d/sglcd_restart (Added): (Symbolic link from /etc/rc.d/rc6.d/S00sglcd_restart)
echo -ne "\033X" > /dev/ttyS0

echo -n "  Restarting... " > /dev/ttyS0


The "booted" script has a few sleep commands and then sends the same info to the LCD panel a few times.  Reason for this in the booting process it looks like a program is probing the serial ports and it causes strings of junk to appear.  With the sleep commands, you will get some junk, but it will be gone in a few seconds.  Otherwise these are just for aesthetics only, this way I can at least visibly see when it's booting, restarting, or powering off.

One other thing I did do was modify the menu.lst file for startup so that the console will be redirected to the back serial port. (Just in case I do ever order up the cable or if others need it) Here's the changes I made to it:
# To enable serial console please uncomment the following two lines.

# You may also want to add a line like 'console=ttyS0,38400' to the
# 'kernel' lines below
serial --unit=1 --speed=115200
terminal --timeout=0 serial

title  Astaro Security Gateway V7
root (hd0,0)
kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly nosmp noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd

title  Astaro Security Gateway V7 (previous)
root (hd0,0)
kernel /boot/vmlinuz.previous root=/dev/disk/by-label/root vga=normal video=ofonly nosmp noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd.previous

title  Astaro Security Gateway V7 (rescue)
root (hd0,0)
kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly nosmp nolapic noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd


To make sure I have an easy way to recover this system I made a disk image of it using dd.  The image is only 1.4GB and restores to the HDD quickly, also if others would like to load it on their SG30, it has minimal modifications to the original install and shouldn't cause a problem with updates and such. Also, the  In the future I'll probably be tweaking the LCD files and possibly adding some backup routines for mirroring the HDD.

I would be willing to share my HDD image with anyone here that would like it, but I won't post any links in here unless the moderators and such around here give me the green flag to do so.  The image itself is of the system IMMEDIATELY after the initial install and before the system has rebooted after that.  I basically found the files I needed to change, did another fresh install and modified the files I listed above to have a good baseline to work from. Basically as it would have been installed locally on the machine instead of a netbook, with as little modifications as possible to have a clean appearing machine.

So mods, is it a violation of any rules to share such an image?  Just want to make sure...

Also of note, the system is nice and responsive, and although I haven't loaded it yet and am still getting familiar with everything, I think it will be just fine for my 30MB cable connection.  Idle CPU is around 2-4% and uses 50-60% of memory after bootup, not too bad.  I did install the 7.503 and the 7.504 updates with no troubles, took less then 5 minutes to install and start the reboot for 7.504.  

Anyone else still using these things? [:$]

Ohhh, and this is my first post.. Be gentle... [:D]


This thread was automatically locked due to age.
  • Going to do a quick final check on it now, think I've got it ready to be released to the masses... I noticed a funky thing when restoring a v7.509 backup,  I needed to bring v8 completely and set it up like it was a new install, do an up2date, reboot, THEN restore my backup.  If I didn't do this I noticed up2date never worked at all,  at least this was my experience when restoring from the profile on a USB drive at first boot.

    Also, if anyone from Astaro is listening, what's the chances of a modified oem.data file and matching hash file that JUST sets the installer to automatic?  Nothing else would need to be modified in the oem.data file and that would let people get this installed without the serial cable...  I know they placed that block on purpose and I wouldn't want to override it without their blessing. [:D]
  • Just reinstalled from my CD image and it all worked as expected!! [:D]

    Here's a log from the serial console:

    *****************************************************************************
    *   AMIBIOS System Configuration (C) 1985-2001, American Megatrends Inc.,   *
    ********************[364m****************************************************
    * Main Processor   : Intel(R) Celeron(TM) CPU                               *
    *****************************************************************************
    * Math Processor   : Built-In         * Base Memory Size : 640KB            *
    * Floppy Drive A:  : None             * Ext. Memory Size : 1023MB           *
    * Floppy Drive B:  : None             * Serial Port(s)   : 3F8,2F8          *
    * Display Type     : Monochrome       * Parallel Port(s) : None             *
    * AMIBIOS Date     : 05/09/2003       * Processor Clock  : 1.20GHz          *
    * External Cache   : 256KB,Enabled    * Power Management : Enabled          *
    * SDRAM at DIMM(s) : 1,2              * VCM at DIMM(s)   :                  *
    *****************************************************************************
    * Hard Disk(s)       Cyl   Head Sector Size     LBA   32Bit Block PIO  UDMA *
    *                                               Mode  Mode  Mode  Mode Mode *
    * Primary Master   : 19152 16   255    40008MB  LBA   On    16Sec  4   5    *
    *****************************************************************************
    * PCI Devices:                                                              *
    * Onboard USB Controller, IRQ11         Onboard USB Controller, IRQ11       *
    * Onboard IDE, IRQ14                    Onboard Ethernet, IRQ7              *
    * Onboard Ethernet, IRQ15               Onboard CardBus Bridge              *
    * Onboard CardBus Bridge                Onboard CardBus Bridge              *
    * Onboard USB Controller, IRQ11         Onboard USB Controller, IRQ15       *
    *****************************************************************************

        GNU GRUB  version 0.97  (639K lower / 1047488K upper memory)

     +-------------------------------------------------------------------------+
     | Astaro Security Gateway V8.1                                            |
     | Astaro Security Gateway V8.1 (previous)                                 |
     | Astaro Security Gateway V8.1 (rescue)                                   |
     | Memtest86+                                                              |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     +-------------------------------------------------------------------------+
          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, or 'c' for a command-line.


       The highlighted entry will be booted automatically in 1 seconds.

      Booting 'Astaro Security Gateway V8.1'

    root (hd0,0)
     Filesystem type is ext2fs, partition type 0x83
    kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly rootf
    lags=data=ordered splash=silent  console=ttyS1,115200
       [Linux-bzImage, setup=0x3400, size=0x185a30]
    initrd /boot/initrd
       [Linux-initrd @ 0x37d3a000, 0x2b5241 bytes]

    [    0.000000] Linux version 2.6.32.24-81.g73e70cd-default (abuild@axgbuild) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #1 Wed Jan 26 11:33:06 UTC 2011
    [    0.000000] KERNEL supported cpus:
    [    0.000000]   Intel GenuineIntel
    [    0.000000]   AMD AuthenticAMD
    [    0.000000]   NSC Geode by NSC
    [    0.000000]   Cyrix CyrixInstead
    [    0.000000]   Centaur CentaurHauls
    [    0.000000]   Transmeta GenuineTMx86
    [    0.000000]   Transmeta TransmetaCPU
    [    0.000000]   UMC UMC UMC UMC
    [    0.000000] BIOS-provided physical RAM map:
    [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000c0000 - 00000000000c8000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [    0.000000]  BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
    [    0.000000]  BIOS-e820: 000000003fff0000 - 000000003fff8000 (ACPI data)
    [    0.000000]  BIOS-e820: 000000003fff8000 - 0000000040000000 (ACPI NVS)
    [    0.000000]  BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    [    0.000000] DMI 2.3 present.
    [    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    [    0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000
    [    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [    0.000000] RAMDISK: 37d3a000 - 37fef241
    [    0.000000] Allocated new RAMDISK: 00100000 - 003b5241
    [    0.000000] Move RAMDISK from 0000000037d3a000 - 0000000037fef240 to 00100000 - 003b5240
    [    0.000000] ACPI: RSDP 000fa6c0 00014 (v00 AMI   )
    [    0.000000] ACPI: RSDT 3fff0000 00028 (v01 AMIINT VIA_P6   00000010 MSFT 00000097)
    [    0.000000] ACPI: FACP 3fff0030 00081 (v01 AMIINT VIA_P6   00000011 MSFT 00000097)
    [    0.000000] ACPI: DSDT 3fff00c0 0299E (v01    VIA APOLLO-P 00001000 MSFT 0100000D)
    [    0.000000] ACPI: FACS 3fff8000 00040
    [    0.000000] 135MB HIGHMEM available.
    [    0.000000] 887MB LOWMEM available.
    [    0.000000]   mapped low ram: 0 - 377fe000
    [    0.000000]   low ram: 0 - 377fe000
    [    0.000000]   node 0 low ram: 00000000 - 377fe000
    [    0.000000]   node 0 bootmap 00011000 - 00017f00
    [    0.000000] (7 early reservations) ==> bootmem [0000000000 - 00377fe000]
    [    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
    [    0.000000]   #1 [0001000000 - 000135d314]    TEXT DATA BSS ==> [0001000000 - 000135d314]
    [    0.000000]   #2 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
    [    0.000000]   #3 [000135e000 - 0001364120]              BRK ==> [000135e000 - 0001364120]
    [    0.000000]   #4 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
    [    0.000000]   #5 [0000100000 - 00003b5241]      NEW RAMDISK ==> [0000100000 - 00003b5241]
    [    0.000000]   #6 [0000011000 - 0000018000]          BOOTMAP ==> [0000011000 - 0000018000]
    [    0.000000] Zone PFN ranges:
    [    0.000000]   DMA      0x00000010 -> 0x00001000
    [    0.000000]   Normal   0x00001000 -> 0x000377fe
    [    0.000000]   HighMem  0x000377fe -> 0x0003fff0
    [    0.000000] Movable zone start PFN for each node
    [    0.000000] early_node_map[2] active PFN ranges
    [    0.000000]     0: 0x00000010 -> 0x0000009f
    [    0.000000]     0: 0x00000100 -> 0x0003fff0
    [    0.000000] Using APIC driver default
    [    0.000000] ACPI: PM-Timer IO Port: 0x4008
    [    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
    [    0.000000] APIC: disable apic facility
    [    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bff80000)
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259967
    [    0.000000] Kernel command line: root=/dev/disk/by-label/root vga=normal video=ofonly rootflags=data=ordered splash=silent  console=ttyS1,115200
    [    0.000000] bootsplash: silent mode.
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Enabling fast FPU save and restore... done.
    [    0.000000] Enabling unmasked SIMD FPU exception support... done.
    [    0.000000] Initializing CPU#0
    [    0.000000] Initializing HighMem for node 0 (000377fe:0003fff0)
    [    0.000000] Memory: 1032456k/1048512k available (1907k kernel code, 15248k reserved, 895k data, 264k init, 139208k highmem)
    [    0.000000] virtual kernel memory layout:
    [    0.000000]     fixmap  : 0xfffa4000 - 0xfffff000   ( 364 kB)
    [    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    [    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
    [    0.000000]       .init : 0xc12bd000 - 0xc12ff000   ( 264 kB)
    [    0.000000]       .data : 0xc11dcedc - 0xc12bce48   ( 895 kB)
    [    0.000000]       .text : 0xc1000000 - 0xc11dcedc   (1907 kB)
    [    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [    0.000000] Hierarchical RCU implementation.
    [    0.000000] NR_IRQS:288
    [    0.000000] Console: colour dummy device 80x25
    [    0.000000] console [ttyS1] enabled
    [    0.000000] Fast TSC calibration using PIT
    [    0.000000] Detected 1208.435 MHz processor.
    [    0.003011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2416.87 BogoMIPS (lpj=1208435)
  • (Too long for one post)
    [    0.005070] Security Framework initialized
    [    0.006046] Mount-cache hash table entries: 512
    [    0.008289] CPU: L1 I cache: 16K, L1 D cache: 16K
    [    0.010002] CPU: L2 cache: 256K
    [    0.011010] mce: CPU supports 5 MCE banks
    [    0.012041] Performance Events:
    [    0.013004] no APIC, boot with the "lapic" boot parameter to force-enable it.
    [    0.014001] no hardware sampling interrupt available.
    [    0.015003] p6 PMU driver.
    [    0.016006] ... version:                0
    [    0.017001] ... bit width:              32
    [    0.018001] ... generic registers:      2
    [    0.019001] ... value mask:             00000000ffffffff
    [    0.020001] ... max period:             000000007fffffff
    [    0.021000] ... fixed-purpose events:   0
    [    0.022000] ... event mask:             0000000000000003
    [    0.023000] CPU: Intel(R) Celeron(TM) CPU                1200MHz stepping 04
    [    0.026009] Checking 'hlt' instruction... OK.
    [    0.031881] ACPI: Core revision 20090903
    [    0.038685] ACPI: setting ELCR to 0200 (from 8880)
    [    0.041208] Astaro Security Gateway V8 Packet Filter, secunetwall 2 Packet Filter BSI-DSZ-CC-0696: 'core' loaded
    [    0.042030] NET: Registered protocol family 16
    [    0.044461] ACPI: bus type pci registered
    [    0.047158] PCI: PCI BIOS revision 2.10 entry at 0xfdb51, last bus=1
    [    0.047997] PCI: Using configuration type 1 for base access
    [    0.051958] bio: create slab  at 0
    [    0.059997] ACPI: Interpreter enabled
    [    0.060995] ACPI: (supports S0 S5)
    [    0.062999] ACPI: Using PIC for interrupt routing
    [    0.071280] ACPI: Power Resource [URP1] (off)
    [    0.072061] ACPI: Power Resource [URP2] (off)
    [    0.073039] ACPI: Power Resource [FDDP] (off)
    [    0.074038] ACPI: Power Resource [LPTP] (off)
    [    0.076159] ACPI: No dock devices found.
    [    0.077242] ACPI: PCI Root Bridge [PCI0] (0000:00)
    [    0.078544] pci 0000:00:07.4: quirk: region 6000-607f claimed by vt82c686 HW-mon
    [    0.079003] pci 0000:00:07.4: quirk: region 0400-040f claimed by vt82c686 SMB
    [    0.080080] pci 0000:00:08.0: PME# supported from D1 D2 D3hot D3cold
    [    0.080995] pci 0000:00:08.0: PME# disabled
    [    0.082992] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot
    [    0.083993] pci 0000:00:09.0: PME# disabled
    [    0.085042] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.085993] pci 0000:00:0a.0: PME# disabled
    [    0.087041] pci 0000:00:0a.1: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.087993] pci 0000:00:0a.1: PME# disabled
    [    0.090009] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.090992] pci 0000:00:0b.0: PME# disabled
    [    0.093023] pci 0000:00:0c.2: PME# supported from D0 D3hot
    [    0.093991] pci 0000:00:0c.2: PME# disabled
    [    0.113195] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [    0.117732] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [    0.121126] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 12 14 *15)
    [    0.125319] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [    0.130055] vgaarb: loaded
    [    0.131162] usbcore: registered new interface driver usbfs
    [    0.132039] usbcore: registered new interface driver hub
    [    0.133055] usbcore: registered new device driver usb
    [    0.135162] PCI: Using ACPI for IRQ routing
    [    0.136332] Switching to clocksource tsc
    [    0.137074] pnp: PnP ACPI init
    [    0.140141] ACPI: bus type pnp registered
    [    0.147263] pnp: PnP ACPI: found 8 devices
    [    0.151394] ACPI: ACPI bus type pnp unregistered
    [    0.191371] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    [    0.197305] pci 0000:00:01.0:   IO window: disabled
    [    0.387076] pci 0000:00:01.0:   MEM window: disabled
    [    0.392049] pci 0000:00:01.0:   PREFETCH window: disabled
    [    0.397461] pci 0000:00:0a.0: CardBus bridge, secondary bus 0000:02
    [    0.403737] pci 0000:00:0a.0:   IO window: 0x001000-0x0010ff
    [    0.409406] pci 0000:00:0a.0:   IO window: 0x001400-0x0014ff
    [    0.415074] pci 0000:00:0a.0:   PREFETCH window: 0x40000000-0x43ffffff
    [    0.421608] pci 0000:00:0a.0:   MEM window: 0x44000000-0x47ffffff
    [    0.427709] pci 0000:00:0a.1: CardBus bridge, secondary bus 0000:06
    [    0.433989] pci 0000:00:0a.1:   IO window: 0x001800-0x0018ff
    [    0.439656] pci 0000:00:0a.1:   IO window: 0x001c00-0x001cff
    [    0.445325] pci 0000:00:0a.1:   PREFETCH window: 0x48000000-0x4bffffff
    [    0.451858] pci 0000:00:0a.1:   MEM window: 0x4c000000-0x4fffffff
    [    0.457960] pci 0000:00:0b.0: CardBus bridge, secondary bus 0000:0a
    [    0.464240] pci 0000:00:0b.0:   IO window: 0x002000-0x0020ff
    [    0.469909] pci 0000:00:0b.0:   IO window: 0x002400-0x0024ff
    [    0.475575] pci 0000:00:0b.0:   PREFETCH window: 0x50000000-0x53ffffff
    [    0.482108] pci 0000:00:0b.0:   MEM window: 0x54000000-0x57ffffff
    [    0.488547] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
    [    0.494339] pci 0000:00:0a.0: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    0.502274] pci 0000:00:0a.1: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    0.510419] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    [    0.516172] pci 0000:00:0b.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [    0.524253] NET: Registered protocol family 2
    [    0.528704] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [    0.536183] asg_cluster [INFO]: Registered IPv4 okfn
    [    0.541280] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [    0.554835] TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.563039] TCP: Hash tables configured (established 131072 bind 65536)
    [    0.569690] TCP reno registered
    [    0.573120] NET: Registered protocol family 1
    [    0.577575] pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    [    0.583348] pci 0000:00:07.0: Disabling VIA external APIC routing
    [    0.589527] pci 0000:00:09.0: Firmware left e100 interrupts enabled; disabling
    [    0.596955] Trying to unpack rootfs image as initramfs...
    [    0.783570] Freeing initrd memory: 2772k freed
    [    0.798276] audit: initializing netlink socket (disabled)
    [    0.803727] type=2000 audit(1300258202.803:1): initialized
    [    0.815630] highmem bounce pool size: 64 pages
    [    0.820160] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [    0.826780] msgmni has been set to 1750
    [    0.830835] alg: No test for stdrng (krng)
    [    0.835096] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    [    0.842507] io scheduler noop registered
    [    0.846463] io scheduler cfq registered (default)
    [    0.980639] Linux agpgart interface v0.103
    [    0.984846] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.991319] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [    0.997855] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [    1.005620] 00:02: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [    1.012089] 00:03: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [    1.021285] brd: module loaded
    [    1.024395] Uniform Multi-Platform E-IDE driver
    [    1.029107] ide-gd driver 1.18
    [    1.032257] RED: starting, Copyright (c) 2009 Sven Schnelle 
    [    1.040530] PNP: No PS/2 controller found. Probing ports directly.
    [    1.047219] serio: i8042 KBD port at 0x60,0x64 irq 1
    [    1.052198] serio: i8042 AUX port at 0x60,0x64 irq 12
    [    1.057830] mice: PS/2 mouse device common for all mice
    [    1.063365] input: PC Speaker as /devices/platform/pcspkr/input/input0
    [    1.069969] EDAC MC: Ver: 2.1.0 Jan 26 2011
    [    1.074358] cpuidle: using governor ladder
    [    1.078485] cpuidle: using governor menu
    [    1.082723] TCP cubic registered
    [    1.085983] ASG cluster v2.0 loaded with support for 32 nodes. (C) Astaro AG 2006-2009
    [    1.093930] asg_cluster [init]: loaded warp helper with conntrack rb size 160 kb (total 8192)
    [    1.102472] asg_cluster [init]: header size 280
    [    1.107029] Using IPI Shortcut mode
    [    1.111759] Freeing unused kernel memory: 264k freed
    doing fast boot
    [    1.262224] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
    [    1.327437] SCSI subsystem initialized
    [    1.390662] scsi0 : pata_via
    [    1.393996] scsi1 : pata_via
    [    1.400140] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfc00 irq 14
    [    1.407379] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfc08 irq 15
    [    1.590671] ata1.00: ATA-6: HTS548040M9AT00, MG2OA53A, max UDMA/100
    [    1.597333] ata1.00: 78140160 sectors, multi 16: LBA48
    [    1.608664] ata1.00: configured for UDMA/100
    [    1.613431] scsi 0:0:0:0: Direct-Access     ATA      HTS548040M9AT00  MG2O PQ: 0 ANSI: 5
    Creating device nodes with udev
    [    1.718290] udevd version 128 started
    [    2.077978] sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
    [    2.113525] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [    2.120526] ehci_hcd 0000:00:0c.2: PCI INT C -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.129319] ehci_hcd 0000:00:0c.2: EHCI Host Controller
    [    2.134804] ehci_hcd 0000:00:0c.2: new USB bus registered, assigned bus number 1
    [    2.142609] ehci_hcd 0000:00:0c.2: irq 11, io mem 0xdffffe00
    [    2.164169] sd 0:0:0:0: [sda] Write Protect is off
    [    2.209168] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [    2.295182]  sda: sda1 sda2 sda3 sda4 
    [    2.426814] usb usb1: configuration #1 chosen from 1 choice
    [    2.442442] hub 1-0:1.0: USB hub found
    [    2.446437] hub 1-0:1.0: 4 ports detected
    [    2.495592] sd 0:0:0:0: [sda] Attached SCSI disk

  • [    2.553162] uhci_hcd: USB Universal Host Controller Interface driver
    [    2.559956] uhci_hcd 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.568789] uhci_hcd 0000:00:07.2: UHCI Host Controller
    [    2.574334] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 2
    [    2.582244] uhci_hcd 0000:00:07.2: irq 11, io base 0x0000e800
    [    2.588339] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
    [    2.595460] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    2.603048] usb usb2: Product: UHCI Host Controller
    [    2.608272] usb usb2: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    2.616037] usb usb2: SerialNumber: 0000:00:07.2
    [    2.752153] usb 1-2: new high speed USB device using ehci_hcd and address 2
    [    2.813081] usb usb2: configuration #1 chosen from 1 choice
    [    2.831619] hub 2-0:1.0: USB hub found
    [    2.835740] hub 2-0:1.0: 2 ports detected
    [    2.840134] uhci_hcd 0000:00:07.3: PCI INT D -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.848959] uhci_hcd 0000:00:07.3: UHCI Host Controller
    [    2.854440] uhci_hcd 0000:00:07.3: new USB bus registered, assigned bus number 3
    [    2.862284] uhci_hcd 0000:00:07.3: irq 11, io base 0x0000ec00
    [    2.868382] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
    [    2.875487] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    2.883052] usb usb3: Product: UHCI Host Controller
    [    2.888197] usb usb3: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    2.895953] usb usb3: SerialNumber: 0000:00:07.3
    [    2.989690] usb usb3: configuration #1 chosen from 1 choice
    [    3.000632] hub 3-0:1.0: USB hub found
    [    3.004818] hub 3-0:1.0: 2 ports detected
    [    3.009351] uhci_hcd 0000:00:0c.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [    3.018664] uhci_hcd 0000:00:0c.0: UHCI Host Controller
    [    3.024318] uhci_hcd 0000:00:0c.0: new USB bus registered, assigned bus number 4
    [    3.032256] uhci_hcd 0000:00:0c.0: irq 11, io base 0x0000d800
    [    3.038506] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    [    3.045755] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.053512] usb usb4: Product: UHCI Host Controller
    [    3.058708] usb usb4: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    3.066656] usb usb4: SerialNumber: 0000:00:0c.0
    [    3.084872] usb 1-2: New USB device found, idVendor=059b, idProduct=005b
    [    3.092175] usb 1-2: New USB device strings: Mfr=73, Product=80, SerialNumber=98
    [    3.100075] usb 1-2: Product: CDRW19202EXT2-B  Ì¤
    [    3.105086] usb 1-2: Manufacturer: Iomega
    [    3.109379] usb 1-2: SerialNumber: 4401E57705D5C0C3F
    [    3.197275] usb 1-2: configuration #2 chosen from 1 choice
    [    3.239204] usb usb4: configuration #1 chosen from 1 choice
    [    3.253793] hub 4-0:1.0: USB hub found
    [    3.257977] hub 4-0:1.0: 2 ports detected
    [    3.276014] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 15
    [    3.282268] uhci_hcd 0000:00:0c.1: PCI INT B -> Link[LNKC] -> GSI 15 (level, low) -> IRQ 15
    [    3.291182] uhci_hcd 0000:00:0c.1: UHCI Host Controller
    [    3.296703] uhci_hcd 0000:00:0c.1: new USB bus registered, assigned bus number 5
    [    3.304454] uhci_hcd 0000:00:0c.1: irq 15, io base 0x0000dc00
    [    3.310627] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    [    3.317794] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.325340] usb usb5: Product: UHCI Host Controller
    [    3.330436] usb usb5: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    3.338207] usb usb5: SerialNumber: 0000:00:0c.1
    [    3.453716] usb usb5: configuration #1 chosen from 1 choice
    [    3.465901] hub 5-0:1.0: USB hub found
    [    3.470128] hub 5-0:1.0: 2 ports detected
    Waiting for device /dev/disk/by-label/root to appear:  ok
    fsck from util-linux-ng 2.16
    [/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/sda6
    root: clean, 26872/352256 files, 372387/1407687 blocks
    fsck succeeded. Mounting root device read-write.
    Mounting root /dev/disk/by-label/root
    mount -o rw,data=ordered -t ext3 /dev/disk/by-label/root /root
    [    4.889387] kjournald starting.  Commit interval 5 seconds
    [    4.896539] EXT3 FS on sda6, internal journal
    [    4.901191] EXT3-fs: mounted filesystem with ordered data mode.
    INIT: version 2.86 booting
    System Boot Control: Running /etc/init.d/boot
    Mounting sysfs at /sys                                               done
    Mounting debugfs at /sys/kernel/debug                                done
    Copying static /dev content                                          done
    :: Early Toshiba Magnia SG setup starting...
    :: Adding agetty serial redirect to /etc/inittab...
    :: Installing Toshiba Magnia LCD support files...
    :: Copying LCD startup/shutdown scripts to /etc/init.d...
    :: Installing Toshiba Magnia RPMs...
    warning: /sa2/rpms/compat-libstdc++-7.3-2.96.110.i386.rpm: Header V3 DSA signature: NOKEY, key ID db42a60e
    :: Early Toshiba Magnia SG setup complete...
    Starting udevd:                                                      done
    Loading drivers, con[    9.049333] udevd version 128 started
    figuring devices: [    9.380990] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [    9.507887] Initializing USB Mass Storage driver...
    [    9.528910] 8139too Fast Ethernet driver 0.9.28
    [    9.577994] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    [    9.584483] e100: Copyright(c) 1999-2006 Intel Corporation
    [    9.597716] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    [    9.606719] ACPI: Power Button [PWRB]
    [    9.610762] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [    9.618588] ACPI: Power Button [PWRF]
    [    9.718773] parport_pc: VIA parallel port disabled in BIOS
    [    9.792457] processor LNXCPU:00: registered as cooling_device0
    [    9.798909] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 7
    [    9.804962] 8139too 0000:00:08.0: PCI INT A -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    [    9.813852] eth0: RealTek RTL8139 at 0xf8240f00, 00:10:c6:XX:XX:XX, IRQ 7
    [    9.838180] rtc_cmos 00:05: RTC can wake from S4
    [    9.843341] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [    9.849845] rtc0: alarms up to one year, y3k, 114 bytes nvram
    [    9.877758] scsi2 : SCSI emulation for USB Mass Storage devices
    [    9.907730] e100 0000:00:09.0: PCI INT A -> Link[LNKC] -> GSI 15 (level, low) -> IRQ 15
    [    9.938217] e100 0000:00:09.0: PME# disabled
    [    9.942970] e100: eth1: e100_probe: addr 0xdfffe000, irq 15, MAC addr 00:10:c6:XX:XX:XX
    [    9.983258] usbcore: registered new interface driver usb-storage
    [    9.989605] USB Mass Storage support registered.
  • And the last of it:

    [   10.071745] 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004)
    [   11.690161] ppdev: user-space parallel port driver
                                                                         done
    Activating swap-devices in /etc/fstab...
    [   11.926217] Adding 1052248k swap on /dev/sda2.  Priority:-1 extents:1 across:1052248k                                                             done
    Setting kernel variables ( sysctl.conf kernel.conf network.conf )    done
    Checking file systems...
    fsck from util-linux-ng 2.16
    Checking all file systems.
    [/sbin/fsck.ext3 (1) -- /boot] fsck.ext3 -a /dev/sda1
    boot: clean, 38/90360 files, 29338/361428 blocks
    [/sbin/fsck.ext3 (1) -- /opt/inst] fsck.ext3 -a /dev/sda3
    inst: clean, 500/65808 files, 117305/263064 blocks
    [/sbin/fsck.ext3 (1) -- /var/storage] fsck.ext3 -a /dev/sda5
    storage: clean, 1811/3197152 files, 297202/3196927 blocks
    [/sbin/fsck.ext3 (1) -- /var/log] fsck.ext3 -a /dev/sda7
    log: clean, 23/4198176 files, 306771/4196973 blocks
    [/sbin/fsck.ext3 (1) -- /tmp] fsck.ext3 -a /dev/sda8
    [   14.999397] scsi 2:0:0:0: CD-ROM            IOMEGA   CDRW38402EXT2-B  UOS1 PQ: 0 ANSI: 0
    [   15.008982] scsi 2:0:0:0: Attached scsi generic sg1 type 5
    [   15.128866] sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda pop-up
    [   15.136395] Uniform CD-ROM driver Revision: 3.20
    tmp: clean, 17/68832 files, 12877/275105 blocks                      done
    Mounting local file systems...
    proc on /proc type proc (rw)
    sysfs on /sys type sysfs (rw)
    debugfs on /sys/kernel/debug type debugfs (rw)
    [   15.209685] loop: module loaded
    tmpfs on /dev type tmpfs (rw,mode=0755)
    tmpfs on /dev/shm type tmpfs (rw,mode=1777)
    devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
    [   15.589001] sr0: CDROM not ready yet.
    [   15.657754] kjournald starting.  Commit interval 5 seconds
    [   15.663557] EXT3-fs: mounted filesystem with ordered data mode.
    /dev/sda1 on /boot type ext3 (ro,noatime,data=ordered)
    [   15.710256] kjournald starting.  Commit interval 5 seconds
    [   15.716342] EXT3 FS on sda5, internal journal
    [   15.720990] EXT3-fs: mounted filesystem with ordered data mode.
    /dev/sda5 on /var/storage type ext3 (rw,noatime,data=ordered)
    [   15.793969] kjournald starting.  Commit interval 5 seconds
    [   15.800048] EXT3 FS on sda7, internal journal
    [   15.804681] EXT3-fs: mounted filesystem with ordered data mode.
    /dev/sda7 on /var/log type ext3 (rw,noatime,data=ordered)
    [   15.927045] kjournald starting.  Commit interval 5 seconds
    [   15.942473] EXT3 FS on sda8, internal journal
    [   15.947113] EXT3-fs: mounted filesystem with ordered data mode.
    /dev/sda8 on /tmp type ext3 (rw,noatime,data=ordered)                done
    System Boot Control: The system has been                             set up
    System Boot Control: Running /etc/init.d/boot.local
    :: Activating Swap Space                                             done
    :: rebuild ld.so.cache                                               done
    :: Clean up temporary files and directories                          done
    INIT: Entering runlevel: 3
    Master Resource Control: previous runlevel: N, switching to runlevel:3
    :: Starting Initial Configuration                                    done
    :: Starting Logging                                                  done
    :: Loading ACPI modules ( button )                                   done
    :: Starting acpid                                                    done
    :: Starting D-Bus daemon                                             done
    :: Starting IP packet filter                                         done
    :: setting up chroots
       chroot: afc                                                       done
       chroot: bind                                                      done
       chroot: dhcpc                                                     done
       chroot: dhcps                                                     done
       chroot: ftp                                                       done
       chroot: ha_proxy                                                  done
       chroot: http                                                      done
       chroot: httpd                                                     done
       chroot: ident                                                     done
       chroot: ipsec                                                     done
       chroot: ntp                                                       done
       chroot: openvpn                                                   done
       chroot: pop3                                                      done
       chroot: ppp                                                       done
       chroot: pppoe                                                     done
       chroot: pptp                                                      done
       chroot: pptpc                                                     done
       chroot: quagga                                                    done
       chroot: reverseproxy                                              done
       chroot: smtp                                                      done
       chroot: snmp                                                      done
       chroot: snort                                                     done
       chroot: socks                                                     done
       chroot: xorp                                                      done
    :: Loading CPUFreq modules (CPUFreq not supported)
    :: Starting HAL daemon                                               done
    :: Starting NIC Initialization                                       done
    :: Starting Configuration daemon                                     done
    :: Starting Sysmon daemon                                            done
    :: Starting Console Support                                          done
    :: Starting Astaro User Authentication                               done
    :: Backup restore                                                    skipped
    :: Starting Notification daemon                                      done
    :: Starting WebAdmin                                                 done
    :: Starting Cron                                                     done
    :: Starting service at daemon                                        done
    :: Initializing the PostgreSQL database                              done
    :: Starting PostgreSQL                                               done
    no schema upgrades found
    :: Starting SSH   generate SSH (version 2) RSA host key              done
       generate SSH (version 2) DSA host key                             done
       generate SSH (version 2) DSA remote logfile key                   done
       starting SSH daemon                                               done
    :: Starting ulogd                                                    done
    :: Starting MiddleWare                                               done
    :: Starting Self Monitor NG                                          done
    :: Loading Toshiba Magnia SG processes...
    :: Starting Toshiba Magnia SG LCD application...
    :: All Toshiba Magnia SG processes loaded...
    Master Resource Control: runlevel 3 has been                         reached
    Skipped services in runlevel 3:                                  restore

                                                                                                                                                                                                                                                    
    X.X.X.X
    host.domain.example login:



    Not sure anyone wanted to see that, but it shows what the setup process goes through when installing. If anyone is curious how the hardware is detected and such, it's all in there...

    I'll be getting the ISO up on a site where people can grab it from, I'll post it up tomorrow with a new thread!
  • Also for what it's worth, here's what's in the device- log after first installation boot and a power cycle.
    Adding agetty serial redirect to /etc/inittab at Wed Mar 16 01:50:08 CDT 2011
    (For serial console redirection)


    Installing Toshiba Magnia LCD support files at Wed Mar 16 01:50:08 CDT 2011
    sa2/
    sa2/conf/
    sa2/bin/
    sa2/triggers/
    sa2/conf/lcdkbd/
    sa2/triggers/shutdown/
    sa2/conf/lcdkbd.conf
    sa2/bin/setlcd
    sa2/bin/setlcdq
    sa2/bin/isclrpasswd
    sa2/bin/lcdkbd
    sa2/triggers/shutdown/10lcdkbd
    sa2/rpms/
    sa2/rpms/compat-libstdc++-7.3-2.96.110.i386.rpm
    sa2/rpms/lcdkbdMW-2.4.2-1.i386.rpm
    sa2/init_d-script-backups/
    sa2/conf/lcdkbd/000lcdkbd.lcd
    sa2/conf/lcdkbd/mezzanine.lcd
    sa2/conf/lcdkbd/tst.lcd
    sa2/sg20_customization.pdf
    sa2/init_d-script-backups/sglcd_startup
    sa2/init_d-script-backups/sglcd_shutdown
    sa2/init_d-script-backups/sglcd_restart
    sa2/init_d-script-backups/sglcd_poweroff
    sa2/init_d-script-backups/sglcd_booted
    sa2/init_d-script-backups/S00boot.sglcd
    sa2/bin/shutdown


    Copying LCD startup/shutdown scripts to /etc/init.d at Wed Mar 16 01:50:08 CDT 2011


    Installing Toshiba Magnia RPMs (For LCD support) at Wed Mar 16 01:50:08 CDT 2011
    Preparing...                ##################################################
    compat-libstdc++            ##################################################


    --Loading Toshiba Magnia SG processes at Wed Mar 16 01:51:19 CDT 2011--


    eth devices not up count 1 at Wed Mar 16 01:51:19 CDT 2011
    eth devices not up count 2 at Wed Mar 16 01:51:20 CDT 2011
    eth devices not up count 3 at Wed Mar 16 01:51:21 CDT 2011
    eth devices not up count 4 at Wed Mar 16 01:51:22 CDT 2011
    eth devices not up count 5 at Wed Mar 16 01:51:24 CDT 2011
    eth devices not up count 6 at Wed Mar 16 01:51:25 CDT 2011
    eth devices up at Wed Mar 16 01:51:26 CDT 2011

    eth0      Link encap:Ethernet  HWaddr 00:10:C6:XX:XX:XX 
              inet addr:X.X.X.X  Bcast:X.X.X.X  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:34 errors:0 dropped:0 overruns:0 frame:0
              TX packets:28 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:2902 (2.8 Kb)  TX bytes:2698 (2.6 Kb)
              Interrupt:7 Base address:0xf00 

    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:375 errors:0 dropped:0 overruns:0 frame:0
              TX packets:375 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:140640 (137.3 Kb)  TX bytes:140640 (137.3 Kb)


    IPs to be pinged:
    X.X.X.X

    PING X.X.X.X (X.X.X.X) 56(84) bytes of data.
    64 bytes from X.X.X.X: icmp_seq=1 ttl=64 time=0.208 ms

    --- X.X.X.X ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.208/0.208/0.208/0.000 ms

    Host X.X.X.X results - Dead=0, Check Count: 1


    Booting lcdkbd (Toshiba LCD application) now at Wed Mar 16 01:51:42 CDT 2011



    --All Toshiba Magnia SG processes loaded at Wed Mar 16 01:51:45 CDT 2011--



    -=*=- Front panel shutdown started at Wed Mar 16 02:07:51 CDT 2011 -=*=-



     -=*=- System will power off at 25 seconds from Wed Mar 16 02:08:10 CDT 2011 -=*=-




    --Loading Toshiba Magnia SG processes at Wed Mar 16 02:10:27 CDT 2011--


    eth devices not up count 1 at Wed Mar 16 02:10:28 CDT 2011
    eth devices not up count 2 at Wed Mar 16 02:10:29 CDT 2011
    eth devices not up count 3 at Wed Mar 16 02:10:30 CDT 2011
    eth devices not up count 4 at Wed Mar 16 02:10:31 CDT 2011
    eth devices not up count 5 at Wed Mar 16 02:10:32 CDT 2011
    eth devices not up count 6 at Wed Mar 16 02:10:33 CDT 2011
    eth devices not up count 7 at Wed Mar 16 02:10:34 CDT 2011
    eth devices up at Wed Mar 16 02:10:35 CDT 2011

    eth0      Link encap:Ethernet  HWaddr 00:10:C6:XX:XX:XX  
              inet addr:X.X.X.X  Bcast:X.X.X.X  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:21 errors:0 dropped:0 overruns:0 frame:0
              TX packets:23 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:1697 (1.6 Kb)  TX bytes:2265 (2.2 Kb)
              Interrupt:7 Base address:0xef00 

    eth1      Link encap:Ethernet  HWaddr 00:10:C6:XX:XX:XX  
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:245 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:15467 (15.1 Kb)  TX bytes:342 (342.0 b)

    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:303 errors:0 dropped:0 overruns:0 frame:0
              TX packets:303 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:97334 (95.0 Kb)  TX bytes:97334 (95.0 Kb)


    IPs to be pinged:
    X.X.X.X

    PING X.X.X.X (X.X.X.X) 56(84) bytes of data.
    64 bytes from X.X.X.X: icmp_seq=1 ttl=64 time=0.181 ms

    --- X.X.X.X ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.181/0.181/0.181/0.000 ms

    Host X.X.X.X results - Dead=0, Check Count: 1


    Booting lcdkbd (Toshiba LCD application) now at Wed Mar 16 02:10:51 CDT 2011



    --All Toshiba Magnia SG processes loaded at Wed Mar 16 02:10:54 CDT 2011--


    After this log I restored my backup and I'm right back to where I was 45 minutes ago.  I'm happy with having an easy disaster recovery plan. [:)]

    EDIT:

    Going to let this upload while I get some sleep, when all 3 files are up you'll be able to get it from this link:
    http://www.mediafire.com/?aiev3pm81p56a

    Total download size is about 482mb and you will need winrar or a rar capable program.  I've also included rar recovery entries, if they're damaged while downloading, winrar should be able to rebuild them with the "repair" option.  That's the main reason it's larger then the original ISO, extracted it's 461mb compared to the 447mb of the original disc.  I included a few extras that make the whole package take up about 20mb on the HDD when all is said and done.

    I'll make a proper thread tomorrow!
  • New thread for this is made!  If you install it, please leave some feedback there!

    https://community.sophos.com/products/unified-threat-management/astaroorg/f/52/t/27923