Soft RAID won't boot after update [solved]

Hi everyone, I broke my system with an upgrade and have realised I have no idea what I'm doing at the ramfs prompt at all. The deal is this:
/dev/sda1 /dev/sdb1 /dev/sdc1 are (were?) RAID1 /boot
/dev/sda2 /dev/sdb2 /dev/sdc2 are RAID1 /swap
/dec/sda3 /dev/sdb3 /dec/sdc3 are RAID5/LVM
I did an -Syu which hadn't been done for quite some time and it updated 432 packages. I noted there was a nasty looking warning about dmraid 1.5 so I set that package BACK to 1.4 to be safe. Unfortunately that didn't work, clearly, as I have encountered the problem I was trying to avoid. It appears to not be able to find any of the /dev/md* devices on boot and I get dumped at the ramfs prompt.
[edit] Specifically I get:
md: Will configure md0 (super-block) from /dev/sda3,/dev/sdb3,/dev/sdc3, below.
md: Loading md0: /dev/sda3
md: open failed - cannot start array /dev/md0
:: Running Hook [raid-partitions]
md: Will configure md0 (super-block) from /dev/sda3,/dev/sdb3,/dev/sdc3, below.
md: Loading md0: /dev/sda3
md: open failed - cannot start array /dev/md0
Root device '/dev/mapper/array-root' doesn't exist, attempting to create it
I can mount my drives but I still don't really know what to fix. I tried putting the 1.5 dmraid in. That hasn't helped yet.
Can someone point me some tips in the right direction?
Last edited by esh (2009-12-19 10:01:23)

Thanks saharchie, the live CD really helped. I can't do mount --bind in the emergency console so I couldn't figure out how to get the devfs remounted inside my chroot, but it seems that wasn't too hard in the live cd.
Also B, it was a year ago in October the system was installed. I haven't updated since then because of Python 2.6 issues with the vast quantity of department software. Yes, I guess that Arch probably wasn't the ideal choice for such a machine, but I do like it so
Anyway I appear to have magically found the issue. I think it is less of a dmraid update problem and more of an Arch update problem (or at least a feature change I was unaware of). The fix was editing /etc/mkinitcpio.conf and removing 'raid' and 'raid-partitions' from HOOKS and replacing it with 'mdadm', I then removed the md=0,... parameters from the kernel line in /boot/grub/menu.lst, and did a grub->root(hd0),setup(hd0,0) then did pacman -U kernel26... to reinstall the kernel which did all the initcpio magic for me, this time everything was found and it went merrily on its way.

