My secure root HOWTO

I was recently trying to think of a good way to secure my root account the best way possible and came up with this idea. It works great for me so I thought I'd share.
This method will involve three major users including the sudo program. First being a regular everyday user which we'll call user. Second is the root user and third will be an intermediate user we'll call foo. To access the root account, who's password will be locked, the user will have to have permissions to access foo which in turn will have access to root via sudo su -. Basically, foo is the root user but the idea here is that first a remote hacker must know the regular user's account and password (which may have ssh access) then must know the intermediate users name and password (ssh denied) to sudo to root.
Here's the basic setup:
1) Log on to root in two real terminals by entering alt+f1 and alt+f2. You'll have a backup in case something goes wrong
2)lock the password so no possible value will be accepted
# passwd -l root
3)create the intermediate user. This should be a unique name as half the battle is knowing the right username.
useradd -s /bin/bash foo
4)set it's password. This should be a strong value as it is effectively your sudo root's password
passwd foo
5)allow foo access to /bin/su -
visudo
root ALL=(ALL) ALL
foo ALL=(ALL) NOPASSWD:/bin/su -
6)create a getroot script which allow the regular user to switch user to foo and execute sudo su -
#!/bin/bash
/bin/su foo -c "/usr/bin/sudo su -"
place it in /usr/bin/ and change owner to root:foo and permissions 0750. This will deny all but members of the foo group to access it:
chown root:foo /usr/bin/getroot
chmod 0750 /usr/bin/getroot
7)add the regular user to the wheel group so he/she may be able to switch over to foo and the foo group to execute the getroot script.
gpasswd -a user wheel
gpasswd -a user foo
Now you can test it out. Make sure you leave your other root window open in case something doesn't work and exit out of your current terminal. Login as the regular user and run the getroot script. You will be prompted for foo's password which will then switch you into root.
Using ssh:
you'll want to disable root login as well as foo otherwise we've nearly defeated our purpose. Open up /etc/ssh/sshd_config:
PermitRootLogin no
DenyUsers foo

seems good.. or you can just deny su  access to all users who are not in the wheel group and just have foo in that group, it would be *almost* as secure.. great contribution though, i might give it a shot in my server box