Similar Messages

  • Software raid won't boot after updating to "mdadm" in mkinitcpio.conf

    After a power outage I've discovetred the config I was using (with raid in mkinitcpio.conf) no longer works, it's mdadm now - that's fine.  I've updated that and re-run mkinitcpio successfully, however my system is unable to boot from the root filesystem /dev/md2 like so:
    Waiting for 10 seconds for device /dev/md2 ...
    Root device '/dev/md2' doesn't exist. Attempting to create it.
    ERROR: Unable to determine major/minor number of root device '/dev/md2'.
    You are being dropped to a recovery shell
        Type 'exit' to try and continue booting
    /bin/sh: can't access tty; job control turned off
    [ramfs /]#
    As far as I can see from reading various threads and http://wiki.archlinux.org/index.php/Ins … AID_or_LVM I'm doing the right things now (although I'm not using lvm at all, which makes the installation document a little confusing).
    I think I've included all the appropriate bits of config here that should be working.  I assume I've missed something fundamental - any ideas?
    menu.lst:
    # (0) Arch Linux
    title  Arch Linux  [/boot/vmlinuz26]
    root   (hd0,0)
    kernel /vmlinuz26 root=/dev/md2 ro
    initrd /kernel26.img
    mkinitcpio.conf:
    HOOKS="base udev autodetect pata scsi mdadm sata filesystems"
    fstab:
    /dev/md1 /boot ext3 defaults 0 1
    /dev/md2 / ext3 defaults 0 1
    mdadm.conf
    ARRAY /dev/md1 level=raid1 num-devices=2 metadata=0.90 UUID=7ae70fa6:9f54ba0a:21
    47a9fe:d45dbc0c
    ARRAY /dev/md2 level=raid1 num-devices=2 metadata=0.90 UUID=20560268:8a089af7:e6
    043406:dbdabe38
    Thanks!

    Hi magec, that's quite helfpul - I've certainly got further.
    Before I was doing this to set up the chroot (which is what is suggested in the wiki article about setting up software raid):
    mdadm -A /dev/md1 /dev/sda1 /dev/sdb1
    mdadm -A /dev/md2 /dev/sda2 /dev/sdb2
    mount /dev/md2 /mnt
    mount /dev/md1 /mnt/boot
    mount -o bind /dev /mnt/dev
    mount -t proc none /mnt/proc
    chroot /mnt /bin/bash
    But based on your suggestion it's working better
    mdadm -A /dev/md1 /dev/sda1 /dev/sdb1
    mdadm -A /dev/md2 /dev/sda2 /dev/sdb2
    mount /dev/md2 /mnt
    mount /dev/md1 /mnt/boot
    mount -t proc none /mnt/proc
    mount -t sysfs none /mnt/sys
    mount -n -t ramfs none /mnt/dev
    cp -Rp /dev/* /mnt/dev
    chroot /mnt /bin/bash
    The boot is now getting further, but now I'm getting:
    md: md2 stopped.
    md: bind<sdb2>
    md: bind<sda2>
    raid1: raid set md2 active with 2 out of 2 mirrors
    md2: detected capacity change from 0 to 32218349568
    mdadm: /dev/md2 has been started with 2 drives.
    md2: Waiting 10 seconds for device /dev/md2 ...
    unknown partition table
    mount: mounting /dev/md2 on /new_root failed: No such device
    ERROR: Failed to mount the real root device.
    Bailing out, you are on your own. Good luck.
    /bin/sh: can't access tty; job contol turned off
    [ramfs /]#
    The bit that really confuses me is this:
    [ramfs /]# cat /proc/mdstat
    Personalities : [raid1]
    md2 : active raid1 sda2[0] sdb2[1]
    31463232 blocks [2/2] [UU]
    md1 : active raid1 sda1[0] sdb1[1]
    208704 blocks [2/2] [UU]
    unused devices: <none>
    [ramfs /]# mount /dev/md2 /new_root
    mount: mounting /dev/md2 on /new_root failed: No such file or directory
    [ramfs /]# ls /dev/md2
    /dev/md2
    [ramfs /]#
    So the array is up, the device node is there but it can't be mounted?  Very strange.
    Last edited by chas (2010-05-02 11:24:09)

  • Mac won't boot after updating to OSX 10.6.4

    I am on my 3rd Mac that won't boot after updating to OSX 10.6.4. One MacBook Pro and two iMacs. I fixed one but the last two are getting the better of me. HD is not fried. Have tried every keyboard shortcut on startup, Disk Warrior via. Target Disk, repairing permissions in single user mode. The machines will not boot off of a CD or DVD and it will not boot up in safe mode. Something in the startup files is preventing startup. I am suspecting Sophos antivirus. I tried to uninstall it and trash it but I think it's still blocking something. Any help would be appreciated.

    Got it! Not sure if removing Sophos had anything to do with it but here's what I did.
    1) boot dead machine in Target Disk Mode (iMac)
    2) boot good machine off Snow Leopard disk (MacBook)
    3) install OS to dead machine- I found this next part very curious. When the install was complete the MacBook restarted as the iMac.
    4) ran software updates
    5) shut down MacBook then shut down iMac
    6) rebooted iMac- all was good
    I actually did this twice because a co-worker had the exact same problem on her MacBook Pro. Got both fixed today.
    Thanks everyone for your help!

  • Mac Mini won't boot after update

    I have a Mac Mini that won't boot after the most recent software update. Since the Mini has only a bluetooth keyboard and mouse, a number of the usual options (hold down shift, etc.) won't work. I've tried a reset, also no luck. At the moment, I can't locate my Tiger install CD either.
    When holding the power button on during boot, I get a series of flashes from the status light on the front (a set of very rapid flashes, followed by a slower set, followed by a slow set) but no startup chime, or fan, or video. My display and power source are both known-good (work fine with my Powerbook)
    Any suggestions, other than buying a hardwired keyboard/mouse?

    Welcome to Apple Discussions!
    The 'newer version of OS X" error occurs because the installer on the DVD you have booted to has by default been set to update the version of MacOS on the hard drive, which of course it can't do because the version of MacOS it is installing is newer. The only way to install in this situation is to select a different option. However, that isn't what you want to do at this point, because as it says, you'll loose your data if you do an 'erase and install'.
    Instead, you should see menus at the top of the screen when it's booted to that install disk. Click the Utilities menu, select Disk Utility, and then click the top entry for the internal hard drive on the left. Once done, click on the 'Repair Disk' button (not Repair Permissions). This will test the drive to make sure it's OK. If it reports errors, and then reports 'error or exit' with the drive not repaired, you will either need a 3rd party application such as Alsoft's Disk Warrior, or to perform an erase and install (which of course you don't want to do at this point because your data is not backed up).
    If the Repair Disk process completes with no errors, next select Repair Permissions, and let that process complete, then reboot the system as normal to see if you can now access the drive.

  • Imac won't boot after update

    hi guys i am new to macs I bought this for my daughter and tried to update.The update said to hold the program button and push power,well now she won't boot up just a grey sreen and what looks like a file with a blinking question mark and a face..
    I have a imac g3 400mhz with 256mb ram
    osx and 9.2 i belive any help appreciated

    The flashing folder icon is your iMac's way of saying, "where is my OS? I can't find an OS!" If this appears briefly and goes away, it's usually because the PRAM was reset recently. The 4.1.9 firmware does reset your PRAM in the process--but only if successful in its task. To fix this temporary hiccup, open the Startup Disk control panel and select the hard drive, then click Restart.
    If this icon continues to flash, there are some steps you can try.
    1. Reset the PRAM via Command (Apple)Option+PR at startup. Hold the keys down until the Mac chimes thrice. If your Mac starts normally after the third chime, end here.
    2. Reinitialize the firmware. Enter Open Firmware mode (CommandOption+OF) and issue the following, pressing Return after each command:
    reset-nvram
    set-defaults
    reset-all
    If successful, the Mac should reboot itself. Stop here if this solves the problem.
    3. If you have the iMac restore disc, or a disc with OS 9.1-9.2.1, boot it and run Disk First Aid from the Utilities folder to repair file structure errors. If you have DiskWarrior or TechTool Pro Classic, you will be able to do more thorough repairs.
    4. If all of the above fail, you can reinstall OS 9 if you still need to do the firmware upgrades, but you should reinitialize the hard drive with Drive Setup if you also want a clean install. Drive Setup can be found in the CD's Utilities folder.
    Nate

  • MacBook won't boot after updates

    My girlfriend has a black 13" MacBook and we ran updates on it today and after it had installed all the updates and it went to reboot it now won't boot up. It turns on and you see the apple logo but then it comes up with a window saying that it needs to be restarted and in the background there is a few lines of "code." I am a PC user so I am doing my best to help her resolve this problem. I do love my iPhone and iTunes so don't hate me too much haha. I did some research on here and read how to boot up in safe mode and I tried to do this but it didn't work. Any help would be greatly appreciated.

    She bought the computer used so unfortunately she does not have the start up disk. She also has not backed up the information on the computer but we are more concerned about getting the computer to work because she cannot afford to buy a new one and she has barely had this one more than a year. The only thing that is connected to the computer is the power cord and the battery is shot so we cannot disconnect the power cord and use the computer. Well I read the instructions on starting up in safe mode so I hold the power button until I hear the obnoxious beep and then hold the shift key down until u see the little gear thing and apple logo. Well I get the apple logo but no gear and then I get the pop up window that I spoke of before telling
    Me to restart and there is the lines of "code" in the back ground.

  • System won't boot after update

    After installing the latest system update (from Leopard 10.5.1 to 10.5.2) on my Dual Processor PowerMac G5, I was able to restart then within 2 minutes a freeze. I couldn't force quit...had to power done.
    Upon powering on, my screen hangs on the gray screen for about a minute (with the clockwise powering up status symbol), then it shuts down on its own. It won't boot into safe mode. In single user mode, it tells me there is a "disk0s2: I/O error" ... Is my hard drive dead? I've tried resetting the PRAM, resetting the PMU button, unplugging all 3rd party devices, but to no avail.
    I'm hopeful I can recover files somehow. Where should I proceed? I'm not sure exactly how the internal drives work. Can I, for instance, unplug and remove the top internal drive and place the 2nd internal drive where the top one was and see if i can boot from that drive?? Thereby determining which drive has the issue? Any advice is appreciated.
    Thanks so much!
    Sean

    Can you boot off the leopard DVD and run the disk utility disk verification on the drive? If it's a hardware problem then there's probably not much you can do. If you have a TM backup of your system then you should be ok, since you can replace the drive and then restore your system to it from the TM backup.

  • X99 Sli Plus Blue bios won't boot after update.

    Hello i tried to update the "blue bios" to the most recent Bios version.Following all the appropriate steps i updated the BioS and got the appropriate message (something like that,i can't remember the exact message) "Update was succesful your system now will reboot".After the reboot blue bios just won't boot.I cleared CMOS,i used the Multi BIOS switch (manual page en-30) to flash the blue bios trying all the versions from 1.7 down to 1.3  but nothing seems to work.The green BioS work fine on the default v1.3.My question is what should i do to make the blue bios work again?
    CPU: Intel - 5820k
    GPU: Radeon Sapphire R9 270x
    Ram: Crucial Ballistix Sport 8GB Kit (4GBx2) DDR4 2400 MT/s (PC4-19200) CL16 SR x8 Unbuffered DIMM 288-Pin Memory BLS2K4G4D240FSA

    I can't see anything about you preparing the stick as instructed.
    Quote from: flobelix on 22-February-15, 01:47:26
    A.) Download >>this<< bios archive and place it on your desktop. Do not decompress.
    B.) Download and install the >>MSI HQ Forum USB flasher<< .
    C.) Insert your FAT32 formatted usb stick.
    D.) Make sure that all win 8 options are disabled. (Fast Boot etc) Also make sure the legacy USB is enabled.
    E.) Start the forum flash tool and select option 1. Then point the tool at the compressed archive we downloaded earlier. Then to your USB Flash Drive.
    F.) Boot to the USB from working bios B.
    G.) Once it booted successfully switch to bios A without powering down or rebooting
    H.) Now follow the directions and let the tool flash bios A with version 1.7

  • Macbook pro won't boot after update to 10.6.8

    Hi everyone,
    Yesterday I bought an used macbook pro (15 inch early 2008). When looking at it, it was in good shape and the previous owner just did a fresh install of snow leopard. I took it home and whas happy with it. In the first two hours of using it, everything was fine. After installing the update to 10.6.8 my macbook needed to be shut down.. After shutting down it started up again but the screen stayed black. I had no idea why. So I rebooted it by pressing the power button. The same problem remained, it seemed to start up (I could hear the harddrive and fan) but it didn't boot into Mac Os. After a couple of attempts, it now shutsdown immediatly after pressing the powerbutton (3 seconds after). No chime or nothing.
    At first I thought this would only be a software problem, because the problem started immediatly after updating. So I put in my snow leopard dvd to boot into that, but I can't even get it to boot into the install dvd. Because it shuts down immediatly after pressing the power button. Then I started suspecting an hardware failure, which would be a very big coincidence to show up immediatly after booting up. These are the things I have tried so far, to no avail:
    - Plugging of the power cord and removing the battery, then pressing and holding the powerbutton for at least 5 sec
    - Holding the option, command, P and R keys during boot.
    - Replacing the memory
    - Replacing the hard drive
    - Unplugging the super drive
    - Starting up holding the d key
    At a certain point I was hoping that It would be an harddrive or memory problem. I replaced both with examples I know for sure they are working. But still the same problem; macbook shuts down  almostimmedialty after pressing the power button.
    There is no warrany anymore, and technical support would cost me 49 euros per incident.. to probably hear that the macbook is beyond repair. I feel i have just thrown away 300 euro's for an nightmare experience. Does anybody now anything to try, i'm really desperate here

    After installing the update to 10.6.8
    What update was that?
    So I put in my snow leopard dvd to boot into that, but I can't even get it to boot into the install dvd.
    Did the previous owner also give you the discs that originally came with the computer?  Those are what you need to troubleshoot with.  You also need disc 1 to run the Apple Hardware Test.
    There is no warrany anymore, and technical support would cost me 49 euros per incident..
    Apple Store and AASP diagnostic testings are free.  Suggest that you take full advantage of it.  This way you can find out exactly what is wrong with your computer.  Post back here with the diagnosis and someone will post DIY repair sites.

  • Flame won't boot after update (1.4)

    Hello,
    I was running nightly FFOS 1.4 on my Flame for last month.
    Today, after update and reboot, phone boots into recovery mode.
    It looks like fastboot (I can see only ThunderSoft(r) logo) but I can't see phone listed with fastboot command.
    It does, however, respond through adb.
    Commands like adb shell are not limited.
    What should I do now? I rather ask for help now, since I have already broken my zte -.-
    This time I didn't do anything strange to it so.. Will be glad for any response. Thank you

    fastboot mode: power button + volume-down button for 10 ~ 20 seconds
    recovery mode: power button + volume-up button for 10 ~ 20 seconds
    firmware update is much easier in linux rather than windows.
    flame phone should be in unplugged and power-off state.

  • Macbook late 2007 won't boot after update

    Hello
    I bought used macbook 2007 late, and I try to update to LION, and everything was good, then os x give me chance to download updates. I downloaded about 2,3 gb and reset notebook.... Then it's started.  It won't boot, just circle is spinning....  On app store i've search for fresh download and purchase but only mountain lion is there to buy.. What can i do now? Where can i find link for app store Lion to buy, so I can install trough recovery.

    Hello
    I bought used macbook 2007 late, and I try to update to LION, and everything was good, then os x give me chance to download updates. I downloaded about 2,3 gb and reset notebook.... Then it's started.  It won't boot, just circle is spinning....  On app store i've search for fresh download and purchase but only mountain lion is there to buy.. What can i do now? Where can i find link for app store Lion to buy, so I can install trough recovery.

  • IMac won't boot after updates,have to reinstall loin from recovery drive

    I have a 27" iMac running 10.7.1 and love it, but every time I do a software update it won't boot, it just goes to white screen with spinning gear forever! I let it set there for an hour and it never changed. I've tried restarting it but it just stops at that point,so I have to restart holding cmd-r to go to the recovery partition and have it reinstall loin,i've tried reparing the drive and perrmissions but it still wont boot unless i reinstall loin. I have five other macs running loin with no problem, so why just my imac?

    Hopefully you have AppleCare. If so, call Apple to see if this if you are afflicted with the dreaded motherboard problem.
    BTW, this area is for discussing iMac G4s. Since you have an iMac G5 you will probably want to make future posts in the iMac G5 discussion area.

  • Mac G5 won't boot after updating

    I am having issues with a PPC Mac G5 not booting after trying to install updates. The computer is my sons PPC G5. It had not been updated in a while so I selected the "software update" which appeared to progress succefully. I believe that the s/w level was a version 10.5.x. It never came back from the reboot. I'm more familiar with the older Macs (v 7/8/9) so I'm having to dig a bit here. I tried to start in safe mode and even in single user mode but no help.
    The symptoms are that the computer plays the startup chime and then eventually shows an icon of a folder with the opposing faces in it. THat goes away leaving a grey screen and the fan goes to high setting. No change from there.
    I have also started it in the mode to see which disks are available and the HD icon appears but has a circle with an X in it at the lower side of the icon. It almost seams like the OS got corrupted.
    Here's my real problem. Since it was my sons computer and came with the OS pre-loaded, I do not have the original software or a boot disk or other bootable tools. Any thoughts would be appreciated. Undo button or restore feature?
    Thanks in advance for the knowledge and help.

    An install disc would really help. Besides eBay & such, You have to call Apple & ask for a Product Specialist to get it, if they still have it.
    Other than that, your best bet is DiskWarrior, you need the CD though.
    http://www.alsoft.com/DiskWarrior/
    But others that may work…
    Drive Genius 2…
    http://www.prosofteng.com/products/drive_genius.php
    TechTool Pro 4…
    http://www.micromat.com/index.php?option=com_content&task=view&id=31&Itemid=83
    BTW, you might enjoy this DiskWarrior review/recommendation...
    http://discussions.apple.com/thread.jspa?messageID=9645801&#9645801

  • MBP won't boot after update!

    I've got a late 2006 model. I'm hoping my problem isn't related to a hardware failure. I left it on during the day, came home, the fan was running hard and it was really hot. Performance was slow, but everything worked.
    it was asking me to restart for the latest update anyway and I'd been putting it off for a day or two, so I decided to restart and let it go through with that.
    But now, it won't boot. It starts up with the grey screen, a bar starts filling at the bottom, gets maybe 1/10th of the way, blinks out then another bar appears, starts filling, gets a little further, then the machine shuts off. Exact same process every time I start it.
    I'm not really familiar with what my options are here.

    alphaflight wrote:
    I've got about 300 GB of space, so that shouldn't be the issue.
    No, that certainly isn't the issue! Just had to make sure.
    If it's not a hardware issue which happened to coincide with the update, the update may be corrupted or not completed. If either is the case, and you have another Mac available, you can try downloading the update from Apple Support Downloads, booting the MBP into FireWire Target Disk Mode (if it will cooperate), and trying to install the update that way. I have not tried this method, so cannot say if it will work or not, but I would try it prior to the alternative, which is to reinstall the OS (or, better yet, clone a backup to the MBP).

  • Macbook pro won't boot after updating to 10.9.3

    I ran the update to 10.9.3 yesterday.  After reboot the Mail program gave me an error that it might not be compatible with the OS.  I restarted, now I get the a progress bar.  It goes for about 30 seconds then powers the macbook down.
    Here's what I've tried.
    1. Booting into recovery mode (both Internet recovery and regular recovery)
    2. I cant repair permissions or repair the disk.  It says that it needs to be reloaded, etc
    3. I tried a reinstall.  I'm getting a disk locked error on the Macintosh HD and recovery HD.
    4. Can't boot into safe boot.  I get a driver error and Mac OS Version: not set yet.
    5. I tried Turning off Encryption.  It won't turn off.
    6. When I choose the startup disk to boot to, it still shows 10.9.2, even though the app store showed that 10.9.3 was installed.
    Pretty much combed the forums, but I'm not really sure what to do at this point.  The machine is out of warranty and I don't have another Mac to do any cloning, usb startup disks, etc.  I made an appointment with the genius bar tomorrow but I wanted to see if there's something else I can try!  Any help would be greatly appreciated!
    Thanks.
    Dan

    Do you have a Time Machine backup? If so, erase the disk and reinstall OS X. HOWEVER, DO NOT CONTINUE UNLESS YOU HAVE A TIME MACHINE BACKUP!!! IF YOU DO NOT HAVE A BACKUP AND STILL DECIDE TO CONTINUE, BE AWARE THAT ALL YOUR DATA WILL BE LOST FOREVER!!!
    Erase and Reinstall OS X
    Note: This will delete all data on the disk. Back up important files before continuing.
    Erasing and then reinstalling OS X can give you a fresh start, making your computer exactly as it was whenever you received it from Apple. This can solve various problems such as corrupt system files.
    Shut down the computer by going to Apple () > Shut Down…
    Select Shut Down or allow the computer to shut down automatically.
    Plug in the MagSafe power adapter into a power source and then connect it to your Mac if you have not already done so.
    Press the Power Button to turn on the computer.
    Press and hold both the R and Command (⌘) keys on the keyboard until the Recovery partition loads. If this does not work, shut down the computer, press the Power Button to turn on the computer, and then hold in the Alt (⌥) button immediately after you press the power button. Then, select the Recovery HD partition to boot up in the Recovery HD partition.
    Select Disk Utility and then choose Continue.
    Select your startup disk (Macintosh HD by default) from the left.
    Select the Erase tab.
    Choose the Format pop-up menu and choose Mac OS Extended (Journaled), enter a name for your disk, and then click Erase.
    After the disk is erased, choose Disk Utility > Quit Disk Utility.
    Select Reinstall OS X and then choose Continue.
    Follow the instructions.
    I hope I helped.
    Austin

Maybe you are looking for

  • My iTunes isn't recognizing my iPod touch.

    My iPod was syncing just fine yesterday.  I restarted both devices & i uninstalled & reinstalled my Itunes.  I have Windows 8, & none of the support tips on the page have Windows 8 instructions.  Any ideas? 

  • Censored Google image search results

    Wanted to sketch a little nude yesterday and happily I opened the Google search in order to get som references. So i entered "nude" in the search field.....but got no hits.... Ehhh, this cant be right, right ? Tried the real Google just to be sure. L

  • Payslips & Bank Details in ERP/ESS

    When the Payroll is being run in ERP can an employee change their Bank Details in ESS? Also when is the new Payslip available in ESS, is after the Payroll has run? Thanks WB

  • Wlc 5508 fus upgrade to v1.9

    Hi folks,  I have a pair of wlc 5508, configured as a HA pair.   I want to upgrade the FUS to ver 1.9. Is it necessary to break the HA pair, and upgrade each wlc individually?

  • Smart Forms - problem

    Hello All,   I have created a new smartform from scratch. I am reading in a structure that contains all my data. I just want to read the values and write out the new document. In the form interface i have Itab1 type my-structure(name). Then in global