Similar Messages

  • Easy and secure MTA howto?

    Hey,
    Do you know of any good tutorials on setting up MTA's like qmail/exim/whatever. I was googling for it but all the howtos seem to be so big that I'd have spend the rest of my life just to read them;) And i'm only interested in some small mail trasport agent that can work with SSL/TLS/SSH/...
    If you have some links with a nice&clear Howto on this subject i'd really be eager to read such a guide. 8)

    # Maintainer: judd <[email protected]>
    pkgname=exim
    pkgver=4.43
    pkgrel=1
    pkgdesc="A Message Transfer Agent"
    url="http://www.exim.org/"
    backup=(etc/mail/aliases etc/mail/exim.conf etc/logrotate.d/exim)
    install=exim.install
    depends=('db' 'pcre' 'openssl')
    provides=('smtp-server')
    conflicts=('smtp-server')
    source=(ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/exim-$pkgver.tar.bz2 aliases newaliases exim exim.logrotate)
    md5sums=('f8f646d4920660cb5579becd9265a3bf' '4874006f0585253ddab027d441009757'
    'ea39f58bffc16f5e3bbe59dffcf09449' '4395f4e6e1604e182ac254f28c627842'
    'd788c26f86a9d72a0aebb3b849fe74f2')
    # NOTE: If you're building this as an unprivileged user and don't have exim
    # already installed, the build will fail. It requires an exim
    # user/group (79/79) to build.
    build() {
    # An exim user is required to build this
    if [ ! `egrep '^exim' /etc/passwd` ]; then
    echo "==> Adding user/group exim (temporarily)"
    groupadd -g 79 exim
    useradd -u 79 -g exim -d /var/spool/exim -s /bin/false exim
    cleanup=1
    else
    cleanup=0
    fi
    cd $startdir/src/$pkgname-$pkgver
    sed -i 's|tail -1|tail -n -1|g' scripts/Configure-config.h
    # Make some configuration changes
    sed 's|^BIN_DIRECTORY.*$|BIN_DIRECTORY=/usr/sbin|' src/EDITME |
    sed 's|^CONFIGURE_FILE.*$|CONFIGURE_FILE=/etc/mail/exim.conf|' |
    sed 's|^EXIM_USER.*$|EXIM_USER=exim|' |
    sed 's|^COMPRESS_COMMAND.*$|COMPRESS_COMMAND=/bin/gzip|' |
    sed 's|^ZCAT_COMMAND.*$|ZCAT_COMMAND=/bin/zcat|' |
    sed 's|^CHOWN_COMMAND.*$|CHOWN_COMMAND=/bin/chown|' |
    sed 's|^CHGRP_COMMAND.*$|CHGRP_COMMAND=/bin/chgrp|' |
    sed 's|^EXIM_MONITOR.*$||' |
    sed 's|^# MAX_NAMED_LIST.*$|MAX_NAMED_LIST=16|' |
    sed 's|^# SUPPORT_MAILDIR.*$|SUPPORT_MAILDIR=yes|' |
    sed 's|^# (PID_FILE_PATH=/var)/lock/exim.pid.*$|1/run/exim.pid|' |
    sed 's|^EXIM_GROUP.*$|EXIM_GROUP=exim|' |
    sed 's|^# SUPPORT_TLS.*$|SUPPORT_TLS=yes|' |
    sed 's|^# TLS_LIBS.*$|TLS_LIBSS=-L/usr/local/openssl/lib -lssl -lcrypto|' |
    sed 's|^# TLS_INCLUDE.*$|TLS_INCLUDE=-I/usr/local/openssl/include/|' |
    sed 's|^# (LOG_FILE_PATH=/var/log/exim)_%slog.*$|1/%slog|' >Local/Makefile
    make || return 1
    install -D -m644 ../exim.logrotate $startdir/pkg/etc/logrotate.d/exim
    install -D -m644 doc/exim.8 $startdir/pkg/usr/man/man8/exim.8
    mkdir -p $startdir/pkg/var/spool/exim $startdir/pkg/etc/mail
    $startdir/pkg/var/log/exim $startdir/pkg/usr/lib
    chown root.exim $startdir/pkg/var/spool/exim $startdir/pkg/var/log/exim
    touch $startdir/pkg/var/log/exim/{mainlog,paniclog,rejectlog}
    chown exim.exim $startdir/pkg/var/log/exim/{mainlog,paniclog,rejectlog}
    chmod 640 $startdir/pkg/var/log/exim/{mainlog,paniclog,rejectlog}
    chmod 770 $startdir/pkg/var/spool/exim $startdir/pkg/var/log/exim
    cd scripts
    cp exim_install exim_install.old
    sed "s|/etc/aliases|$startdir/pkg/etc/aliases|g" exim_install.old >exim_install
    cd ../build-Linux-i386
    inst_dest=$startdir/pkg/usr/sbin inst_conf=$startdir/pkg/etc/mail/exim.conf ../scripts/exim_install
    cd $startdir/src/exim-$pkgver/src
    sed "s|/etc/aliases|/etc/mail/aliases|g" configure.default |
    sed "s|SYSTEM_ALIASES_FILE|/etc/mail/aliases|g"
    >$startdir/pkg/etc/mail/exim.conf
    rm -f $startdir/pkg/etc/aliases
    cp $startdir/src/aliases $startdir/pkg/etc/mail
    cp $startdir/src/newaliases $startdir/pkg/usr/sbin
    cd $startdir/pkg/usr/sbin
    ln -s exim mailq
    ln -s exim rmail
    ln -s exim rsmtp
    ln -s exim runq
    ln -s exim sendmail
    # fhs compliancy
    ln -s exim $startdir/pkg/usr/lib/sendmail
    mkdir -p $startdir/pkg/etc/rc.d
    cp $startdir/src/exim $startdir/pkg/etc/rc.d
    if [ $cleanup -eq 1 ]; then
    echo "==> Removing user/group exim"
    userdel exim
    fi
    return 0
    basically, I just added the lines:
      sed 's|^# SUPPORT_TLS.*$|SUPPORT_TLS=yes|' |
      sed 's|^# TLS_LIBS.*$|TLS_LIBSS=-L/usr/local/openssl/lib -lssl -lcrypto|' |
      sed 's|^# TLS_INCLUDE.*$|TLS_INCLUDE=-I/usr/local/openssl/include/|' | 
    There is something wrong though, because it errors out on TLS, but at least it is trying to build it now. I think there might be something wrong with the lib and include paths you specified.

  • Tomcat security

    Hi,
    I am using tomcat container security for securing part of my application, however, I have the following problem.
    How can I run multiple secure applications on a single tomcat server if there is only one authentication realm defined in tomcat server.xml?
    thanks,

    hi,vjave
    You can use the "security manager" of the Tomcat to limit the actions that tomcat will do to your computer.
    For example, if you are using Tomcat4.0,you can modify $CATALINA_HOME/conf/catalina.policy file to prevent someone do something bad to your computer through Tomcat.
    The URL is : http://jakarta.apache.org/tomcat/tomcat-4.0-doc/security-manager-howto.html
    good luck!
    Wang yu

  • About OLS integration with OID whitepaper on OTN...

    My OID Support customer tried to follow the steps in this how-to but it failed:
    http://www.oracle.com/technology/deploy/security/db_security/howtos/ols_oid-how-to.html
    PROBLEM:
    Encountered an error at step 13. on page 6. If the DB had OLS the error statement was:
    " Error updating provisioning profile -ERROR.
    Provisioning Profile Already Exists..
    The Provisioning Profile for the
    Application could not be created." ,
    else the error messages was,
    " Error updating provisioning profile -ERROR [LDAP:error code 50 - Insufficient  Access Rights]
    The Provisioning Profile for the Application could not be created.",
    CAUSE:
    That cn=dbcreator account in the how-to does not have priviledges to create prov profile.
    SOLUTION:
    The OLS doc's says to use "an admin" so my customer tried root "cn=orcladmin" instead and it worked. (I have no idea if using this account would present any problems for OLS later on though.)
    REQUEST:
    Whomever wrote that how-to - please modify the steps to avoid this problem.
    Tx

    Hi there,
    thanks for reporting this glitch; will take care of this shortly, Peter

  • How can I stop the last character of my password from being displayed?

    Sorry, I'm sure this would have been asked before, but I couldn't locate it..
    When unlocking my iPad, how can I stop it from displaying the last character of my password to everyone in the vicinity? This has got to be the fastest way to find out someone's password (just look at the screen as they type their 'secure' password!?). Having the iPad display your password letter by letter is really not acceptable when working in a non-secure environment.
    Is there a setting somewhere, or will this be addressed in a new iOS, or just ignored as a 'that's the way it is'?
    Thanks in advance,
    Andy

    AdventureBear wrote:
    Hi,
    This may have been the way it has been on iOS since 2008 (not sure about that though), however I know (based on working in the IT industry for 20 years) that nobody on this planet can successfully argue that it would be 'acceptable security practice', for me to display 'every last letter' as I type of a secure 'root' password on my screen every day when you log in... Nobody would think it acceptable to display even their LAN/Domain password on the screen in this same manner. So why is iOS different?!
    iOS on a phone (it used to be argued) doesn't need to be very secure as it is almost entirely phone numbers and email addresses that are being stored. However in recent years when the applications got better, and tablets came out, security became a much bigger issue as more and more people started using the functions of 'smart' phones to store more 'sensitive' data.
    Kind regards,
    Andy
    Are you suggesting that someone looking over your shoulder can't see the keys that you're tapping with your fingers? In the interest of security, i would never, under any circumstances, enter a password when others are around.

  • Access a file which is in local network via jsp

    i try to access some files from a system in the network.
    i couldn't make it through jsp and servlet
    im using tomcat webserver.
    but in core java it works finely.
    the below r the example code...
    core java coding(It works)
    class a
    public static void main(String ar[])
      String a="//software2/d$/Daily Shipment Backup";
          java.io.File f=new java.io.File(a);
          if(f.exists())   //whether the directory exists
      System.out.println("Exists");
          else
      System.out.println("Error");
    }jsp coding
    <html>
    <%
      String a="//software2/d$/Daily Shipment Backup";
             java.io.File f=new java.io.File(a);
          if(f.exists())
      out.println("Exists");
          else
      out.println("Error");
    %>
    </html>

    Tomcat (And other JSP/Servlet containers) have security restrictions which disallow you from accessing the local/remote file system. You will probably need to modify your security policy settings
    I believe Tomcat stores this file in $CATALINA_HOME/conf/catalina.policy
    You can read more here.
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/security-manager-howto.html
    Hope this helps
    -Jeff

  • Won't Restore, Error 29. What Now?

    This is a phone which I don't know the history of. It was given to me today to see if I can get it going. So far, when attempting to restore it, I get "Error 29". I believe OS4 was installed prior to this issue but I'm not sure. Here's the details. Thanks for your help.
    2010-09-01 22:35:46.000 iTunes[1936:20b]: restore library built Jun 4 2010 at 01:46:12
    2010-09-01 22:35:46.000 iTunes[1936:20b]: iTunes: iTunes 9.2.1
    2010-09-01 22:35:46.000 iTunes[1936:20b]: iTunes: Software payload version: 8A400
    2010-09-01 22:35:46.000 iTunes[1936:148cf]: iTunes: Specifying UOI boot image
    2010-09-01 22:35:46.000 iTunes[1936:148cf]: requested restore behavior: Erase
    2010-09-01 22:35:46.000 iTunes[1936:148cf]: amai: AMAuthInstallPlatformCreateBufferFromNativeFilePath: open failed: No such file or directory
    2010-09-01 22:35:46.000 iTunes[1936:148cf]: amai: AMAuthInstallHttpMessageSendSync: httpRequest=<CFHTTPMessage 0x19d92cf0>{url = http://gs.apple.com:80/TSS/controller?action=2; request = POST /TSS/controller?action=2 HTTP/1.1}
    2010-09-01 22:35:47.000 iTunes[1936:148cf]: amai: AMAuthInstallRequestSendSync: received tss response (server version: 0.6.31-b2)
    2010-09-01 22:35:48.000 iTunes[1936:148db]: iBoot build-version = iBoot-889.24
    2010-09-01 22:35:48.000 iTunes[1936:148db]: iBoot build-style = RELEASE
    2010-09-01 22:35:48.000 iTunes[1936:148db]: DeviceRequest failed: 0xe000404f
    2010-09-01 22:35:48.000 iTunes[1936:148db]: command device request for 'getenv radio-error' failed: 2008
    2010-09-01 22:35:48.000 iTunes[1936:148db]: radio-error not set
    2010-09-01 22:35:48.000 iTunes[1936:148db]: unable to open device_map.txt: No such file or directory
    2010-09-01 22:35:48.000 iTunes[1936:148db]: <Recovery Mode Device 0x1b03ef20>: production fused device
    2010-09-01 22:35:48.000 iTunes[1936:148db]: <Recovery Mode Device 0x1b03ef20>: operation 4 progress -1
    2010-09-01 22:35:48.000 iTunes[1936:148db]: bootstrapping restore with iBEC
    2010-09-01 22:35:48.000 iTunes[1936:148db]: <Recovery Mode Device 0x1b03ef20>: operation 31 progress -1
    2010-09-01 22:35:49.000 iTunes[1936:148db]: <Recovery Mode Device 0x1b03ef20>: Recovery mode succeeded
    2010-09-01 22:35:49.000 iTunes[1936:20b]: device disconnected (isDFU = 0)
    2010-09-01 22:35:53.000 iTunes[1936:20b]: device connected (isDFU = 0)
    2010-09-01 22:35:53.000 iTunes[1936:20b]: iTunes: SCEP 3
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: iBoot build-version = iBoot-889.24
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: iBoot build-style = RELEASE
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: DeviceRequest failed: 0xe000404f
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: command device request for 'getenv radio-error' failed: 2008
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: radio-error not set
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 44 progress -1
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: requested restore behavior: Erase
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: unable to open device_map.txt: No such file or directory
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: production fused device
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 4 progress -1
    2010-09-01 22:35:53.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 42 progress -1
    2010-09-01 22:35:54.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 5 progress -1
    2010-09-01 22:35:55.000 iTunes[1936:1862b]: DeviceRequest failed: 0xe000404f
    2010-09-01 22:35:55.000 iTunes[1936:1862b]: command device request for 'getenv ramdisk-delay' failed: 2008
    2010-09-01 22:35:57.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 6 progress -1
    2010-09-01 22:35:58.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 7 progress -1
    2010-09-01 22:35:59.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 8 progress -1
    2010-09-01 22:35:59.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: operation 9 progress -1
    2010-09-01 22:35:59.000 iTunes[1936:1862b]: <Recovery Mode Device 0x1c09d160>: Recovery mode succeeded
    2010-09-01 22:36:04.000 iTunes[1936:20b]: device disconnected (isDFU = 0)
    2010-09-01 22:36:04.000 iTunes[1936:20b]: _AMRecoveryModeDeviceFinalize: 0x1c09d160
    2010-09-01 22:36:08.000 iTunes[1936:20b]: iTunes: received kAMDeviceAttached action, device 0x1c0b4a30, AFC error 0XE8000028
    2010-09-01 22:36:08.000 iTunes[1936:20b]: iTunes: Restore-mode device appeared, device 0x1c0b4a30
    2010-09-01 22:36:08.000 iTunes[1936:20b]: iTunes: Creating restore mode device with usbMuxDeviceID 0X1
    2010-09-01 22:36:08.000 iTunes[1936:20b]: <Restore Device 0x1c0c5070>: operation 3 progress -1
    2010-09-01 22:36:08.000 iTunes[1936:20b]: <Restore Device 0x1c0c5070>: operation 4 progress -1
    2010-09-01 22:36:08.000 iTunes[1936:20b]: Supports value queries: 1
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 44 progress -1
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: requested restore behavior: Erase
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: device did not return saved USB log
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: device did not return saved panic log
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: previous restore failed with exit status 0x100
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: connected to service com.apple.mobile.restored
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: using protocol version 12
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: unable to open device_map.txt: No such file or directory
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: board config = n88ap
    2010-09-01 22:36:08.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 28 progress -1
    2010-09-01 22:36:22.000 iTunes[1936:1788f]: previous restore failed: sOTGDevice::start : start finished
    AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    AppleM2ScalerCSCDriver: Added framebuffer device: AppleM2TVOut id: 81b4f800
    IOSDIOController::enumerateSlot(): Searching for SDIO device in slot: 0
    IOSDIOController::enumerateSlot(): Found SDIO I/O device. Function count(1), memory(0)
    read new style signature 0x43313133 (line:405)
    [FTL:MSG] VSVFL Register [OK]
    [FTL:MSG] VFL Init [OK]
    IOSDIOIoCardDevice::parseFn0CIS(): Device manufacturer ID 0x2d0, Product ID 0x4325
    IOSDIOIoCardDevice::parseFn0CIS(): Manufacturer: ""
    IOSDIOIoCardDevice::parseFn0CIS(): Product: ""
    IOSDIOIoCardDevice::parseFn0CIS(): ProductInfo0: "s=D1"
    IOSDIOIoCardDevice::parseFn0CIS(): ProductInfo1: "P=N88 m=3.2"
    AppleBCMWLAN::init(): AppleBCMWLAN-42 Aug 4 2010 18:51:11
    AppleBCMWLAN::init(): Starting with debug level: 4, debug flags: 00000000
    AppleBCMWLAN::init(): AppleBCMWLAN-42 Aug 4 2010 18:51:11
    AppleBCMWLAN::init(): Starting with debug level: 4, debug flags: 00000000
    [FTL:MSG] VFL_Open [OK]
    [FTL:MSG] YAFTL Register [OK]
    found suitable IOMobileFramebuffer: AppleM2CLCD
    display-scale = 1
    display-rotation = 0
    found PTP interface
    [FTL:MSG] FTL_Open [OK]
    AppleSynopsysOTGDevice - Configuration: PTP
    AppleSynopsysOTGDevice Interface: PTP
    AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    AppleSynopsysOTGDevice Interface: USBAudioControl
    AppleSynopsysOTGDevice Interface: USBAudioStreaming
    AppleSynopsysOTGDevice Interface: IapOverUsbHid
    AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    AppleSynopsysOTGDevice Interface: PTP
    AppleSynopsysOTGDevice Interface: AppleUSBMux
    AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    AppleSynopsysOTGDevice Interface: PTP
    AppleSynopsysOTGDevice Interface: AppleUSBMux
    AppleSynopsysOTGDevice Interface: AppleUSBEthernet
    AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    IOAccessoryPortUSB::start
    AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    virtual bool AppleUSBDeviceMux::start(IOService*) build: Aug 4 2010 18:51:30
    init_waste
    AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    AppleUSBEthernetDevice::start: Device MAC address = 0a:0b:ad:0b:ab:e0
    AppleUSBEthernetDevice::start: Host MAC address = 00:26:b0:92:35:00
    AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    AppleSynopsysOTGDevice::gated_registerFunction all functions registered- we are ready to start usb stack
    AppleS5L8720XUSBPhy::powerUp : _powered: 0
    AppleEmbeddedUSBArbitrator::enableDeviceClock : enable: 1, index: 0
    virtual IOReturn AppleUSBDeviceMux::setProperties(OSObject*) setting debug level to 7
    AppleSynopsysOTGDevice::handleUSBReset
    AppleSynopsysOTGDevice::handleUSBReset
    close(caller = 0x5695): remote port = 49152
    close(caller = 0x5695): remote port = 49153
    close(caller = 0x5695): remote port = 49154
    client protocol version 12
    Restore options:
    SystemPartitionSize => <CFNumber 0xb058e0 [0x1a9d5c]>{value = +750, type = kCFNumberSInt64Type}
    entering partitionnanddevice
    device is not a boot-from-NAND device
    entering waitfor_storagedevice
    entering formateffaceablestorage
    effaceable storage is formatted, clearing it
    effaceable storaged cleared
    entering checkfor_restorelog
    executing /sbin/fsck_hfs
    AppleUSBDeviceMux::handleConnectResult new session 0x83460200 established 62078<-lo0->49152 62078<-usb->13568
    void AppleUSBDeviceMux::handleMuxTCPInput(__mbuf*) received reset, closing 0x83460200
    AppleUSBDeviceMux::handleConnectResult new session 0x83460100 established 62078<-lo0->49153 62078<-usb->13824
    AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x83460100 (62078<-lo0->49153 62078<-usb->13824)
    AppleUSBDeviceMux::handleConnectResult new session 0x83460200 established 62078<-lo0->49154 62078<-usb->14080
    AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x83460200 (62078<-lo0->49154 62078<-usb->14080)
    AppleUSBDeviceMux::handleConnectResult new session 0x83460180 established 62078<-lo0->49155 62078<-usb->14336
    ** /dev/rdisk0s1
    Executing fsck_hfs (version diskdev_cmds-488.1.7~39).
    ** Checking non-journaled HFS Plus Volume.
    ** Detected a case-sensitive volume.
    ** Checking extents overflow file.
    ** Checking catalog file.
    ** Checking multi-linked files.
    ** Checking catalog hierarchy.
    ** Checking extended attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Apex8A400.N88OS appears to be OK.
    executing /sbin/mount
    found restore log (size = 11825)
    entering createfilesystempartitions
    NAND format complete
    creating encrypted data partition
    wipe entire partition: 1 (old = 0 new = 750)
    block size for /dev/disk0s1: 8192
    /sbin/newfs_hfs -s -v System -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1
    executing /sbin/newfs_hfs
    Initialized /dev/rdisk0s1 as a 750 MB HFS Plus volume
    block size for /dev/disk0s2s1: 8192
    /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s2s1
    executing /sbin/newfs_hfs
    Initialized /dev/rdisk0s2s1 as a 14 GB HFS Plus volume with a 8192k journal
    entering restore_images
    executing /usr/sbin/asr
    ASR STATUS: start 223 multicast-client
    ASR: Waiting for connection attempt from server
    void AppleUSBDeviceMux::handleConnectResult(BulkUSBMuxSession*, errno_t) new session to port 12345 failed: 61
    void AppleUSBDeviceMux::handleConnectResult(BulkUSBMuxSession*, errno_t) new session to port 12345 failed: 61
    ASR STATUS: setup
    ASR: Validating target...
    ASR: done
    ASR STATUS: metadata
    ASR: Validating source...
    AppleUSBDeviceMux::handleConnectResult new session 0x829b1180 established 12345<-lo0->49158 12345<-usb->15104
    ASR: Using Hardware AES
    ASR: Using Hardware AES
    ASR: Using Hardware AES
    ASR: done
    ASR: Using Hardware AES
    ASR: Warning: You may not be able to start up a computer with the target volume.
    ASR: Retrieving scan information...done
    ASR: Validating sizes...
    ASR: done
    ASR STATUS: restore
    ASR RESTORE PROGRESS: 2%
    ASR RESTORE PROGRESS: 4%
    ASR RESTORE PROGRESS: 6%
    ASR RESTORE PROGRESS: 8%
    ASR RESTORE PROGRESS: 10%
    ASR RESTORE PROGRESS: 12%
    ASR RESTORE PROGRESS: 14%
    ASR RESTORE PROGRESS: 16%
    ASR RESTORE PROGRESS: 18%
    ASR RESTORE PROGRESS: 20%
    ASR RESTORE PROGRESS: 22%
    AppleBCMWLAN::handleIOKitBusyWatchdogTimeout(): Error, no successful firmware download after 60000 ms!! Giving up...
    ASR RESTORE PROGRESS: 24%
    ASR RESTORE PROGRESS: 26%
    ASR RESTORE PROGRESS: 28%
    ASR RESTORE PROGRESS: 30%
    ASR RESTORE PROGRESS: 32%
    ASR RESTORE PROGRESS: 34%
    ASR RESTORE PROGRESS: 36%
    ASR RESTORE PROGRESS: 38%
    ASR RESTORE PROGRESS: 40%
    ASR RESTORE PROGRESS: 42%
    ASR RESTORE PROGRESS: 44%
    ASR RESTORE PROGRESS: 46%
    ASR RESTORE PROGRESS: 48%
    ASR RESTORE PROGRESS: 50%
    ASR RESTORE PROGRESS: 52%
    ASR RESTORE PROGRESS: 54%
    ASR RESTORE PROGRESS: 56%
    ASR RESTORE PROGRESS: 58%
    ASR RESTORE PROGRESS: 60%
    ASR RESTORE PROGRESS: 62%
    ASR RESTORE PROGRESS: 64%
    ASR RESTORE PROGRESS: 66%
    ASR RESTORE PROGRESS: 68%
    ASR RESTORE PROGRESS: 70%
    ASR RESTORE PROGRESS: 72%
    ASR RESTORE PROGRESS: 74%
    ASR RESTORE PROGRESS: 76%
    ASR RESTORE PROGRESS: 78%
    ASR RESTORE PROGRESS: 80%
    ASR RESTORE PROGRESS: 82%
    ASR RESTORE PROGRESS: 84%
    ASR RESTORE PROGRESS: 86%
    ASR RESTORE PROGRESS: 88%
    ASR RESTORE PROGRESS: 90%
    ASR RESTORE PROGRESS: 92%
    ASR RESTORE PROGRESS: 94%
    ASR RESTORE PROGRESS: 96%
    ASR RESTORE PROGRESS: 98%
    ASR RESTORE PROGRESS: 100%
    ASR: Copied 731038208 bytes in 79.31 seconds, 9001.96 KiB/s
    ASR STATUS: verify
    AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x829b1180 (12345<-lo0->49158 12345<-usb->15104)
    ASR VERIFY PROGRESS: 2%
    ASR VERIFY PROGRESS: 4%
    ASR VERIFY PROGRESS: 6%
    ASR VERIFY PROGRESS: 8%
    ASR VERIFY PROGRESS: 10%
    ASR VERIFY PROGRESS: 12%
    ASR VERIFY PROGRESS: 14%
    ASR VERIFY PROGRESS: 16%
    ASR VERIFY PROGRESS: 18%
    ASR VERIFY PROGRESS: 20%
    ASR VERIFY PROGRESS: 22%
    ASR VERIFY PROGRESS: 24%
    ASR VERIFY PROGRESS: 26%
    ASR VERIFY PROGRESS: 28%
    ASR VERIFY PROGRESS: 30%
    ASR VERIFY PROGRESS: 32%
    ASR VERIFY PROGRESS: 34%
    ASR VERIFY PROGRESS: 36%
    ASR VERIFY PROGRESS: 38%
    ASR VERIFY PROGRESS: 40%
    ASR VERIFY PROGRESS: 42%
    ASR VERIFY PROGRESS: 44%
    ASR VERIFY PROGRESS: 46%
    ASR VERIFY PROGRESS: 48%
    ASR VERIFY PROGRESS: 50%
    ASR VERIFY PROGRESS: 52%
    ASR VERIFY PROGRESS: 54%
    ASR VERIFY PROGRESS: 56%
    ASR VERIFY PROGRESS: 58%
    ASR VERIFY PROGRESS: 60%
    ASR VERIFY PROGRESS: 62%
    ASR VERIFY PROGRESS: 64%
    ASR VERIFY PROGRESS: 66%
    ASR VERIFY PROGRESS: 68%
    ASR VERIFY PROGRESS: 70%
    ASR VERIFY PROGRESS: 72%
    ASR VERIFY PROGRESS: 74%
    ASR VERIFY PROGRESS: 76%
    ASR VERIFY PROGRESS: 78%
    ASR VERIFY PROGRESS: 80%
    ASR VERIFY PROGRESS: 82%
    ASR VERIFY PROGRESS: 84%
    ASR VERIFY PROGRESS: 86%
    ASR VERIFY PROGRESS: 88%
    ASR VERIFY PROGRESS: 90%
    ASR VERIFY PROGRESS: 92%
    ASR VERIFY PROGRESS: 94%
    ASR VERIFY PROGRESS: 96%
    ASR VERIFY PROGRESS: 98%
    ASR VERIFY PROGRESS: 100%
    ASR: Verified SHA-1 checksum 731038208 bytes in 23.53 seconds, 30344.18 KiB/s
    ASR STATUS: finish
    entering mount_filesystems
    executing /sbin/fsck_hfs
    ** /dev/rdisk0s1
    Executing fsck_hfs (version diskdev_cmds-488.1.7~39).
    ** Checking non-journaled HFS Plus Volume.
    ** Detected a case-sensitive volume.
    ** Checking extents overflow file.
    ** Checking catalog file.
    ** Checking multi-linked files.
    ** Checking catalog hierarchy.
    ** Checking extended attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Apex8A400.N88OS appears to be OK.
    executing /sbin/mount
    executing /sbin/fsck_hfs
    disk0s2s1: ioctl(_IOW,'d',24,4) is unsupported.
    ** /dev/rdisk0s2s1
    Executing fsck_hfs (version diskdev_cmds-488.1.7~39).
    ** Checking Journaled HFS Plus volume.
    ** Detected a case-sensitive volume.
    ** Checking extents overflow file.
    ** Checking catalog file.
    ** Checking multi-linked files.
    ** Checking catalog hierarchy.
    ** Checking extended attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Data appears to be OK.
    executing /sbin/mount
    entering installkernelcache
    writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    entering installsecure_vaultdaemon
    entering gethardwareplatform
    platform-name = s5l8920x
    linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8920x
    no securekeyvaultd for s5l8920x
    entering fixup_var
    remove_path /mnt1/private/var
    executing /bin/rm
    creating directory (owner=0 mode=755) /mnt1/private/var
    entering modify_fstab
    entering clearpersistent_bootargs
    executing /usr/sbin/nvram
    entering update_NOR
    entering img3updateNOR
    img3flash_NORimage: flashing LLB data (length = 0xf999)
    img3flash_NORimage: flashing NOR data (length = 0x29999)
    img3flash_NORimage: flashing NOR data (length = 0xbe59)
    img3flash_NORimage: flashing NOR data (length = 0x2619)
    img3flash_NORimage: flashing NOR data (length = 0xb259)
    img3flash_NORimage: flashing NOR data (length = 0xdbd9)
    img3flash_NORimage: flashing NOR data (length = 0xfd19)
    img3flash_NORimage: flashing NOR data (length = 0x4fd9)
    img3flash_NORimage: flashing NOR data (length = 0x4bd9)
    img3flash_NORimage: flashing NOR data (length = 0x4d59)
    img3flash_NORimage: flashing NOR data (length = 0x6199)
    img3flash_NORimage: flashing NOR data (length = 0x12a59)
    entering createsystem_keybag
    attempting to create system key bag on /mnt2
    booted from secure root: give device keybag access to everyone
    entering updategas_gaugesoftware
    AppleKeyStore:cpkey_storeaction(1)
    AppleKeyStore:cpkey_storeaction(1)
    gasgauge_swupdate failed: -1
    attempting to dump restore log
    writing log file: /mnt1/restore.log
    ==== end of previous restore log ====
    2010-09-01 22:36:22.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 11 progress -1
    2010-09-01 22:36:28.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 12 progress -1
    2010-09-01 22:36:30.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 12 progress -1
    2010-09-01 22:36:37.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 0
    2010-09-01 22:36:47.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 1
    2010-09-01 22:36:47.000 iTunes[1936:1788f]: ASR progress: Initialized communication with client
    2010-09-01 22:36:50.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 5
    2010-09-01 22:36:50.000 iTunes[1936:1788f]: ASR progress: Starting to send payload
    2010-09-01 22:36:51.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 6
    2010-09-01 22:36:51.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:52.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 7
    2010-09-01 22:36:52.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:52.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 8
    2010-09-01 22:36:52.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:53.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 9
    2010-09-01 22:36:53.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:54.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 10
    2010-09-01 22:36:54.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:55.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 11
    2010-09-01 22:36:55.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:56.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 12
    2010-09-01 22:36:56.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:56.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 13
    2010-09-01 22:36:56.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:57.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 14
    2010-09-01 22:36:58.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:59.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 15
    2010-09-01 22:36:59.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:36:59.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 16
    2010-09-01 22:36:59.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:00.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 17
    2010-09-01 22:37:00.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:01.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 18
    2010-09-01 22:37:01.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:01.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 19
    2010-09-01 22:37:01.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:02.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 20
    2010-09-01 22:37:02.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:03.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 21
    2010-09-01 22:37:03.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:03.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 22
    2010-09-01 22:37:03.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:04.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 23
    2010-09-01 22:37:04.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:04.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 24
    2010-09-01 22:37:04.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:05.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 25
    2010-09-01 22:37:05.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:06.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 26
    2010-09-01 22:37:06.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:07.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 27
    2010-09-01 22:37:07.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:07.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 28
    2010-09-01 22:37:07.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:08.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 29
    2010-09-01 22:37:08.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:09.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 30
    2010-09-01 22:37:09.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:10.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 31
    2010-09-01 22:37:10.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:11.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 32
    2010-09-01 22:37:11.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:11.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 33
    2010-09-01 22:37:11.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:12.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 34
    2010-09-01 22:37:12.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:13.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 35
    2010-09-01 22:37:13.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:14.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 36
    2010-09-01 22:37:14.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:16.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 37
    2010-09-01 22:37:16.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:17.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 38
    2010-09-01 22:37:17.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:18.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 39
    2010-09-01 22:37:18.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:19.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 40
    2010-09-01 22:37:19.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:19.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 41
    2010-09-01 22:37:19.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:20.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 42
    2010-09-01 22:37:20.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:21.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 43
    2010-09-01 22:37:21.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:21.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 44
    2010-09-01 22:37:21.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:22.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 45
    2010-09-01 22:37:22.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:23.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 46
    2010-09-01 22:37:23.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:23.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 47
    2010-09-01 22:37:23.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:24.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 48
    2010-09-01 22:37:24.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:25.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 49
    2010-09-01 22:37:25.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:26.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 50
    2010-09-01 22:37:26.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:27.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 51
    2010-09-01 22:37:27.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:28.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 52
    2010-09-01 22:37:28.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:28.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 53
    2010-09-01 22:37:28.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:29.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 54
    2010-09-01 22:37:29.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:30.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 55
    2010-09-01 22:37:30.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:31.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 56
    2010-09-01 22:37:31.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:32.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 57
    2010-09-01 22:37:32.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:32.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 58
    2010-09-01 22:37:32.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:33.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 59
    2010-09-01 22:37:33.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:34.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 60
    2010-09-01 22:37:34.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:35.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 61
    2010-09-01 22:37:35.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:36.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 62
    2010-09-01 22:37:36.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:37.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 63
    2010-09-01 22:37:37.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:38.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 64
    2010-09-01 22:37:38.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:39.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 65
    2010-09-01 22:37:39.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:40.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 66
    2010-09-01 22:37:40.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:41.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 67
    2010-09-01 22:37:41.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:41.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 68
    2010-09-01 22:37:41.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:42.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 69
    2010-09-01 22:37:42.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:42.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 70
    2010-09-01 22:37:42.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:43.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 71
    2010-09-01 22:37:43.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:44.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 72
    2010-09-01 22:37:44.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:45.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 73
    2010-09-01 22:37:45.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:45.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 74
    2010-09-01 22:37:45.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:46.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 75
    2010-09-01 22:37:46.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:46.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 76
    2010-09-01 22:37:46.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:47.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 77
    2010-09-01 22:37:47.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:48.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 78
    2010-09-01 22:37:48.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:49.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 79
    2010-09-01 22:37:49.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:49.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 80
    2010-09-01 22:37:49.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:50.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 81
    2010-09-01 22:37:50.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:51.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 82
    2010-09-01 22:37:51.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:51.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 83
    2010-09-01 22:37:51.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:52.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 84
    2010-09-01 22:37:52.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:53.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 85
    2010-09-01 22:37:53.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:54.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 86
    2010-09-01 22:37:54.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:55.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 87
    2010-09-01 22:37:55.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:55.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 88
    2010-09-01 22:37:55.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:56.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 89
    2010-09-01 22:37:56.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:57.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 90
    2010-09-01 22:37:57.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:58.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 91
    2010-09-01 22:37:58.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:58.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 92
    2010-09-01 22:37:58.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:37:59.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 93
    2010-09-01 22:37:59.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:38:00.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 94
    2010-09-01 22:38:00.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:38:01.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 95
    2010-09-01 22:38:01.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:38:02.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 96
    2010-09-01 22:38:02.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:38:03.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 97
    2010-09-01 22:38:03.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:38:04.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 98
    2010-09-01 22:38:04.000 iTunes[1936:1788f]: ASR progress: Sending payload
    2010-09-01 22:38:05.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 13 progress 100
    2010-09-01 22:38:05.000 iTunes[1936:1788f]: ASR progress: Finished
    2010-09-01 22:38:06.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 2
    2010-09-01 22:38:06.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 4
    2010-09-01 22:38:07.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 6
    2010-09-01 22:38:07.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 8
    2010-09-01 22:38:08.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 10
    2010-09-01 22:38:08.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 12
    2010-09-01 22:38:09.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 14
    2010-09-01 22:38:09.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 16
    2010-09-01 22:38:10.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 18
    2010-09-01 22:38:10.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 20
    2010-09-01 22:38:11.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 22
    2010-09-01 22:38:11.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 24
    2010-09-01 22:38:11.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 26
    2010-09-01 22:38:12.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 28
    2010-09-01 22:38:12.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 30
    2010-09-01 22:38:13.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 32
    2010-09-01 22:38:13.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 34
    2010-09-01 22:38:14.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 36
    2010-09-01 22:38:14.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 38
    2010-09-01 22:38:15.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 40
    2010-09-01 22:38:15.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 42
    2010-09-01 22:38:16.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 44
    2010-09-01 22:38:16.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 46
    2010-09-01 22:38:17.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 48
    2010-09-01 22:38:17.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 50
    2010-09-01 22:38:18.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 52
    2010-09-01 22:38:18.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 54
    2010-09-01 22:38:19.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 56
    2010-09-01 22:38:19.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 58
    2010-09-01 22:38:19.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 60
    2010-09-01 22:38:20.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 62
    2010-09-01 22:38:20.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 64
    2010-09-01 22:38:21.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 66
    2010-09-01 22:38:21.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 68
    2010-09-01 22:38:22.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 70
    2010-09-01 22:38:22.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 72
    2010-09-01 22:38:23.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 74
    2010-09-01 22:38:23.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 76
    2010-09-01 22:38:24.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 78
    2010-09-01 22:38:24.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 80
    2010-09-01 22:38:25.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 82
    2010-09-01 22:38:25.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 84
    2010-09-01 22:38:26.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 86
    2010-09-01 22:38:26.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 88
    2010-09-01 22:38:27.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 90
    2010-09-01 22:38:27.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 92
    2010-09-01 22:38:27.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 94
    2010-09-01 22:38:28.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 96
    2010-09-01 22:38:28.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 98
    2010-09-01 22:38:29.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 14 progress 100
    2010-09-01 22:38:29.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 15 progress -1
    2010-09-01 22:38:43.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 16 progress -1
    2010-09-01 22:38:43.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 15 progress -1
    2010-09-01 22:38:45.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 16 progress -1
    2010-09-01 22:38:45.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 27 progress -1
    2010-09-01 22:38:46.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 27 progress -1
    2010-09-01 22:38:46.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 17 progress -1
    2010-09-01 22:38:47.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 25 progress -1
    2010-09-01 22:38:47.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 35 progress -1
    2010-09-01 22:38:47.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 18 progress -1
    2010-09-01 22:39:08.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 49 progress -1
    2010-09-01 22:39:09.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: operation 46 progress -1
    2010-09-01 22:39:33.000 iTunes[1936:1788f]: device returned AMR error 29
    2010-09-01 22:39:33.000 iTunes[1936:1788f]:
    ==== device restore output ====
    sOTGDevice::start : start finished
    AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    AppleM2ScalerCSCDriver: Added framebuffer device: AppleM2TVOut id: 81b4f800
    IOSDIOController::enumerateSlot(): Searching for SDIO device in slot: 0
    IOSDIOController::enumerateSlot(): Found SDIO I/O device. Function count(1), memory(0)
    read new style signature 0x43313133 (line:405)
    [FTL:MSG] VSVFL Register [OK]
    [FTL:MSG] VFL Init [OK]
    IOSDIOIoCardDevice::parseFn0CIS(): Device manufacturer ID 0x2d0, Product ID 0x4325
    IOSDIOIoCardDevice::parseFn0CIS(): Manufacturer: ""
    IOSDIOIoCardDevice::parseFn0CIS(): Product: ""
    IOSDIOIoCardDevice::parseFn0CIS(): ProductInfo0: "s=D1"
    IOSDIOIoCardDevice::parseFn0CIS(): ProductInfo1: "P=N88 m=3.2"
    AppleBCMWLAN::init(): AppleBCMWLAN-42 Aug 4 2010 18:51:11
    AppleBCMWLAN::init(): Starting with debug level: 4, debug flags: 00000000
    AppleBCMWLAN::init(): AppleBCMWLAN-42 Aug 4 2010 18:51:11
    AppleBCMWLAN::init(): Starting with debug level: 4, debug flags: 00000000
    [FTL:MSG] VFL_Open [OK]
    [FTL:MSG] YAFTL Register [OK]
    found suitable IOMobileFramebuffer: AppleM2CLCD
    display-scale = 1
    display-rotation = 0
    found PTP interface
    [FTL:MSG] FTL_Open [OK]
    AppleSynopsysOTGDevice - Configuration: PTP
    AppleSynopsysOTGDevice Interface: PTP
    AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    AppleSynopsysOTGDevice Interface: USBAudioControl
    AppleSynopsysOTGDevice Interface: USBAudioStreaming
    AppleSynopsysOTGDevice Interface: IapOverUsbHid
    AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    AppleSynopsysOTGDevice Interface: PTP
    AppleSynopsysOTGDevice Interface: AppleUSBMux
    AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    AppleSynopsysOTGDevice Interface: PTP
    AppleSynopsysOTGDevice Interface: AppleUSBMux
    AppleSynopsysOTGDevice Interface: AppleUSBEthernet
    AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    IOAccessoryPortUSB::start
    AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    virtual bool AppleUSBDeviceMux::start(IOService*) build: Aug 4 2010 18:51:30
    init_waste
    AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    AppleUSBEthernetDevice::start: Device MAC address = 0a:0b:ad:0b:ab:e0
    AppleUSBEthernetDevice::start: Host MAC address = 00:26:b0:92:35:00
    close(caller = 0x5695): remote port = 49152
    close(caller = 0x5695): remote port = 49153
    client protocol version 12
    Restore options:
    SystemPartitionSize => <CFNumber 0xb095c0 [0x1a9d5c]>{value = +750, type = kCFNumberSInt64Type}
    entering partitionnanddevice
    device is not a boot-from-NAND device
    entering waitfor_storagedevice
    entering formateffaceablestorage
    effaceable storage is formatted, clearing it
    effaceable storaged cleared
    entering checkfor_restorelog
    executing /sbin/fsck_hfs
    AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    AppleSynopsysOTGDevice::gated_registerFunction all functions registered- we are ready to start usb stack
    AppleS5L8720XUSBPhy::powerUp : _powered: 0
    AppleEmbeddedUSBArbitrator::enableDeviceClock : enable: 1, index: 0
    virtual IOReturn AppleUSBDeviceMux::setProperties(OSObject*) setting debug level to 7
    AppleSynopsysOTGDevice::handleUSBReset
    AppleUSBDeviceMux::handleConnectResult new session 0x83440080 established 62078<-lo0->49152 62078<-usb->512
    void AppleUSBDeviceMux::handleMuxTCPInput(__mbuf*) received reset, closing 0x83440080
    AppleUSBDeviceMux::handleConnectResult new session 0x83479e80 established 62078<-lo0->49153 62078<-usb->768
    AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x83479e80 (62078<-lo0->49153 62078<-usb->768)
    AppleUSBDeviceMux::handleConnectResult new session 0x83440200 established 62078<-lo0->49154 62078<-usb->1024
    ** /dev/rdisk0s1
    Executing fsck_hfs (version diskdev_cmds-488.1.7~39).
    ** Checking non-journaled HFS Plus Volume.
    ** Detected a case-sensitive volume.
    ** Checking extents overflow file.
    ** Checking catalog file.
    ** Checking multi-linked files.
    ** Checking catalog hierarchy.
    ** Checking extended attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Apex8A400.N88OS appears to be OK.
    executing /sbin/mount
    found restore log (size = 11803)
    entering createfilesystempartitions
    NAND format complete
    creating encrypted data partition
    wipe entire partition: 1 (old = 0 new = 750)
    block size for /dev/disk0s1: 8192
    /sbin/newfs_hfs -s -v System -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1
    executing /sbin/newfs_hfs
    Initialized /dev/rdisk0s1 as a 750 MB HFS Plus volume
    block size for /dev/disk0s2s1: 8192
    /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s2s1
    executing /sbin/newfs_hfs
    Initialized /dev/rdisk0s2s1 as a 14 GB HFS Plus volume with a 8192k journal
    entering restore_images
    executing /usr/sbin/asr
    ASR STATUS: start 223 multicast-client
    ASR: Waiting for connection attempt from server
    void AppleUSBDeviceMux::handleConnectResult(BulkUSBMuxSession*, errno_t) new session to port 12345 failed: 61
    void AppleUSBDeviceMux::handleConnectResult(BulkUSBMuxSession*, errno_t) new session to port 12345 failed: 61
    ASR STATUS: setup
    ASR: Validating target...
    ASR: done
    ASR STATUS: metadata
    ASR: Validating source...
    AppleUSBDeviceMux::handleConnectResult new session 0x83440180 established 12345<-lo0->49157 12345<-usb->1792
    ASR: Using Hardware AES
    ASR: Using Hardware AES
    ASR: Using Hardware AES
    ASR: done
    ASR: Using Hardware AES
    ASR: Warning: You may not be able to start up a computer with the target volume.
    ASR: Retrieving scan information...done
    ASR: Validating sizes...
    ASR: done
    ASR STATUS: restore
    ASR RESTORE PROGRESS: 2%
    ASR RESTORE PROGRESS: 4%
    ASR RESTORE PROGRESS: 6%
    ASR RESTORE PROGRESS: 8%
    ASR RESTORE PROGRESS: 10%
    ASR RESTORE PROGRESS: 12%
    ASR RESTORE PROGRESS: 14%
    ASR RESTORE PROGRESS: 16%
    ASR RESTORE PROGRESS: 18%
    ASR RESTORE PROGRESS: 20%
    ASR RESTORE PROGRESS: 22%
    AppleBCMWLAN::handleIOKitBusyWatchdogTimeout(): Error, no successful firmware download after 60000 ms!! Giving up...
    ASR RESTORE PROGRESS: 24%
    ASR RESTORE PROGRESS: 26%
    ASR RESTORE PROGRESS: 28%
    ASR RESTORE PROGRESS: 30%
    ASR RESTORE PROGRESS: 32%
    ASR RESTORE PROGRESS: 34%
    ASR RESTORE PROGRESS: 36%
    ASR RESTORE PROGRESS: 38%
    ASR RESTORE PROGRESS: 40%
    ASR RESTORE PROGRESS: 42%
    ASR RESTORE PROGRESS: 44%
    ASR RESTORE PROGRESS: 46%
    ASR RESTORE PROGRESS: 48%
    ASR RESTORE PROGRESS: 50%
    ASR RESTORE PROGRESS: 52%
    ASR RESTORE PROGRESS: 54%
    ASR RESTORE PROGRESS: 56%
    ASR RESTORE PROGRESS: 58%
    ASR RESTORE PROGRESS: 60%
    ASR RESTORE PROGRESS: 62%
    ASR RESTORE PROGRESS: 64%
    ASR RESTORE PROGRESS: 66%
    ASR RESTORE PROGRESS: 68%
    ASR RESTORE PROGRESS: 70%
    ASR RESTORE PROGRESS: 72%
    ASR RESTORE PROGRESS: 74%
    ASR RESTORE PROGRESS: 76%
    ASR RESTORE PROGRESS: 78%
    ASR RESTORE PROGRESS: 80%
    ASR RESTORE PROGRESS: 82%
    ASR RESTORE PROGRESS: 84%
    ASR RESTORE PROGRESS: 86%
    ASR RESTORE PROGRESS: 88%
    ASR RESTORE PROGRESS: 90%
    ASR RESTORE PROGRESS: 92%
    ASR RESTORE PROGRESS: 94%
    ASR RESTORE PROGRESS: 96%
    ASR RESTORE PROGRESS: 98%
    AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x83440180 (12345<-lo0->49157 12345<-usb->1792)
    ASR RESTORE PROGRESS: 100%
    ASR: Copied 731038208 bytes in 75.06 seconds, 9511.05 KiB/s
    ASR STATUS: verify
    ASR VERIFY PROGRESS: 2%
    ASR VERIFY PROGRESS: 4%
    ASR VERIFY PROGRESS: 6%
    ASR VERIFY PROGRESS: 8%
    ASR VERIFY PROGRESS: 10%
    ASR VERIFY PROGRESS: 12%
    ASR VERIFY PROGRESS: 14%
    ASR VERIFY PROGRESS: 16%
    ASR VERIFY PROGRESS: 18%
    ASR VERIFY PROGRESS: 20%
    ASR VERIFY PROGRESS: 22%
    ASR VERIFY PROGRESS: 24%
    ASR VERIFY PROGRESS: 26%
    ASR VERIFY PROGRESS: 28%
    ASR VERIFY PROGRESS: 30%
    ASR VERIFY PROGRESS: 32%
    ASR VERIFY PROGRESS: 34%
    ASR VERIFY PROGRESS: 36%
    ASR VERIFY PROGRESS: 38%
    ASR VERIFY PROGRESS: 40%
    ASR VERIFY PROGRESS: 42%
    ASR VERIFY PROGRESS: 44%
    ASR VERIFY PROGRESS: 46%
    ASR VERIFY PROGRESS: 48%
    ASR VERIFY PROGRESS: 50%
    ASR VERIFY PROGRESS: 52%
    ASR VERIFY PROGRESS: 54%
    ASR VERIFY PROGRESS: 56%
    ASR VERIFY PROGRESS: 58%
    ASR VERIFY PROGRESS: 60%
    ASR VERIFY PROGRESS: 62%
    ASR VERIFY PROGRESS: 64%
    ASR VERIFY PROGRESS: 66%
    ASR VERIFY PROGRESS: 68%
    ASR VERIFY PROGRESS: 70%
    ASR VERIFY PROGRESS: 72%
    ASR VERIFY PROGRESS: 74%
    ASR VERIFY PROGRESS: 76%
    ASR VERIFY PROGRESS: 78%
    ASR VERIFY PROGRESS: 80%
    ASR VERIFY PROGRESS: 82%
    ASR VERIFY PROGRESS: 84%
    ASR VERIFY PROGRESS: 86%
    ASR VERIFY PROGRESS: 88%
    ASR VERIFY PROGRESS: 90%
    ASR VERIFY PROGRESS: 92%
    ASR VERIFY PROGRESS: 94%
    ASR VERIFY PROGRESS: 96%
    ASR VERIFY PROGRESS: 98%
    ASR VERIFY PROGRESS: 100%
    ASR: Verified SHA-1 checksum 731038208 bytes in 23.49 seconds, 30385.86 KiB/s
    ASR STATUS: finish
    entering mount_filesystems
    executing /sbin/fsck_hfs
    ** /dev/rdisk0s1
    Executing fsck_hfs (version diskdev_cmds-488.1.7~39).
    ** Checking non-journaled HFS Plus Volume.
    ** Detected a case-sensitive volume.
    ** Checking extents overflow file.
    ** Checking catalog file.
    ** Checking multi-linked files.
    ** Checking catalog hierarchy.
    ** Checking extended attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Apex8A400.N88OS appears to be OK.
    executing /sbin/mount
    executing /sbin/fsck_hfs
    disk0s2s1: ioctl(_IOW,'d',24,4) is unsupported.
    ** /dev/rdisk0s2s1
    Executing fsck_hfs (version diskdev_cmds-488.1.7~39).
    ** Checking Journaled HFS Plus volume.
    ** Detected a case-sensitive volume.
    ** Checking extents overflow file.
    ** Checking catalog file.
    ** Checking multi-linked files.
    ** Checking catalog hierarchy.
    ** Checking extended attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Data appears to be OK.
    executing /sbin/mount
    entering installkernelcache
    writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    entering installsecure_vaultdaemon
    entering gethardwareplatform
    platform-name = s5l8920x
    linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8920x
    no securekeyvaultd for s5l8920x
    entering fixup_var
    remove_path /mnt1/private/var
    executing /bin/rm
    creating directory (owner=0 mode=755) /mnt1/private/var
    entering modify_fstab
    entering clearpersistent_bootargs
    executing /usr/sbin/nvram
    entering update_NOR
    entering img3updateNOR
    img3flash_NORimage: flashing LLB data (length = 0xf999)
    img3flash_NORimage: flashing NOR data (length = 0x29999)
    img3flash_NORimage: flashing NOR data (length = 0xbe59)
    img3flash_NORimage: flashing NOR data (length = 0x2619)
    img3flash_NORimage: flashing NOR data (length = 0xb259)
    img3flash_NORimage: flashing NOR data (length = 0xdbd9)
    img3flash_NORimage: flashing NOR data (length = 0xfd19)
    img3flash_NORimage: flashing NOR data (length = 0x4fd9)
    img3flash_NORimage: flashing NOR data (length = 0x4bd9)
    img3flash_NORimage: flashing NOR data (length = 0x4d59)
    img3flash_NORimage: flashing NOR data (length = 0x6199)
    img3flash_NORimage: flashing NOR data (length = 0x12a59)
    entering createsystem_keybag
    attempting to create system key bag on /mnt2
    booted from secure root: give device keybag access to everyone
    AppleKeyStore:cpkey_storeaction(1)
    entering updategas_gaugesoftware
    AppleKeyStore:cpkey_storeaction(1)
    gasgauge_swupdate failed: -1
    attempting to dump restore log
    writing log file: /mnt1/restore.log
    ==== end of device restore output ====
    2010-09-01 22:39:33.000 iTunes[1936:1788f]: AMRAuthInstallDeletePersonalizedBundle
    2010-09-01 22:39:33.000 iTunes[1936:1788f]: removed personalized bundle
    2010-09-01 22:39:33.000 iTunes[1936:1788f]: <Restore Device 0x1c0c5070>: Restore failed (result = 29)
    2010-09-01 22:39:33.000 iTunes[1936:20b]: iTunes: Restore error 29
    2010-09-01 22:39:45.000 iTunes[1936:20b]: device connected (isDFU = 0)
    2010-09-01 22:39:45.000 iTunes[1936:20b]: iTunes: SCEP 3

    I still need help please.

  • Error in installing CAR 4.2 in Solaris 10

    Hi there, I am stuck in these error everytime I install CAR4.2 in Solaris 10.
    Here's the error log:
    extracting: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/images/tomcat.gif
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/index.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/introduction.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/jndi-resources-howto.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/manager-howto.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/proxy-howto.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/README.txt
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/realm-howto.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/RUNNING.txt
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/security-manager-howto.html
    inflating: /opt/CSCOar/jakarta-tomcat-4.0.6/webapps/tomcat-docs/ssl-howto.html
    creating: /opt/CSCOar/jakarta-tomcat-4.0.6/work/
    # setting up product configuration file /opt/CSCOar/conf/car.conf
    # linking /etc/init.d/arserver to /etc/rc.d files
    # setting ORACLE_HOME and JAVA_HOME variables in arserver
    # flushing old replication archive
    # creating initial configuration database
    /var/sadm/pkg/CSCOar/install/postinstall: /opt/CSCOar/bin/mcdadmin: cannot execute
    pkgadd: ERROR: postinstall script did not complete successfully
    Installation of <CSCOar> failed.

    Before you begin to install the software, check your workstation's /etc/group file and make sure that group staff exists. The software installation will fail if group staff does not exist before you begin.
    http://www.cisco.com/en/US/docs/net_mgmt/access_registrar/4.2/installation/guide/install.html#wp1041434

  • Did you change the htaccess login method or is it a bug?

    Since I updated to 4.01, the htaccess "autologin" doesn't work anymore. When I enter a url like "http://user:[email protected]" firefox loads the page without css and prompts for the username and password again. After clicking cancel and reloading the page. I'm logged in. This happens every time. I try to link to a file inside (
    securedFolder/folder/html). The css files are in a different folder, that seems to be the problem.
    Folder-structure:
    securedFolder/
    /folder/html
    /css/css

    When I link to a php script inside the secured root folder, which forwards to the desired file it works. Seem's like you have to link the root folder. It's interesting as it works fine with other browsers (except IE of course)

  • Mount USB, Shutdown,

    Hello,
    I'm not very new to Linux and switched to arch after using Ubuntu and a little bit gentoo and Mandriva. So I know how to mount beeing root, howto modify confugration files (fstab),
    But here is some things that not works, probably a configuration to adjust : I able to mount with the xfce panel since I added a entry in the fstab, but I am unable to write as normal user. This is not useful when I need programs to write (editors). On the others distro this worked the first time. I plugged the key and the Icons appeared on the desktop and where mountable. My user is added to storage and the groups necessary to access usb drives. (May be not all).
    2. I'm unable to shutdown the laptop with xfce. I have to enter as root and write halt each time. If needed I will bring the error message of xfce wich says something like unable to access ????????.
    3. Some others errors appears during the start of xfce like ???missing on display????
    Yes I know I should bring more infos. They will follow if some one answers to the first
    Thanks for all.

    On a Winbox right now, so I can't check my files. I had the same issue (well both of them actually). As I recall the shutdown and reboot from X, was another policy.fdi for HAL. I'll check back when I get home and boot the archbox - if there is no answer yet I post again.
    Yes I think that was it. this is my
    /etc/PolicyKit/PolicyKit.conf
    <?xml version="1.0" encoding="UTF-8"?> <!-- -*- XML -*- -->
    <!DOCTYPE pkconfig PUBLIC "-//freedesktop//DTD PolicyKit Configuration 1.0//EN"
    "http://hal.freedesktop.org/releases/PolicyKit/1.0/config.dtd">
    <!-- See the manual page PolicyKit.conf(5) for file format -->
    <config version="0.1">
    <match user="$storage_users">
    <match action="org.freedesktop.hal.storage.*">
    <return result="yes"/>
    </match>
    <match action="hal-storage-mount-fixed-extra-options">
    <return result="yes" />
    </match>
    <match action="hal-storage-mount-removable-extra-options">
    <return result="yes" />
    </match>
    </match>
    <match user="$power_users">
    <match action="org.freedesktop.hal.power-management.shutdown">
    <return result="yes"/>
    </match>
    <match action="org.freedesktop.hal.power-management.reboot">
    <return result="yes"/>
    </match>
    </match>
    </config>
    Anyway I started at this threadhttp://bbs.archlinux.org/viewtopic.php?id=64951&p=2, but where I found this part
    <match user="$power_users">
    I'm not sure, but I doubt I thought it up myself , anyway if the "match user" is left out as I understand it anybody(any user I suppose) can just reboot and shutdown at will. Some see this as a problem, so I'd just mention it.
    Last edited by XAD (2009-03-11 21:16:40)

  • Should I have to explicitly install CA certs that are already preinstalled in iOS?

    Hi all,
    I'm trying to understand how iOS deals with certificates and I'm wondering if anyone can explain a few things to me. I'm working on a system that would provide users with a personal identification certificate for authentication to various services (email, Wi-Fi, websites, etc.) via a configuration profile. Profile creation isn't a problem, but in testing website authentication, it seems that iOS (or Mobile Safari) requires me to provide the CA certificates that should already be on the device.
    Here is the certificate chain that my colleague provides me with when I get the user's cert:
    AddTrust External CA Root
    ↳ UTN-USERFirst-Client Authentication and Email
        ↳ InCommon Standard Assurance Client CA
           ↳ User's personal certificate
    At first, I added the certificate as a single payload of type com.apple.security.pkcs12 with all the CA certificates in the chain included in the p12 data blob. This didn't seem to work since I'd get a warning from MobileSafari in the console log:
    no itentities, but we have a challenge <NSURLAuthenticationChallenge: 0x1ddccd90>
    Along with the following dialog in the browser:
    This website requires a certificate
    The required certificate is not installed.
    Dismiss
    The server's ssl_error_log reported:
    Re-negotiation handshake failed: Not accepted by client!?
    So I tried breaking out the certs into individual payloads. According to this article, iOS 5 and 6 has "AddTrust External CA Root" and "UTN-USERFirst-Client Authentication and Email" preinstalled and I shouldn't have to install them again. So I just included "InCommon Standard Assurance Client CA" and the user's cert as two separate payloads (of types com.apple.security.pkcs1 and com.apple.security.pkcs12 respectively), but that didn't work. I was only able to get it to work if I installed the entire cert chain (using com.apple.security.root as the payload type for the root cert).
    Why is that? Shouldn't it already know about the two CAs? I can understand adding the "InCommon" CA since it's not preinstalled, but It seems strange that I have to explicitly provide the other CA certs.
    FWIW, I've found out that there are at least three versions of "UTN-USERFirst-Client Authentication and Email":
    Intermediate CA (expires Saturday, May 30, 2020 6:48:38 AM EDT)
    Intermediate CA (expires Sunday, December 31, 2028 6:59:59 PM EDT)
    Root CA (expires Tuesday, July 9, 2019 1:36:58 PM EDT)
    The root version is the one preinstalled in iOS. When I evaluate the user's cert with the Certificate Assistant in OS X, the cert status is good no matter what chain it uses, but could this multiple CA certs thing be an/the issue?

    Ariana...
    so I assume there should be some track of them
    Yes.
    In the iTunes Store on the right under Quick Links click Purchased (new).
    You'll be able to re download past purchases for free if you are a resident of the U.S., and have iTunes 10.3 or later installed.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Mobileconfig issue with ipad

    Hello everyone,
    I am facing an issue with the usage of mobileconfig to push profiles into Ipad/Iphone. This has been tested with IOS 8.1(iPad) and 8.3(iPhone).
    My profile has been generated manually(writing through apple key references) and then with the IPhone Config Utility, this profile works great with mac os X.x versions, tested on Snow Leopard, Maverick.
    This profile is here to setup an EAP-TLS connection, with server authentication, client authentication and CA certificate inside the profile.
    My connection is setup properly and I can connect on mac OS X as I said, but on iPad/iPhone after the profile installation, I get a screen to fill infos (login/pw) to connect to the network. As this is an EAP-TLS network I shouldn't have this, and I should have a choice of certificate(as my identity) if there were one thing to choose before the connection.
    So now I fill the information for login/pw and it still impossible to click the button 'Connect'.
    To have an idea this is how my "configured ssid" via the profile appear on the iPad/iPhone if I try to connected to it:
    http://imgur.com/dUOENth
    As you guessed 'Rejoindre = Connect'
    I have been through multiple threads and cannot find the source of the issue.
    My mobileconfig file is signed, my profile is trusted when installed as I ask to trust my newly pushed CA, I also try to install the CA before and then push the profile, same result.
    Lastly, the configuration of EAP-TLS with manually installed certificate is working great, only the autoconfig by profile is not. The auto configuration by profile with PEAP is working fine also.
    Here is my profile(I removed the content as some of the information are not supposed to be public, TestEAP = CA, svr = server authentication cert and antoine = client authentication cert):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>PayloadContent</key>
      <array>
      <dict>
      <key>AutoJoin</key>
      <true/>
      <key>EAPClientConfiguration</key>
      <dict>
      <key>AcceptEAPTypes</key>
      <array>
      <integer>13</integer>
      </array>
      <key>EAPFASTProvisionPAC</key>
      <false/>
      <key>EAPFASTProvisionPACAnonymously</key>
      <false/>
      <key>EAPFASTUsePAC</key>
      <false/>
      <key>PayloadCertificateAnchorUUID</key>
      <array>
      <string>41FDAD3B-4024-4ACF-AFB0-AE9462B586E4</string>
      <string>C55E83E1-4C0D-4735-A158-FE05C83065E0</string>
      </array>
      <key>TLSTrustedServerNames</key>
      <array>
      <string>antoine.p12</string>
      <string>svr</string>
      </array>
      </dict>
      <key>EncryptionType</key>
      <string>WPA</string>
      <key>HIDDEN_NETWORK</key>
      <false/>
      <key>PayloadDescription</key>
      <string>Configure les réglages de connectivité sans fil.</string>
      <key>PayloadDisplayName</key>
      <string>Wi-Fi (pf-aa-sec)</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.wifi</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.wifi.managed</string>
      <key>PayloadUUID</key>
      <string>945A78A2-214F-4E85-B44D-50E8A5077D4E</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      <key>ProxyType</key>
      <string>None</string>
      <key>SSID_STR</key>
      <string>pf-aa-sec</string>
      </dict>
      <dict>
      <key>PayloadCertificateFileName</key>
      <string>srv.der</string>
      <key>PayloadContent</key>
      <data>
      </data>
      <key>PayloadDescription</key>
      <string>Authentifie l’appareil (certificat ou identité).</string>
      <key>PayloadDisplayName</key>
      <string>svr</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.reference1</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.security.pkcs1</string>
      <key>PayloadUUID</key>
      <string>41FDAD3B-4024-4ACF-AFB0-AE9462B586E4</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      </dict>
      <dict>
      <key>PayloadCertificateFileName</key>
      <string>TestEAP.der</string>
      <key>PayloadContent</key>
      <data>
      </data>
      <key>PayloadDescription</key>
      <string>Authentifie l’appareil (certificat ou identité).</string>
      <key>PayloadDisplayName</key>
      <string>TestEAP</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.reference2</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.security.root</string>
      <key>PayloadUUID</key>
      <string>C55E83E1-4C0D-4735-A158-FE05C83065E0</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      </dict>
      <dict>
      <key>Password</key>
      <string>qwer</string>
      <key>PayloadCertificateFileName</key>
      <string>antoine.p12</string>
      <key>PayloadContent</key>
      <data>
      </data>
      <key>PayloadDescription</key>
      <string>Authentifie l’appareil (certificat ou identité).</string>
      <key>PayloadDisplayName</key>
      <string>antoine.p12</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.reference</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.security.pkcs12</string>
      <key>PayloadUUID</key>
      <string>680D4DB3-6196-471D-95AF-6EA0A1B6AF58</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      </dict>
      </array>
      <key>PayloadDescription</key>
      <string>Description du profil.</string>
      <key>PayloadDisplayName</key>
      <string>antoine2</string>
      <key>PayloadIdentifier</key>
      <string>antoine2</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadRemovalDisallowed</key>
      <false/>
      <key>PayloadType</key>
      <string>Configuration</string>
      <key>PayloadUUID</key>
      <string>A1C6BF16-CE1A-4D64-B315-9DD72400E3C4</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
    </dict>
    </plist>
    Thanks for reading

    Couldn't you use the free mdm -- meraki to generate the profile?
    Meraki -- A free MDM   [ expect lots of email and phone calls about upgrades ]
       Read the product overview.  Click on "get started now" to sign up.
         https://meraki.cisco.com/products/systems-manager/?ref=YZRzCR
       Video's on how to setup and use Meraki.
         https://meraki.cisco.com/blog/2012/08/how-to-get-the-most-from-meraki-systems-ma nager/

  • Error Trying to Create Capture Media Error 80004005

    Hey everyone need some help here.  I was at TechEd last week, in which I did the hands-on-lab on using boot media to capture a reference PC, can't remember the name.  Anyway, here is my problem, I tried to do the exact same set up on our setup
    and it fails.  I go through the following process:
    1.  Create Task Sequence Media
    2.  Select Capture Media
    3.  Select CD/DVD Set
    4.  Give it a name
    5.  Point to my boot image, and select my distribution point. and then
    IT FAILS!
    Media creation failed with error message: 'Unspecified error'
    Refer to CreateTsMedia.log file to find more details.
    When I look through the log file, the last item I see is:
    <![LOG[CreateMedia.exe finished with error code 80004005]LOG]!><time="14:26:31.972+240" date="05-19-2014" component="CreateTsMedia" context="" type="2" thread="5548" file="createmedia.cpp:1123">
    The info that I find seems to point to this being a problem with a USB drive not big enough to support the boot wim, but I am creating and ISO.. so whats the deal?
    Let me know what else I need to add to help me out.

    <![LOG[ ===============================================================]LOG]!><time="14:26:18.667+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548"
    file="createmedia.cpp:979">
    <![LOG[Begin media creation: ]LOG]!><time="14:26:18.669+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:980">
    <![LOG[Media: capture]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:267">
    <![LOG['Provider'=SERVER.REMOVE.FOR.SECURITY]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:208">
    <![LOG['Site Code'=PS1]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:208">
    <![LOG['Distribution Points(s)'=SERVER.REMOVE.FOR.SECURITY]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:208">
    <![LOG['Boot Image Package ID'=PS100015]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:208">
    <![LOG['Physical Media Type'=CD]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:208">
    <![LOG['Media Destination'=K:\boot.iso]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:208">
    <![LOG[Media label: 'Configuration Manager 2012']LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:1025">
    <![LOG[Creating media from Admin Console]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:1029">
    <![LOG[COMMAND LINE: ]LOG]!><time="14:26:18.671+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:929">
    <![LOG[CreateMedia.exe /K:capture /N:**** /P:SERVER.REMOVE.FOR.SECURITY /S:PS1 /C:**** /D:SERVER.REMOVE.FOR.SECURITY /L:Configuration Manager 2012 /B:PS100015 /T:CD /F:K:\boot.iso ]LOG]!><time="14:26:18.671+240" date="05-19-2014"
    component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:930">
    <![LOG[Another thread has been started to create TS media]LOG]!><time="14:26:18.672+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="createmedia.cpp:589">
    <![LOG[======= CreateCaptureMedia invoked =======]LOG]!><time="14:26:18.672+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="createtsmedia.cpp:1207">
    <![LOG[---------------------------- CreateTsMedia ----------------------------]LOG]!><time="14:26:18.672+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="createtsmedia.cpp:245">
    <![LOG[Requested output path: K:\boot.iso (CD)]LOG]!><time="14:26:18.672+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="createtsmedia.cpp:267">
    <![LOG[Total number of TS variables: 0]LOG]!><time="14:26:18.672+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="createtsmedia.cpp:106">
    <![LOG[Temporary directory 'C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204' created, free space on drive 'C:' is 67565 MB]LOG]!><time="14:26:18.673+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="tempdirectory.cpp:87">
    <![LOG[Opened WMI namespace '\\SERVER.REMOVE.FOR.SECURITY\root\SMS\site_PS1' ]LOG]!><time="14:26:18.715+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="mediafactory.cpp:924">
    <![LOG[Local computer is COMPUTER]LOG]!><time="14:26:18.729+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="utils.cpp:384">
    <![LOG[Package manager created successfully]LOG]!><time="14:26:18.729+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="mediafactory.cpp:408">
    <![LOG[Local computer is Computer]LOG]!><time="14:26:18.731+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="utils.cpp:384">
    <![LOG[Creating policy manager]LOG]!><time="14:26:18.731+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="mediafactory.cpp:444">
    <![LOG[Setting up Install Toolkit]LOG]!><time="14:26:18.731+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="mediatoolkit.cpp:214">
    <![LOG[Copying package PS100015 to C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Cache]LOG]!><time="14:26:18.827+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="packagemgr.cpp:334">
    <![LOG[Retrieving info for package PS100015.119]LOG]!><time="14:26:18.827+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="packagemgr.cpp:1042">
    <![LOG[Content library is on remote system 'SERVER.REMOVE.FOR.SECURITY']LOG]!><time="14:26:19.569+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="utils.cpp:617">
    <![LOG[Connected to remote registry service on 'SERVER.REMOVE.FOR.SECURITY']LOG]!><time="14:26:19.588+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="utils.cpp:691">
    <![LOG[Content Library: Local Path='E:\SCCMContentLib', Remote Path='\\SERVER.REMOVE.FOR.SECURITY\SCCMContentLib$', File Library Usable Drives='E:\,E:\,D:\,C:\']LOG]!><time="14:26:19.592+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="utils.cpp:830">
    <![LOG[Registering package PS100015.119 with content at \\SERVER.REMOVE.FOR.SECURITY\SCCMContentLib$]LOG]!><time="14:26:19.937+240" date="05-19-2014" component="CreateTsMedia" context="" type="1"
    thread="4204" file="packagemgr.cpp:591">
    <![LOG[VerifyContentHash: Hash algorithm is 32780]LOG]!><time="14:26:22.001+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="downloadcontent.cpp:1829">
    <![LOG[Hash value of package PS100015 is verified]LOG]!><time="14:26:25.372+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="packagemgr.cpp:494">
    <![LOG[ADK installation root registry value not found.]LOG]!><time="14:26:25.373+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="wimfile.cpp:197">
    <![LOG[Loaded C:\windows\system32\wimgapi.dll]LOG]!><time="14:26:25.373+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="wimfile.cpp:334">
    <![LOG[Opening image file C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Cache\PS100015\boot.PS100015.wim]LOG]!><time="14:26:25.373+240" date="05-19-2014" component="CreateTsMedia" context="" type="1"
    thread="4204" file="wimfile.cpp:412">
    <![LOG[Applying image 1 to volume C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit]LOG]!><time="14:26:25.510+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="wimfile.cpp:603">
    <![LOG[Closing image file C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Cache\PS100015\boot.PS100015.wim]LOG]!><time="14:26:25.591+240" date="05-19-2014" component="CreateTsMedia" context="" type="1"
    thread="4204" file="wimfile.cpp:448">
    <![LOG[More than one resource file found in the media creation toolkit. Media resources may be in a different language than what was expected]LOG]!><time="14:26:25.593+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="2" thread="4204" file="mediatoolkit.cpp:177">
    <![LOG[Generating capture task sequence]LOG]!><time="14:26:25.613+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="policymgr.cpp:1094">
    <![LOG[Downloading policies for Task Sequence (Capture)]LOG]!><time="14:26:25.618+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="policymgr.cpp:294">
    <![LOG[2 policies downloaded]LOG]!><time="14:26:25.789+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="policymgr.cpp:322">
    <![LOG[Stored policy 1, PolicyID='{4BC44CAD-CDE9-4058-8C83-FB4FEE22FB1D}--6F6BCC28']LOG]!><time="14:26:25.791+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="policymgr.cpp:214">
    <![LOG[Stored policy 2, PolicyID='DEP-{4BC44CAD-CDE9-4058-8C83-FB4FEE22FB1D}-PS100015-6F6BCC28']LOG]!><time="14:26:25.793+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="policymgr.cpp:214">
    <![LOG[Stored policy assignment 1]LOG]!><time="14:26:25.793+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="policymgr.cpp:254">
    <![LOG[Stored policy assignment 2]LOG]!><time="14:26:25.793+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="policymgr.cpp:254">
    <![LOG[Site server not found for sitecode PS1]LOG]!><time="14:26:25.928+240" date="05-19-2014" component="CreateTsMedia" context="" type="3" thread="4204" file="siteinfo.cpp:109">
    <![LOG[Retrieval of client configuration polices has failed]LOG]!><time="14:26:25.929+240" date="05-19-2014" component="CreateTsMedia" context="" type="3" thread="4204" file="mediafactory.cpp:1030">
    <![LOG[Failed to create media generator (0x80004005)]LOG]!><time="14:26:25.929+240" date="05-19-2014" component="CreateTsMedia" context="" type="3" thread="4204" file="createtsmedia.cpp:342">
    <![LOG[CreateTsMedia failed with error 0x80004005, details='']LOG]!><time="14:26:25.929+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204" file="createtsmedia.cpp:355">
    <![LOG[Unable to delete file C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386\1033\TsRes.dll (0x80070005). Continuing.]LOG]!><time="14:26:25.963+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="ccmfile.cpp:1056">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386\1033 (0x80070091).  Continuing.]LOG]!><time="14:26:25.963+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386 (0x80070091).  Continuing.]LOG]!><time="14:26:25.964+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin (0x80070091).  Continuing.]LOG]!><time="14:26:25.965+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms (0x80070091).  Continuing.]LOG]!><time="14:26:25.965+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit (0x80070091).  Continuing.]LOG]!><time="14:26:25.966+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Error deleting files in temp directory (0x80070091). Retrying after delay.]LOG]!><time="14:26:25.966+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="tempdirectory.cpp:128">
    <![LOG[Unable to delete file C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386\1033\TsRes.dll (0x80070005). Continuing.]LOG]!><time="14:26:28.967+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="ccmfile.cpp:1056">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386\1033 (0x80070091).  Continuing.]LOG]!><time="14:26:28.967+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386 (0x80070091).  Continuing.]LOG]!><time="14:26:28.968+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin (0x80070091).  Continuing.]LOG]!><time="14:26:28.968+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms (0x80070091).  Continuing.]LOG]!><time="14:26:28.968+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit (0x80070091).  Continuing.]LOG]!><time="14:26:28.968+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Error deleting files in temp directory (0x80070091). Retrying after delay.]LOG]!><time="14:26:28.969+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="4204"
    file="tempdirectory.cpp:128">
    <![LOG[Unable to delete file C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386\1033\TsRes.dll (0x80070005). Continuing.]LOG]!><time="14:26:31.970+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="ccmfile.cpp:1056">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386\1033 (0x80070091).  Continuing.]LOG]!><time="14:26:31.970+240" date="05-19-2014" component="CreateTsMedia"
    context="" type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin\i386 (0x80070091).  Continuing.]LOG]!><time="14:26:31.970+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms\bin (0x80070091).  Continuing.]LOG]!><time="14:26:31.971+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit\sms (0x80070091).  Continuing.]LOG]!><time="14:26:31.971+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete directory C:\Users\ADMIN-~1\AppData\Local\Temp\_tsmedia_4204\Toolkit (0x80070091).  Continuing.]LOG]!><time="14:26:31.971+240" date="05-19-2014" component="CreateTsMedia" context=""
    type="1" thread="4204" file="ccmfile.cpp:1028">
    <![LOG[Unable to delete all files in temp directory. Giving up. (0x80070091)]LOG]!><time="14:26:31.972+240" date="05-19-2014" component="CreateTsMedia" context="" type="3" thread="4204"
    file="tempdirectory.cpp:138">
    <![LOG[Media creation process that was started from Admin Console completed.
    ]LOG]!><time="14:26:31.972+240" date="05-19-2014" component="CreateTsMedia" context="" type="1" thread="5548" file="createmedia.cpp:1065">
    <![LOG[CreateMedia.exe finished with error code 80004005]LOG]!><time="14:26:31.972+240" date="05-19-2014" component="CreateTsMedia" context="" type="2" thread="5548" file="createmedia.cpp:1123">

  • How to configure OID

    Hi,
    I have installed 10G AS on Windows server 2003. (Both Infrastructure and middle tier). Wehave two databases that are on two solaris servers. We want to use single sign on for our end user for all the applications.
    How to I configure or register these databases on Solaris machines to OID on Windows machine so that I can create users in on place (Windows machine ) that can access all databases with one username ?
    Any link to a how to doc or step by step guide will be greatly appreciated.
    Thanks

    See first couple of steps in http://www.oracle.com/technology/deploy/security/db_security/howtos/eus-how-to.html
    regards,
    --Olaf                                                                                                                                                                                                                                                                           

  • How to install ASM on Oracle Enterprise Linux 6.3

    I am a bit lost .. I have Oracle Enterprise Linux 6.3 and ULN subscription:
    The only package available through yum is oracleasm-support.x86_64
    I have downloaded http://download.oracle.com/otn_software/asmlib/oracleasmlib-2.0.4-1.el6.x86_64.rpm but i am still missing the kernel drivers i guess:
    [root@testdb1 user]# uname -r
    2.6.32-279.5.2.el6.x86_64
    [root@testdb1 user]# cat /etc/redhat-release
    Red Hat Enterprise Linux Server release 6.3 (Santiago)
    [root@testdb1 user]# cat /etc/oracle-release
    Oracle Linux Server release 6.3
    [root@testdb1 user]# yum repolist
    Loaded plugins: rhnplugin, security
    repo id repo name status
    ol6_x86_64_UEK_latest Latest Unbreakable Enterprise Kernel for Oracle Linux 6 (x86_64) 64
    ol6_x86_64_latest Oracle Linux 6 Latest (x86_64) 17,685
    repolist: 17,749
    [root@testdb1 user]# yum list updates
    Loaded plugins: rhnplugin, security
    [root@testdb1 user]# oracleasm
    oracleasm oracleasm-discover
    [root@testdb1 user]# oracleasm update-driver
    Kernel:          2.6.32-279.5.2.el6.x86_64 x86_64
    Driver name:     oracleasm-2.6.32-279.5.2.el6.x86_64
    Driver for kernel 2.6.32-279.5.2.el6.x86_64 does not exist
    [root@testdb1 user]# yum search oracleasm
    Loaded plugins: rhnplugin, security
    ========================================================================================================== N/S Matched: oracleasm ===========================================================================================================
    oracleasm-support.x86_64 : The Oracle Automatic Storage Management support programs.
    oracleasmlib.x86_64 : The Oracle Automatic Storage Management library userspace code.
    What am i missing ?

    953423 wrote:
    Sys admins say they have kernel panics and issues with current hardware and UEK. :( Yet another problem...What hardware are you using? The UEK that ships with 6.3 is based on a Linux 3.0.16 kernel so it should have much better hardware support than the original Red Hat kernel. Though, if you have ULN access, you should open an SR for this.

Maybe you are looking for

  • Checkbox functionality

    I have a window in my form that is suppose to open when a checkbox is marked. It does this by having a WHEN-CHECKBOX-CHANGED trigger on the checkbox item. In its PL/SQL block it has an if statement that says if the checkbox is marked then open the wi

  • How to add a printer

    Hi, How could i add my HP LaserJet 4015n network printer in Solaris 10 & then register through EBS 12.1.1. Please guide.

  • Terminated with error: br REP-501: Unable to connect to the specified data

    Dear All, Oracle DB 10g installed on Windows 2003 Server machine and client is Windows 7 Pro. Forms are running fine. If I run report by puting everything in URL it is also giving result. But only when i am trying to call report via form I get an err

  • Activate the xml Type in oracle

    I've just installed an oracle 9.2.0.3 DB and I have to use the XMLType. I read that I have to activate it by launching the file : dbmsxml.sql but it doesnt't work, when I try to do an extract I have an error. An idea ?

  • R6025 error when I start AA3

    I downloaded the free trial to test out this program and see if it is worth buying for me. I installed it and everything. When I started the program it told me this was a trial and I click ok. The next pop up says that it works better if it has its o