Rcp as root

Hi.
I have an macos X server and an solaris 7 server. I would like to be able to, in an shell on the macos X server, be able to rcp copy an file from the solaris server to the macosx server as root.
But i am not allowed to do that, permissions denied. I cannot find any info an internet on how to enable this feature because i really need to do it as root because of the permissions on the files.
Of course i can use scp from the solaris to the macos X server, but it has to slow transfer rate, about 1/3 of the rcp speed.

Stupid me, i found the problem.
I had named the .rhosts file in / to .rhost
Both .rhosts in / and the hosts.equiv have to be present to allow root rcp usage.
Don��t bother reply, i found the solution by renaming the file from .rhost to .rhosts

Similar Messages

  • How do I bundle a jre with an RCP appl on Mac OSX

    Hi,
    We are making an RCP appl with kepler.
    I want to ship the jre's with the appl.
    On windows I can just ship a jre dir in the root, no problem.
    On the Mac (10.8.4) it does not seem to work, at least not in an obvious way.
    I downloaded the latest 1.7 jre (25) for Mac from the oracle website.
    I tried the following:
    unzip it and put it in a jre dir in the root => not used, falling back to system jre
    same and put '-vm' in the ini => error saying 1.6.0_51 is not supported (huh? I do not even have 1.6)
    I tried exporting an appl (with bundled jre) from eclipse using the product definition. That works but when I look at the generated appl tree I see a jre dir with another jre dir inside it ??? The inner jre dir seems to be a (partial) duplicate of the outer one.
    Ok, sort of at least, now I tried to copy my downloaded jre dir inside itself. That works, but if I remove the contents of one of them it does not work anymore and I do not really want to ship a double jre.
    Can anybody shed some light here?
    What is the optimal way to bundle a jre with an RCP application on Mac OSX?
    Thanks,
    Tom

    I have done this within our product and have it working. It's tricky because if you're using Maven to build, OS X's JRE symlink's libjvm.dylib - which Java's unzip invariably screws up.
    I was only able to get this to work by using Tycho, as the app export within the PDE is just plain broken (and seemingly unmaintained). This bug has been there for quite some time - I don't have any faith in it ever getting fixed, regardless of whatever bugzilla says.
    If you're building RCP apps for distribution - you should probably consider using Tycho anyways; admittedly there's a lot of BS that comes with it, but it's the only seemingly straightforward way to build and package an RCP app in a headless manner for continuous integration. Buckminster is supposedly also a solution - but it has less information and support than Tycho - so YMMV.
    Anyways back to your problem. Using Tycho with some custom maven magic, I was able to solve this. Essentially I downloaded the JRE from Oracle, and uploaded to our Artifactory so I could reference it using maven coordinates. I unpack that tar.gz package into the OS X distribution directory and place the package under the <your app name>.app/jre. Because of the symlink munging - you have to go and fix that, so remove the existing zero byte libjvm.dylib and relink it using ant exec. Now that you have a good JVM, you need to modify the config.ini to use the right JRE. Unfortunately you can only build this on OS X or Linux - Windows is SOL unless you can find a way to use Cygwin or equivalent. Since I'm doing this outside of Tycho's archiving phase (and theres not apparently way to slip my changes in between), I have to recreate the OS X archive.
    Hopefully this helps you solve your problem... I beat my head against the wall trying to fix this for several weeks trying to find a working solution as the error reporting is completely incorrect.
    Anyways, good luck!
    <profiles>
    <profile>
    <id>fix-jre-archives</id>
    <activation>
    <os><family>unix</family></os>
    </activation>
    <dependencies>
    <dependency>
    <groupId>com.sri</groupId>
    <artifactId>oracle-jre</artifactId>
    <version>${distrib.oracle-jre.version}</version>
    <classifier>macosx-x64</classifier>
    <type>tar.gz</type>
    </dependency>
    </dependencies>
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.8</version>
    <executions>
    <execution>
    <id>unpack-mac-jre</id>
    <phase>prepare-package</phase>
    <goals>
    <goal>unpack</goal>
    </goals>
    <configuration>
    <artifactItems>
    <artifactItem>
    <groupId>com.sri</groupId>
    <artifactId>oracle-jre</artifactId>
    <version>${distrib.oracle-jre.version}</version>
    <classifier>macosx-x64</classifier>
    <type>tar.gz</type>
    <outputDirectory>${distrib.macosx.x86_64}</outputDirectory>
    </artifactItem>
    </artifactItems>
    </configuration>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.7</version>
    <executions>
    <execution>
    <id>fix-jre-mac</id>
    <phase>package</phase>
    <goals>
    <goal>run</goal>
    </goals>
    <configuration>
    <target>
    <mkdir dir="${distrib.macosx.x86_64}/${distrib.bin.name}.app"/>
    <move file="${distrib.macosx.x86_64}/jre${distrib.jre.version}.jre" tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre"/>
    <symlink action="delete" link="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre/Contents/MacOS/libjli.dylib" />
    <symlink link="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre/Contents/MacOS/libjli.dylib"
    resource="../Home/lib/jli/libjli.dylib" overwrite="true"/>
    <concat destfile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_temp.ini" fixlastline="yes">
    <header filtering="no" trimleading="yes">
    -vm
    ../../jre/Contents/Home/lib/server/libjvm.dylib
    </header>
    <fileset file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini"/>
    </concat>
    <move file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini"
    tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_bak.ini" />
    <move file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_temp.ini"
    tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini" />
    </target>
    </configuration>
    </execution>
    <execution>
    <id>remove-director-archive-mac</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>run</goal>
    </goals>
    <configuration>
    <target>
    <delete file="${archive.macosx.x86_64}" />
    </target>
    </configuration>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.3.1</version>
    <executions>
    <execution>
    <id>manual-archive-mac</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>exec</goal>
    </goals>
    <configuration>
    <executable>zip</executable>
    <workingDirectory>${distrib.macosx.x86_64}/..</workingDirectory>
    <arguments>
    <argument>-r</argument>
    <argument>-q</argument>
    <argument>-dd</argument>
    <argument>--symlinks</argument>
    <argument>${archive.macosx.x86_64}</argument>
    <argument>${distrib.root}</argument>
    </arguments>
    </configuration>
    </execution>
    </executions>
    </plugin>
    </plugins>
    </build>
    </profile>
    </profiles>

  • Copying Files From a Remote Machine through "rcp" command not working.

    Hi All,
    I'm a new comer to this famous forum. I was trying to go through the PDF "Solaris Advanced User's Guide" .So in chapter 9-"Using the network" i came across "Copying Files From a Remote Machine". And the syntax was "rcp machinename:source destination" . And i got another note. It is like
    "The rcp command enables you to copy files from one machine to another. This command uses the remote machine's /etc/hosts.equiv and /etc/passwd files to determine whether you have unchallenged access privileges. The syntax for rcp is similar to the command syntax for cp.".
    But i maintained remote machine's IP address in my system's /etc/hosts file. But still i am unable to do the rcp from remote system to my system or vice versa.
    Always i am getting error message " **Connection refused**".
    Therefore please some one guide me how to perform the " Copying Files From a Remote Machine" through rcp command.
    Reghards
    Kartik

    Hi
    The inconvenience of using scp is that you have to type the password every time you stablish a connection. You can work around this, adding a key into the remote hosts_allow file. This implies in more maintenance.
    From the rcp man page:
    +rcp does not prompt for passwords. It either  uses  Kerberos authentication which is enabled through command-line options or your current local user name must exist on  hostname  and allow remote command execution by rsh(1).+
    From the rsh man page:
    + If you omit command, instead of executing a single command, rsh logs you in on the remote host using rlogin(1).+
    By default, rlogin is disabled on Solaris 10
    [SunOS 5.10/bash] root@wgtsinf01:/store/sun/operating-systems
    # svcs -a|grep -i rlog
    disabled       May_11   svc:/network/login:rloginSo, to use rcp you have to enable the rlogin service and set up all the configuration files. Particularly, as already suggested, I too suggest you to use scp. :)
    Cheers
    -- Andreas
    Edited by: Bank_Of_New_Zealand on 15/06/2009 13:09

  • Fast Inverse Square Root

    I expect no replies to this thread - because there are no
    answers, but I want to raise awareness of a faculty of other
    languages that is missing in Flash that would really help 3D and
    games to be built in Flash.
    Below is an optimisation of the Quake 3 inverse square root
    hack. What does it do? Well in games and 3D we use a lot of vector
    math and that involves calculating normals. To calculate a normal
    you divide a vector's parameters by it's length, the length you
    obtain by pythagoras theorem. But of course division is slow - if
    only there was a way we could get 1.0/Math.sqrt so we could just
    multiply the vector and speed it up.
    Which is what the code below does in Java / Processing. It
    runs at the same speed as Math.sqrt, but for not having to divide,
    that's still a massive speed increase.
    But we can't do this in Flash because there isn't a way to
    convert a Number/float into its integer-bits representation. Please
    could everyone whinge at Adobe about this and give us access to a
    very powerful tool. Even the guys working on Papervision are having
    trouble with this issue.

    that's just an implementation of newton's method for finding
    the zeros of a differentiable function. for a given x whose inverse
    sq rt you want to find, the function is:
    f(y) = 1/(y*y) - x;
    1. you can find the positive zero of f using newton's method.
    2. you only need to consider values of x between 1 and 10
    because you can rewrite x = 10^^E * m, where 1<=m<10.
    3. the inverseRt(x) = 10^^(-E/2) * inverseRt(m)
    4. you don't have to divide E by 2. you can use bitwise shift
    to the right by 1.
    5. you don't have to multiply 10^^(-E/2) by inverseRt(m): you
    can use a decimal shift of inverseRt(m);
    6. your left to find the positive zero of f(y) = 1/(y*y) - m,
    1<=m<10.
    and at this point i realized what, i believe, is a much
    faster way to find inverse roots: use a look-up table.
    you only need a table of inverse roots for numbers m,
    1<m<=10.
    for a given x = 10^^E*m = 10^^(e/2) *10^^(E-e/2)*m, where e
    is the largest even integer less than or equal to E (if E is
    positive, e is the greatest even integer less than or equal to E,
    if E is negative), you need to look-up, at most, two inverse roots,
    perform one multiplication and one decimal shift:
    inverseRt(x) = 10^^(-e) * inverseRt(10) *inverseRt(m), if
    E-e/2 = 1 and
    inverseRt(x) = 10^^(-e) * inverseRt(m), if E-e/2 = 0.

  • Get all calendars from root

    Hi guys,
    I am developing an integration with EWS based on php. I am using a library I found https://github.com/jamesiarmes/php-ews
    In my case users have various calendars hanging from the root, I get access to the default calendar by this:
    $request->ParentFolderIds->DistinguishedFolderId->Id = EWSType_DistinguishedFolderIdNameType::CALENDAR;
    $response = $ews->FindFolder($request);
    I also get access to shared calendars by this:
    $request->ParentFolderIds->DistinguishedFolderId->Id = EWSType_DistinguishedFolderIdNameType::PUBLIC_FOLDERS_ROOT;
    $response = $ews->FindFolder($request);
    But I am getting crazy to get all calendars hanging from the root. If I asked for all folders on the root I don't get those calendars. What service and params do I need to send to get all calendars from the root?
    Thanks!!

    If you make a FindFolder Request set the Traversal to Deep and use a restriction on the FolderClass to IPF.Appointment that should return all the Calendar folders in a mailbox eg
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:m="
    http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://sc
    hemas.microsoft.com/exchange/services/2006/types" xmlns:soap="http://schemas.xml
    soap.org/soap/envelope/">
    <soap:Header>
    <t:RequestServerVersion Version="Exchange2013_SP1" />
    </soap:Header>
    <soap:Body>
    <m:FindFolder Traversal="Deep">
    <m:FolderShape>
    <t:BaseShape>AllProperties</t:BaseShape>
    </m:FolderShape>
    <m:IndexedPageFolderView MaxEntriesReturned="1000" Offset="0" BasePoint=
    "Beginning" />
    <m:Restriction>
    <t:IsEqualTo>
    <t:FieldURI FieldURI="folder:FolderClass" />
    <t:FieldURIOrConstant>
    <t:Constant Value="IPF.Appointment" />
    </t:FieldURIOrConstant>
    </t:IsEqualTo>
    </m:Restriction>
    <m:ParentFolderIds>
    <t:DistinguishedFolderId Id="msgfolderroot" />
    </m:ParentFolderIds>
    </m:FindFolder>
    </soap:Body>
    </soap:Envelope>
    Cheers
    Glen

  • I am trying to activate root account on my MAC.  The directions I've seen do not match what is in System Preference for Accounts or Users

    I am trying to activate the root account on my new Mac Book Pro.  The instructions that I have found do not match what I have in System Preferences.  What is the process when using Users and Groups.  When I click on Join the Network Account Server- Open Directory Utility I don't see a option to  activate root user as the instructions say at http://support.apple.com/kb/HT1528
    OS X Lion
    From the Apple menu choose System Preferences....
    From the View menu choose Users & Groups.
    Click the lock and authenticate as an administrator account.
    Click Login Options....
    Click the "Edit..." or "Join..." button at the bottom right.
    Click the "Open Directory Utility..." button.
    Click the lock in the Directory Utility window.
    Enter an administrator account name and password, then click OK.
    Choose Enable Root User from the Edit menu.
    Enter the root password you wish to use in both the Password and Verify fields, then click OK.

    Do you mean you cannot select "Enable Root User" from the "Edit" menu as shown below?
    Why do you think you need to enable the root user? I've never needed it in the history of OS X.

  • How can I change JUST the root password, not my user's passwords?

    I'd like to have access to this machine remotely and be able to drop files onto it's multiple users' desktops from anywhere on our network.
    I can do this with a root login. I have enabled root, but I am unable to log in using the "Connect to Server" utility using my root credentials.
    Is there a way for me to set up my root account so that I can log in remotely using a unique password? Not the password of the account I used to enable root?
    Thanks
    -----------S

    You could do this without enabling the root account, via ssh and an ssh-keygen key properly setup.
    Then you can use
    scp file [file ...] [email protected]:/User/username/Desktop/
    This is without enabling the root account, but rather having your account's ssh-keygen generated public key stored in the remote.system.address's /private/var/root/.ssh/authorized_keys file.
    Or if you prefer you could sftp (but I find scp much more flexible).
    rsync is also available to transfer files via ssh connections.
    However, ssh, scp, sftp, rsync are best discussed in the Mac OS X Technologies > Unix Forum
    <http://discussions.apple.com/forum.jspa?forumID=735>
    Message was edited by: BobHarris

  • Error while running root.sh in 11GR2 2 node cluster

    Hi Friends,
    I am trying to setup 11gR2 2 node RAC on RHEL 4.7. The cluvfy script shows everything as passed and grid infrastructure installation completes fine until I ran root.sh script. The root.sh script when run on node 1 exits with following error in console
    DOCRAC1-N310 []:./root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:>ORACLE_OWNER= oracle
    >ORACLE_HOME= /app/oracle/grid
    >
    Enter the full pathname of the local bin directory: [usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n)
    [n]: y>Copying dbhome to /usr/local/bin ...
    The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
    [n]: y>Copying oraenv to /usr/local/bin ...
    The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
    [n]: y>Copying coraenv to /usr/local/bin ...
    >
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    2011-01-06 13:20:18: Parsing the host name
    2011-01-06 13:20:18: Checking for super user privileges
    2011-01-06 13:20:18: User has super user privileges
    Using configuration parameter file: /app/oracle/grid/crs/install/crsconfig_params
    PROTL-16: Internal Error
    Command return code of 41 (10496) from command: /app/oracle/grid/bin/ocrconfig -local -upgrade oracle oinstall
    Failed to create or upgrade OLRWhen I checked the logs in $GRID_HOME/log/<Node1>/client
    I can see errors in ocrconfig_12426.log as
    Oracle Database 11g Clusterware Release 11.2.0.1.0 - Production Copyright 1996, 2009 Oracle. All rights reserved.
    2011-01-06 13:20:19.133: [ OCRCONF][2564297536]ocrconfig starts...
    2011-01-06 13:20:19.134: [ default][2564297536]utgdv: Could not find occonfig_loc property or ocrconfig_loc pointing to nothing
    [ OCRCONF][2564297536]Error retrieving OCR configuration. Return [4]. procr_get_conf rc [41] error buffer [Error retrieving ocrconfig_loc property.]
    2011-01-06 13:20:19.134: [ OCRCONF][2564297536]Error [4] retrieving configuration type
    2011-01-06 13:20:19.134: [ OCRCONF][2564297536]Exiting [status=failed]...and in crsctl.log
    [  CRSCTL][2566642592]Command::initStatic: clsugetconf failed with return code 4, status 1
    2011-01-06 13:19:01.372: [  CRSCTL][2566642592]Command::checkConfig: clsugetconf returned unknown status
    2011-01-06 13:19:11.502: [ default][2566642592]utgdv: Could not find occonfig_loc property or ocrconfig_loc pointing to nothing
    [ default][2566642592]Error retrieving OCR configuration. Return [4]. procr_get_conf rc [41] error buffer [Error retrieving ocrconfig_loc property.]
    [  CRSCTL][2566642592]Command::initStatic: clsugetconf failed with return code 4, status 1
    2011-01-06 13:19:11.503: [  CRSCTL][2566642592]Command::checkConfig: clsugetconf returned unknown statusI have tried to deinstall, reconfigure , but still no luck. I will be trying to use Oracle Deinstall utlity now. Before that I would like to get comments from experts
    Thanks ,
    SSN.

    Consider moving this question to the Real Application Clusters forum.
    Confirm that +/app/oracle/grid/crs/install/crsconfig_params+ exists before running root.sh - if it does, please post contents using tags to encapsulate the config text data.
    Are you using ASM for managing voting and OCR disk storage, or are you manually setting these to specific block devices?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error while running the root.sh script during Grid installation on a pre-installed 11g database .

    Hi Oracle Experts,
    I am trying to setup a new GRID Standalone Infrastructure on a previously installed Oracle 11g database.
    It runs all fine but when prompts to run the root.sh script it does not allow to proceed as it prompts to overwrite the existing path for /usr/bin/local
    well, I google'd and tried with overwrite : Y . It prompted to run the script but it failed ...
    Could you please help me on this ..
    [root@asm ~]# /u01/app/11.2.0/grid/root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
        ORACLE_OWNER= oracle
        ORACLE_HOME=  /u01/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [/usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying dbhome to /usr/local/bin ...
    The file "oraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying oraenv to /usr/local/bin ...
    The file "coraenv" already exists in /usr/local/bin.  Overwrite it? (y/n)
    [n]: y
       Copying coraenv to /usr/local/bin ...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    To configure Grid Infrastructure for a Stand-Alone Server run the following command as the root user:
    /u01/app/11.2.0/grid/perl/bin/perl -I/u01/app/11.2.0/grid/perl/lib -I/u01/app/11.2.0/grid/crs/install /u01/app/11.2.0/grid/crs/install/roothas.pl
    [root@asm ~]# /u01/app/11.2.0/grid/perl/bin/perl -I/u01/app/11.2.0/grid/perl/lib -I/u01/app/11.2.0/grid/crs/install /u01/app/11.2.0/grid/                              crs/install/roothas.pl
    2015-03-18 01:42:25: Checking for super user privileges
    2015-03-18 01:42:25: User has super user privileges
    2015-03-18 01:42:25: Parsing the host name
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    Creating trace directory
    LOCAL ADD MODE
    Creating OCR keys for user 'oracle', privgrp 'oinstall'..
    Operation successful.
    CRS-4664: Node asm successfully pinned.
    Adding daemon to inittab
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting
    acfsroot: ACFS-9320: Missing advmutil.
    acfsroot: ACFS-9320: Missing advmutil.bin.
    acfsroot: ACFS-9320: Missing fsck.acfs.
    acfsroot: ACFS-9320: Missing fsck.acfs.bin.
    acfsroot: ACFS-9320: Missing mkfs.acfs.
    acfsroot: ACFS-9320: Missing mkfs.acfs.bin.
    acfsroot: ACFS-9320: Missing mount.acfs.
    acfsroot: ACFS-9320: Missing mount.acfs.bin.
    acfsroot: ACFS-9320: Missing acfsdbg.
    acfsroot: ACFS-9320: Missing acfsdbg.bin.
    acfsroot: ACFS-9320: Missing acfsutil.
    acfsroot: ACFS-9320: Missing acfsutil.bin.
    acfsroot: ACFS-9301: ADVM/ACFS installation can not proceed:
    acfsroot: ACFS-9302: No installation files found at /u01/app/11.2.0/grid/install/usm/EL5/x86_64/2.6.18-8/2.6.18-8.el5xen-x86_64/bin.
    asm     2015/03/18 01:43:06     /u01/app/11.2.0/grid/cdata/asm/backup_20150318_014306.olr
    Successfully configured Oracle Grid Infrastructure for a Standalone Server
    when I checked for ASM instance its not running ... but just ohasd service and nothing else ..
    [root@asm grid]# ps -ef | grep pmon
    oracle    5831     1  0 01:15 ?        00:00:01 ora_pmon_db11g1
    root     12625  8794  0 02:30 pts/2    00:00:00 grep pmon
    [root@asm grid]#
    [root@asm grid]#
    [root@asm grid]# ps -ef | grep d.bin
    oracle   12643     1  5 02:30 ?        00:00:00 /u01/app/11.2.0/grid/bin/ohasd.bin reboot
    root     12715  8794  0 02:30 pts/2    00:00:00 grep d.bin
    [root@asm grid]#
    Could you please help .

    hi,
    The issue not with /usr/bin/local.  When you excute root.sh, it will try configure the ASM with New GRID HOME. Issue started, whent tried to start
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting <<=================================================================
    acfsroot: ACFS-9320: Missing advmutil.
    Please let us know the below details
    ==> Acfs is configured the servers??
         ==>acfsutil registry
                   acfsutil info fs output.
    ==> With out ASM instance , How the database, CRS STarted ???
    ==> Please try stop and start the crs.
    ==> crsctl query crs activeversion output
    Regards
    Krishnan

  • Error while installing ADEP 10 : The store 'avm://sitestore' has a duplicate root node entry

    Hi,
    I am trying to install  ADEP 10 (all modules including Content Services) on JBoss 5.1 through manual/custom (means non turnkey) installation.
    I have done the configuration/steps as per the instructions in "adep_prepare_install_single.pdf". I have copied the adobe-contentservices.ear, adobe-livecycle-jboss.ear, adobe-livecycle-native-jboss-x86_win32.ear and adobe-workspace-client.ear to deploy folder of JBoss. Except Content Services every other applications are deployed and running.
    we want contentservices is up and running, but are errors related to it.
    I see the following error in  the JBoss console, please help me to resolve it.
    =========================================================
    12:17:21,538 ERROR [[/contentspace]] Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
    org.alfresco.error.AlfrescoRuntimeException: The store 'avm://sitestore' has a duplicate root node entry.
            at org.alfresco.repo.admin.ConfigurationChecker.check(ConfigurationChecker.java:294)
            at org.alfresco.repo.admin.ConfigurationChecker.access$000(ConfigurationChecker.java:74)
            at org.alfresco.repo.admin.ConfigurationChecker$1.execute(ConfigurationChecker.java:186)
            at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransacti onHelper.java:326)
            at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransacti onHelper.java:252)
            at org.alfresco.repo.admin.ConfigurationChecker.onBootstrap(ConfigurationChecker.java:190)
            at org.alfresco.util.AbstractLifecycleBean.onApplicationEvent(AbstractLifecycleBean.java:62)
            at org.springframework.context.event.SimpleApplicationEventMulticaster$1.run(SimpleApplicati onEventMulticaster.java:77)
            at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)
            at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(Simple ApplicationEventMulticaster.java:75)
            at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractAppli cationContext.java:246)
            at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractAppl icationContext.java:617)
            at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicatio nContext.java:355)
            at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.j ava:246)
            at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.jav a:189)
            at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderLis tener.java:49)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeplo yment.java:310)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.ja va:142)
            at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
            at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
            at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
            at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
            at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
            at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
            at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
            at $Proxy38.start(Unknown Source)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:42)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:37)
            at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(Sim pleControllerContextAction.java:62)
            at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControlle rContextAction.java:71)
            at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerC ontextActions.java:51)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext .java:286)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
            at org.jboss.system.ServiceController.start(ServiceController.java:460)
            at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
            at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(Abstra ctSimpleRealDeployer.java:62)
            at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer .java:50)
            at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1157)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1178)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1210)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
            at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
            at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeploye rAdapter.java:117)
            at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDepl oyAction.java:70)
            at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractP rofileAction.java:53)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(Abstract ProfileService.java:361)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile( AbstractProfileService.java:306)
            at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootst rap.java:271)
            at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
            at org.jboss.Main.boot(Main.java:221)
            at org.jboss.Main$1.run(Main.java:556)
            at java.lang.Thread.run(Thread.java:662)
    12:17:21,557 ERROR [[/contentspace]] Exception sending context initialized event to listener instance of class org.alfresco.web.app.ContextListener
    org.alfresco.error.AlfrescoRuntimeException: The store 'avm://sitestore' has a duplicate root node entry.
            at org.alfresco.repo.admin.ConfigurationChecker.check(ConfigurationChecker.java:294)
            at org.alfresco.repo.admin.ConfigurationChecker.access$000(ConfigurationChecker.java:74)
            at org.alfresco.repo.admin.ConfigurationChecker$1.execute(ConfigurationChecker.java:186)
            at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransacti onHelper.java:326)
            at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransacti onHelper.java:252)
            at org.alfresco.repo.admin.ConfigurationChecker.onBootstrap(ConfigurationChecker.java:190)
            at org.alfresco.util.AbstractLifecycleBean.onApplicationEvent(AbstractLifecycleBean.java:62)
            at org.springframework.context.event.SimpleApplicationEventMulticaster$1.run(SimpleApplicati onEventMulticaster.java:77)
            at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)
            at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(Simple ApplicationEventMulticaster.java:75)
            at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractAppli cationContext.java:246)
            at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractAppl icationContext.java:617)
            at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicatio nContext.java:355)
            at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.j ava:246)
            at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.jav a:189)
            at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderLis tener.java:49)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeplo yment.java:310)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.ja va:142)
            at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
            at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
            at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
            at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
            at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
            at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
            at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
            at $Proxy38.start(Unknown Source)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:42)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:37)
            at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(Sim pleControllerContextAction.java:62)
            at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControlle rContextAction.java:71)
            at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerC ontextActions.java:51)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext .java:286)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
            at org.jboss.system.ServiceController.start(ServiceController.java:460)
            at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
            at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(Abstra ctSimpleRealDeployer.java:62)
            at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer .java:50)
            at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1157)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1178)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1210)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
            at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
            at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeploye rAdapter.java:117)
            at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDepl oyAction.java:70)
            at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractP rofileAction.java:53)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(Abstract ProfileService.java:361)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile( AbstractProfileService.java:306)
            at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootst rap.java:271)
            at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
            at org.jboss.Main.boot(Main.java:221)
            at org.jboss.Main$1.run(Main.java:556)
            at java.lang.Thread.run(Thread.java:662)
    12:17:21,593 ERROR [StandardContext] Error listenerStart
    12:17:21,596 ERROR [StandardContext] Context [/contentspace] startup failed due to previous errors
    12:17:21,601 INFO  [[/contentspace]] Closing Spring root WebApplicationContext
    12:17:21,602 INFO  [[/contentspace]] Shutting down Log4J
    12:17:21,606 ERROR [AbstractKernelController] Error installing to Start: name=jboss.web.deployment:war=/contentspace state=Create mode=Manual requiredState=Installed
    org.jboss.deployers.spi.DeploymentException: URL file:/D:/jboss-5.1.0.GA/server/default/tmp/a154a5q-ffzvqd-h1x60n0m-1-h1x62tjn-9v/contents ervices.war/ deployment failed
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeplo yment.java:331)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.ja va:142)
            at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
            at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
            at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
            at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
            at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
            at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
            at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
            at $Proxy38.start(Unknown Source)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:42)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:37)
            at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(Sim pleControllerContextAction.java:62)
            at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControlle rContextAction.java:71)
            at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerC ontextActions.java:51)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext .java:286)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
            at org.jboss.system.ServiceController.start(ServiceController.java:460)
            at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
            at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(Abstra ctSimpleRealDeployer.java:62)
            at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer .java:50)
            at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1157)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1178)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1210)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
            at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
            at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeploye rAdapter.java:117)
            at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDepl oyAction.java:70)
            at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractP rofileAction.java:53)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(Abstract ProfileService.java:361)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile( AbstractProfileService.java:306)
            at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootst rap.java:271)
            at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
            at org.jboss.Main.boot(Main.java:221)
            at org.jboss.Main$1.run(Main.java:556)
            at java.lang.Thread.run(Thread.java:662)
    12:17:26,589 ERROR [AbstractKernelController] Error installing to Real: name=vfszip:/D:/jboss-5.1.0.GA/server/default/deploy/adobe-contentservices.ear/ state=PreReal mode=Manual re
    quiredState=Real
    org.jboss.deployers.spi.DeploymentException: URL file:/D:/jboss-5.1.0.GA/server/default/tmp/a154a5q-ffzvqd-h1x60n0m-1-h1x62tjn-9v/contents ervices.war/ deployment failed
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeplo yment.java:331)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.ja va:142)
            at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
            at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
            at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
            at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
            at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
            at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
            at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
            at $Proxy38.start(Unknown Source)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:42)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycle Action.java:37)
            at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(Sim pleControllerContextAction.java:62)
            at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControlle rContextAction.java:71)
            at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerC ontextActions.java:51)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext .java:286)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
            at org.jboss.system.ServiceController.start(ServiceController.java:460)
            at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
            at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(Abstra ctSimpleRealDeployer.java:62)
            at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer .java:50)
            at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1157)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1178)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.ja va:1210)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
            at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
            at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeploye rAdapter.java:117)
            at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDepl oyAction.java:70)
            at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractP rofileAction.java:53)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(Abstract ProfileService.java:361)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext. java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:93 4)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1 082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:9 84)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile( AbstractProfileService.java:306)
            at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootst rap.java:271)
            at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
            at org.jboss.Main.boot(Main.java:221)
            at org.jboss.Main$1.run(Main.java:556)
            at java.lang.Thread.run(Thread.java:662)

    Hi,
    I am installing ADEP 10 newly.
    This problem has been resolved .
    I removed the folder "lucene-indexes" from below location, the problem resolved.
    C:\Adobe\ADEP\Document Services 10.0\lccs_data\
    I think, http://lucasmanual.com/pdf/Alfresco.pdf is useful.
    Thanks,
    V B Sajjan.

  • WDTV Live has lost all content, Root Directory no longer showing on PC - HELP

    Hi All, I disconnected my WDTV Live last night from my TV and connected directly to my router with a network cable. When I click on the WDTV under networks in my computer there is nothing there at all! no root folder, none of my files etc. I have tried dropping a new folder in there but it wont let me and the option to right click add new folder is not availble. When plugged back to the tv there is no file contents either, everything is gone. Please help, I'm runnning Windows 7, the WD still turns on, I have no files no root directory, NOTHING!

    A co-worker of mine is having a very similar problem with her WD Media Hub.  I was the one who helped her get it setup when she first purchased the media hub (a few years back) and so she came to me when she recently went to use it and it acted like as if there was no content on the thing at all.   She brought me the device to work and i was able to get it connected to the network and access it via IE (using the web page at http://10.70.0.86:80/) but any attempt to connect directly via windows explorer fails.  The hubs name is the default WDTVLiveHub and when I type in \\WDTVLIveHub\ in Windows Explorer it can’t find the device nor can I map a network drive to it.  This is how we originally setup her media hub with content, using Windows Explore to copy a bunch of content.   When I was able to access the device via IE at 10.70.0.86:80 I went to the System and selected Storage and in the drop down for device the drop down is blank with nothing to select.  In the top right there as a red exclamation mark and when I selected it I got a warning saying the drive's was near capacity.  This tells me the files are there but for some reason they can’t be accessed. I did a hard reset via the button on the bottom of the device but that did not fix the problem with accessing it via Windows Explorer.  I told her to take it home and see if it will work for her when she hooks it up to her tv,.It’s definitely not a firmware update issue because she's not had it connected to the internet so any firmware update would have had to been done manually. Any feedback or troubleshooting suggestions is most welcome.  

  • How can i get also the files in the root directory and how can i for testing add items of IEnumerable FTPListDetail to List string ?

    What i get is only the directories and files that in other nodes. But i have also files on the root directory and i never
    get them. This is a screenshot of my program after i got the content of my ftp. I'm using treeView to display my ftp content:
    You can see two directories from the root but no files on the root it self. And in my ftp server host i have files in the root direcory.
    This is the method i'm using to get the directory listing:
    public IEnumerable<FTPListDetail> GetDirectoryListing(string rootUri)
    var CurrentRemoteDirectory = rootUri;
    var result = new StringBuilder();
    var request = GetWebRequest(WebRequestMethods.Ftp.ListDirectoryDetails, CurrentRemoteDirectory);
    using (var response = request.GetResponse())
    using (var reader = new StreamReader(response.GetResponseStream()))
    string line = reader.ReadLine();
    while (line != null)
    result.Append(line);
    result.Append("\n");
    line = reader.ReadLine();
    if (string.IsNullOrEmpty(result.ToString()))
    return new List<FTPListDetail>();
    result.Remove(result.ToString().LastIndexOf("\n"), 1);
    var results = result.ToString().Split('\n');
    string regex =
    @"^" + //# Start of line
    @"(?<dir>[\-ld])" + //# File size
    @"(?<permission>[\-rwx]{9})" + //# Whitespace \n
    @"\s+" + //# Whitespace \n
    @"(?<filecode>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<owner>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<group>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<size>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<month>\w{3})" + //# Month (3 letters) \n
    @"\s+" + //# Whitespace \n
    @"(?<day>\d{1,2})" + //# Day (1 or 2 digits) \n
    @"\s+" + //# Whitespace \n
    @"(?<timeyear>[\d:]{4,5})" + //# Time or year \n
    @"\s+" + //# Whitespace \n
    @"(?<filename>(.*))" + //# Filename \n
    @"$"; //# End of line
    var myresult = new List<FTPListDetail>();
    foreach (var parsed in results)
    var split = new Regex(regex)
    .Match(parsed);
    var dir = split.Groups["dir"].ToString();
    var permission = split.Groups["permission"].ToString();
    var filecode = split.Groups["filecode"].ToString();
    var owner = split.Groups["owner"].ToString();
    var group = split.Groups["group"].ToString();
    var filename = split.Groups["filename"].ToString();
    var size = split.Groups["size"].Length;
    myresult.Add(new FTPListDetail()
    Dir = dir,
    Filecode = filecode,
    Group = group,
    FullPath = CurrentRemoteDirectory + "/" + filename,
    Name = filename,
    Owner = owner,
    Permission = permission,
    return myresult;
    And then this method to loop over and listing :
    private int total_dirs;
    private int searched_until_now_dirs;
    private int max_percentage;
    private TreeNode directories_real_time;
    private string SummaryText;
    private TreeNode CreateDirectoryNode(string path, string name , int recursive_levl )
    var directoryNode = new TreeNode(name);
    var directoryListing = GetDirectoryListing(path);
    var directories = directoryListing.Where(d => d.IsDirectory);
    var files = directoryListing.Where(d => !d.IsDirectory);
    total_dirs += directories.Count<FTPListDetail>();
    searched_until_now_dirs++;
    int percentage = 0;
    foreach (var dir in directories)
    directoryNode.Nodes.Add(CreateDirectoryNode(dir.FullPath, dir.Name, recursive_levl+1));
    if (recursive_levl == 1)
    TreeNode temp_tn = (TreeNode)directoryNode.Clone();
    this.BeginInvoke(new MethodInvoker( delegate
    UpdateList(temp_tn);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    foreach (var file in files)
    TreeNode file_tree_node = new TreeNode(file.Name);
    file_tree_node.Tag = "file" ;
    directoryNode.Nodes.Add(file_tree_node);
    numberOfFiles.Add(file.FullPath);
    return directoryNode;
    Then updating the treeView:
    DateTime last_update;
    private void UpdateList(TreeNode tn_rt)
    TimeSpan ts = DateTime.Now - last_update;
    if (ts.TotalMilliseconds > 200)
    last_update = DateTime.Now;
    treeViewMS1.BeginUpdate();
    treeViewMS1.Nodes.Clear();
    treeViewMS1.Nodes.Add(tn_rt);
    ExpandToLevel(treeViewMS1.Nodes, 1);
    treeViewMS1.EndUpdate();
    And inside a backgroundworker do work how i'm using it:
    var root = Convert.ToString(e.Argument);
    var dirNode = CreateDirectoryNode(root, "root", 1);
    e.Result = dirNode;
    And last the FTPListDetail class:
    public class FTPListDetail
    public bool IsDirectory
    get
    return !string.IsNullOrWhiteSpace(Dir) && Dir.ToLower().Equals("d");
    internal string Dir { get; set; }
    public string Permission { get; set; }
    public string Filecode { get; set; }
    public string Owner { get; set; }
    public string Group { get; set; }
    public string Name { get; set; }
    public string FullPath { get; set; }
    Now the main problem is that when i list the files and directories and display them in the treeView it dosen't get/display
    the files in the root directory. Only in the sub nodes.
    I will see the files inside hello and stats but i need also to see the files in the root directory.
    1. How can i get and list/display the files of the root directory ?
    2. For the test i tried to add to a List<string> the items in var files to see if i get the root files at all.
       This is what i tried in the CreateDirectoryNode before it i added:
    private List<string> testfiles = new List<string>();
    Then after var files i did:
    testfiles.Add(files.ToList()
    But this is wrong. I just wanted to see in testfiles what items i'm getting in var files in the end of the process.
    Both var files and directoryListing are IEnumerable<FTPListDetail> type.
    The most important is to make the number 1 i mentioned and then to do number 2.

    Risa no.
    What i mean is this. This is a screenshot of my ftp server at my host(ipage.com).
    Now this is a screenshot of my program and you can see that in my program i have only the directories hello stats test but i don't have the files in the root: htaccess.config swp txt 1.txt 2.png....all this files i don't have it on my treeView.
    What i want it to be is that on my program on the treeView i will also display the files like in my ftp server.
    I see in my program only the directories and the files in the directories but i don't see the files on the root directory/node.
    I need it to be like in my ftp server i need to see in my program the htaccess 1.txt 2.png and so on.
    So what i wrote in my main question is that in the var files i see this files of the root directory i just don't know to add and display them in my treeView(my treeView is treeViewMS1).
    I know i checked in my program in the method CreateDirectoryNode i see in the first iteration of the recursive that var files contain this root files i just dont know how to add and display them in my treeView.
    On the next iterations when it does the recursive it's adding the directories hello stats test and the files in this directories but i need it to first add the root files.

  • [SOLVED] Kernel panic - unable to mount root fs

    I'm having some trouble with my Toshiba NB255 netbook. It no longer boots after I performed a major pacman upgrade. It hangs with this error message:
    http://imgur.com/Cxj1z
    I did some research and found a couple of threads with problems similar to mine:
    https://bbs.archlinux.org/viewtopic.php?id=98771
    https://bbs.archlinux.org/viewtopic.php?id=98496
    From what I could tell, both had something to do with the initrd, but I'm not sure what to do in my specific situation. Additionally, according to my pacman.log the initrd was updated successfully during the upgrade. I did, however, also recently install some stuff to try to get my iPhone to tether to the netbook over USB (
    menu.lst: (the "root=" part of the first option was originally in the disk-by-uuid format, I changed it trying to fix the issue)
    # Config file for GRUB - The GNU GRand Unified Bootloader
    # /boot/grub/menu.lst
    # DEVICE NAME CONVERSIONS
    # Linux Grub
    # /dev/fd0 (fd0)
    # /dev/sda (hd0)
    # /dev/sdb2 (hd1,1)
    # /dev/sda3 (hd0,2)
    # FRAMEBUFFER RESOLUTION SETTINGS
    # +-------------------------------------------------+
    # | 640x480 800x600 1024x768 1280x1024
    # ----+--------------------------------------------
    # 256 | 0x301=769 0x303=771 0x305=773 0x307=775
    # 32K | 0x310=784 0x313=787 0x316=790 0x319=793
    # 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
    # 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
    # +-------------------------------------------------+
    # for more details and different resolutions see
    # [url]http://wiki.archlinux.org/index.php/GRUB#Framebuffer_Resolution[/url]
    # general configuration:
    timeout 2
    default 0
    color light-blue/black light-cyan/blue
    # boot sections follow
    # each is implicitly numbered from 0 in the order of appearance below
    # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
    # (0) Arch Linux
    title Arch Linux
    root (hd0,0)
    kernel /vmlinuz26 root=/dev/sda3 resume=/dev/disk/by-uuid/55dfc8bd-98b4-4f27-875c-e7b06c8b1c3e ro
    initrd /kernel26.img
    # (1) Arch Linux
    title Arch Linux Fallback
    root (hd0,0)
    kernel /vmlinuz26 root=/dev/disk/by-uuid/0c38b0a8-2ce1-4b16-b902-3d9f0cc8b2cc ro
    initrd /kernel26-fallback.img
    # (2) Windows
    #title Windows
    #rootnoverify (hd0,0)
    #makeactive
    #chainloader +1
    dmesg.log:
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.34-ARCH (tobias@T-POWA-LX) (gcc version 4.5.0 20100610 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jul 5 21:03:38 UTC 2010
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
    BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
    BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000003f5d0000 (usable)
    BIOS-e820: 000000003f5d0000 - 000000003f5e0000 (ACPI data)
    BIOS-e820: 000000003f5e0000 - 000000003f5e3000 (ACPI NVS)
    BIOS-e820: 000000003f5e3000 - 0000000040000000 (reserved)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    DMI present.
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    last_pfn = 0x3f5d0 max_arch_pfn = 0x100000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-CFFFF write-protect
    D0000-DFFFF uncachable
    E0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask 0C0000000 write-back
    1 base 03F600000 mask 0FFE00000 uncachable
    2 base 03F800000 mask 0FF800000 uncachable
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000001000 (reserved)
    modified: 0000000000001000 - 0000000000002000 (usable)
    modified: 0000000000002000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009dc00 (usable)
    modified: 000000000009dc00 - 00000000000a0000 (reserved)
    modified: 00000000000dc000 - 00000000000e0000 (reserved)
    modified: 00000000000e4000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 000000003f5d0000 (usable)
    modified: 000000003f5d0000 - 000000003f5e0000 (ACPI data)
    modified: 000000003f5e0000 - 000000003f5e3000 (ACPI NVS)
    modified: 000000003f5e3000 - 0000000040000000 (reserved)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000fec00000 - 00000000fec10000 (reserved)
    modified: 00000000fee00000 - 00000000fee01000 (reserved)
    modified: 00000000ff000000 - 0000000100000000 (reserved)
    initial memory mapped : 0 - 01800000
    found SMP MP-table at [c00f7d40] f7d40
    init_memory_mapping: 0000000000000000-00000000377fe000
    0000000000 - 0000400000 page 4k
    0000400000 - 0037400000 page 2M
    0037400000 - 00377fe000 page 4k
    kernel direct mapping tables up to 377fe000 @ 15000-1a000
    RAMDISK: 3f453000 - 3f5c0000
    Allocated new RAMDISK: 00100000 - 0026c574
    Move RAMDISK from 000000003f453000 - 000000003f5bf573 to 00100000 - 0026c573
    ACPI: RSDP 000f7ca0 00024 (v02 TOSCPL)
    ACPI: XSDT 3f5d7ae9 00074 (v01 TOSCPL TOSCPL00 06040000 LTP 00000000)
    ACPI: FACP 3f5dfc60 000F4 (v03 TOSCPL TOSCPL00 06040000 PTL 00000002)
    ACPI: DSDT 3f5d8c7f 06F6D (v01 TOSCPL TOSCPL00 06040000 MSFT 03000000)
    ACPI: FACS 3f5e2fc0 00040
    ACPI: TCPA 3f5dfd54 00032 (v01 Phoeni x 06040000 TL 00000000)
    ACPI: HPET 3f5dfd86 00038 (v01 DELL M09 06040000 LOHR 0000005A)
    ACPI: MCFG 3f5dfdbe 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    ACPI: SLIC 3f5dfdfa 00176 (v01 TOSCPL TOSCPL00 06040000 LOHR 00000000)
    ACPI: APIC 3f5dff70 00068 (v01 TOSCPL TOSCPL00 06040000 LTP 00000000)
    ACPI: BOOT 3f5dffd8 00028 (v01 TOSCPL TOSCPL00 06040000 LTP 00000001)
    ACPI: SSDT 3f5d80df 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    ACPI: SSDT 3f5d8039 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624)
    ACPI: SSDT 3f5d7b5d 004DC (v02 PmRef CpuPm 00003000 INTL 20050624)
    ACPI: Local APIC address 0xfee00000
    125MB HIGHMEM available.
    887MB LOWMEM available.
    mapped low ram: 0 - 377fe000
    low ram: 0 - 377fe000
    Zone PFN ranges:
    DMA 0x00000001 -> 0x00001000
    Normal 0x00001000 -> 0x000377fe
    HighMem 0x000377fe -> 0x0003f5d0
    Movable zone start PFN for each node
    early_node_map[3] active PFN ranges
    0: 0x00000001 -> 0x00000002
    0: 0x00000010 -> 0x0000009d
    0: 0x00000100 -> 0x0003f5d0
    On node 0 totalpages: 259422
    free_area_init_node: node 0, pgdat c1402fc0, node_mem_map c1563020
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3950 pages, LIFO batch:0
    Normal zone: 1744 pages used for memmap
    Normal zone: 221486 pages, LIFO batch:31
    HighMem zone: 252 pages used for memmap
    HighMem zone: 31958 pages, LIFO batch:7
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x1008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a201 base: 0xfed00000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 24
    early_res array is doubled to 64 at [16000 - 167ff]
    PM: Registered nosave memory: 0000000000002000 - 0000000000010000
    PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000
    PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    PERCPU: Embedded 14 pages/cpu @c2000000 s34388 r0 d22956 u2097152
    pcpu-alloc: s34388 r0 d22956 u2097152 alloc=1*4194304
    pcpu-alloc: [0] 0 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257394
    Kernel command line: root=/dev/disk/by-uuid/0c38b0a8-2ce1-4b16-b902-3d9f0cc8b2cc resume=/dev/disk/by-uuid/55dfc8bd-98b4-4f27-875c-e7b06c8b1c3e ro
    PID hash table entries: 4096 (order: 2, 16384 bytes)
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    allocated 5190700 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Subtract (52 early reservations)
    #1 [0000001000 - 0000002000] EX TRAMPOLINE
    #2 [0001000000 - 000155ad84] TEXT DATA BSS
    #3 [000155b000 - 0001561164] BRK
    #4 [00000f7d50 - 0000100000] BIOS reserved
    #5 [00000f7d40 - 00000f7d50] MP-table mpf
    #6 [000009dc00 - 000009e071] BIOS reserved
    #7 [000009e1c1 - 00000f7d40] BIOS reserved
    #8 [000009e071 - 000009e1c1] MP-table mpc
    #9 [0000010000 - 0000011000] TRAMPOLINE
    #10 [0000011000 - 0000015000] ACPI WAKEUP
    #11 [0000015000 - 0000016000] PGTABLE
    #12 [0000100000 - 000026d000] NEW RAMDISK
    #13 [0001562000 - 0001563000] BOOTMEM
    #14 [0001563000 - 0001d53000] BOOTMEM
    #15 [000155adc0 - 000155adc4] BOOTMEM
    #16 [000155ae00 - 000155aec0] BOOTMEM
    #17 [000155aec0 - 000155af14] BOOTMEM
    #18 [0001d53000 - 0001d56000] BOOTMEM
    #19 [000155af40 - 000155af4c] BOOTMEM
    #20 [0001561180 - 0001561780] BOOTMEM
    #21 [000155af80 - 000155afa5] BOOTMEM
    #22 [000155afc0 - 000155afe7] BOOTMEM
    #23 [0001561780 - 0001561924] BOOTMEM
    #24 [0001561940 - 0001561980] BOOTMEM
    #25 [0001561980 - 00015619c0] BOOTMEM
    #26 [00015619c0 - 0001561a00] BOOTMEM
    #27 [0001561a00 - 0001561a40] BOOTMEM
    #28 [0001561a40 - 0001561a80] BOOTMEM
    #29 [0001561a80 - 0001561ac0] BOOTMEM
    #30 [0001561ac0 - 0001561b00] BOOTMEM
    #31 [0001561b00 - 0001561b40] BOOTMEM
    #32 [0001561b40 - 0001561b80] BOOTMEM
    #33 [0001561b80 - 0001561bc0] BOOTMEM
    #34 [0001561bc0 - 0001561c00] BOOTMEM
    #35 [0001561c00 - 0001561c40] BOOTMEM
    #36 [0001561c40 - 0001561c50] BOOTMEM
    #37 [0001561c80 - 0001561c90] BOOTMEM
    #38 [0001561cc0 - 0001561d3d] BOOTMEM
    #39 [0001561d40 - 0001561dbd] BOOTMEM
    #40 [0002000000 - 000200e000] BOOTMEM
    #41 [0002200000 - 000220e000] BOOTMEM
    #42 [0001561dc0 - 0001561dc4] BOOTMEM
    #43 [0001561e00 - 0001561e04] BOOTMEM
    #44 [0001561e40 - 0001561e48] BOOTMEM
    #45 [0001561e80 - 0001561e88] BOOTMEM
    #46 [0001561ec0 - 0001561f68] BOOTMEM
    #47 [0001561f80 - 0001561fe8] BOOTMEM
    #48 [0001d56000 - 0001d5a000] BOOTMEM
    #49 [0001d5a000 - 0001dda000] BOOTMEM
    #50 [0001dda000 - 0001e1a000] BOOTMEM
    #51 [000220e000 - 000270142c] BOOTMEM
    Initializing HighMem for node 0 (000377fe:0003f5d0)
    Memory: 1016576k/1038144k available (2930k kernel code, 21112k reserved, 1209k data, 408k init, 128840k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff1e000 - 0xfffff000 ( 900 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc140b000 - 0xc1471000 ( 408 kB)
    .data : 0xc12dc8fc - 0xc140adc0 (1209 kB)
    .text : 0xc1000000 - 0xc12dc8fc (2930 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Hierarchical RCU implementation.
    NR_IRQS:512
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    hpet clockevent registered
    Fast TSC calibration using PIT
    Detected 1662.845 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3327.26 BogoMIPS (lpj=5542816)
    Security Framework initialized
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 5 MCE banks
    CPU0: Thermal monitoring handled by SMI
    using mwait in idle threads.
    Performance Events: Atom events, Intel PMU driver.
    ... version: 3
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    Checking 'hlt' instruction... OK.
    ACPI: Core revision 20100121
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Atom(TM) CPU N455 @ 1.66GHz stepping 0a
    APIC calibration not consistent with PM-Timer: 299ms instead of 100ms
    APIC delta adjusted to PM-Timer: 1039171 (3117494)
    Booting Node 0, Processors #1 Ok.
    Initializing CPU#1
    CPU0: Thermal monitoring enabled (TM1)
    Brought up 2 CPUs
    Total of 2 processors activated (6653.18 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    PCI: Using MMCONFIG for extended config space
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: SSDT 3f5d89a8 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    ACPI: SSDT 3f5d833e 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    ACPI: SSDT 3f5d8bab 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    ACPI: SSDT 3f5d8923 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f288), AE_ALREADY_EXISTS
    ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xf7ffffff]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xfdff]
    pci 0000:00:02.0: reg 10: [mem 0xf0200000-0xf027ffff]
    pci 0000:00:02.0: reg 14: [io 0x18d0-0x18d7]
    pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
    pci 0000:00:02.0: reg 1c: [mem 0xf0000000-0xf00fffff]
    pci 0000:00:02.1: reg 10: [mem 0xf0280000-0xf02fffff]
    pci 0000:00:1b.0: reg 10: [mem 0xf0300000-0xf0303fff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.2: PME# disabled
    pci 0000:00:1d.0: reg 20: [io 0x1820-0x183f]
    pci 0000:00:1d.1: reg 20: [io 0x1840-0x185f]
    pci 0000:00:1d.2: reg 20: [io 0x1860-0x187f]
    pci 0000:00:1d.3: reg 20: [io 0x1880-0x189f]
    pci 0000:00:1d.7: reg 10: [mem 0xf0504000-0xf05043ff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0x18e8-0x18ef]
    pci 0000:00:1f.2: reg 14: [io 0x18dc-0x18df]
    pci 0000:00:1f.2: reg 18: [io 0x18e0-0x18e7]
    pci 0000:00:1f.2: reg 1c: [io 0x18d8-0x18db]
    pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18cf]
    pci 0000:00:1f.2: reg 24: [mem 0xf0504400-0xf05047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 20: [io 0x18a0-0x18bf]
    pci 0000:00:1c.0: PCI bridge to [bus 05-05]
    pci 0000:00:1c.0: bridge window [io 0x0000-0x0000] (disabled)
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:07:00.0: reg 10: [mem 0xf0100000-0xf010ffff 64bit]
    pci 0000:07:00.0: supports D1
    pci 0000:07:00.0: PME# supported from D0 D1 D3hot
    pci 0000:07:00.0: PME# disabled
    pci 0000:00:1c.1: PCI bridge to [bus 07-07]
    pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.1: bridge window [mem 0xf0100000-0xf01fffff]
    pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:09:00.0: reg 10: [io 0x2000-0x20ff]
    pci 0000:09:00.0: reg 18: [mem 0xf050c000-0xf050cfff 64bit pref]
    pci 0000:09:00.0: reg 20: [mem 0xf0508000-0xf050bfff 64bit pref]
    pci 0000:09:00.0: supports D1 D2
    pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:09:00.0: PME# disabled
    pci 0000:00:1c.2: PCI bridge to [bus 09-09]
    pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
    pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1c.2: bridge window [mem 0xf0500000-0xf05fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x40000000-0xf7ffffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0x0d00-0xfdff] (subtractive decode)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f288), AE_ALREADY_EXISTS
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    pci 0000:00:1d.7: address space collision: [mem 0xf0504000-0xf05043ff] conflicts with PCI Bus 0000:09 [mem 0xf0500000-0xf05fffff 64bit pref]
    pci 0000:00:1f.2: address space collision: [mem 0xf0504400-0xf05047ff] conflicts with PCI Bus 0000:09 [mem 0xf0500000-0xf05fffff 64bit pref]
    reserve RAM buffer: 0000000000002000 - 000000000000ffff
    reserve RAM buffer: 000000000009dc00 - 000000000009ffff
    reserve RAM buffer: 000000003f5d0000 - 000000003fffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 8 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:01: [io 0x0800-0x080f] has been reserved
    system 00:01: [io 0x1000-0x107f] has been reserved
    system 00:01: [io 0x1180-0x11bf] has been reserved
    system 00:01: [io 0x04d0-0x04d1] has been reserved
    system 00:01: [io 0xfe00] has been reserved
    system 00:01: [io 0x164e-0x174c] has been reserved
    system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    system 00:01: [mem 0xfef00000-0xfeffffff] has been reserved
    pci 0000:00:1c.0: BAR 14: assigned [mem 0x40000000-0x401fffff]
    pci 0000:00:1c.0: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref]
    pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
    pci 0000:00:1c.2: BAR 14: assigned [mem 0x40600000-0x409fffff]
    pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    pci 0000:00:1c.1: BAR 13: assigned [io 0x4000-0x4fff]
    pci 0000:00:1d.7: BAR 0: assigned [mem 0x40a00000-0x40a003ff]
    pci 0000:00:1d.7: BAR 0: set to [mem 0x40a00000-0x40a003ff] (PCI address [0x40a00000-0x40a003ff]
    pci 0000:00:1f.2: BAR 5: assigned [mem 0x40a00400-0x40a007ff]
    pci 0000:00:1f.2: BAR 5: set to [mem 0x40a00400-0x40a007ff] (PCI address [0x40a00400-0x40a007ff]
    pci 0000:00:1c.0: PCI bridge to [bus 05-05]
    pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff]
    pci 0000:00:1c.0: bridge window [mem 0x40200000-0x403fffff 64bit pref]
    pci 0000:00:1c.1: PCI bridge to [bus 07-07]
    pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    pci 0000:00:1c.1: bridge window [mem 0xf0100000-0xf01fffff]
    pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref]
    pci 0000:00:1c.2: PCI bridge to [bus 09-09]
    pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
    pci 0000:00:1c.2: bridge window [mem 0x40600000-0x409fffff]
    pci 0000:00:1c.2: bridge window [mem 0xf0500000-0xf05fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 11-11]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem disabled]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:1c.0: enabling device (0000 -> 0003)
    pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    pci 0000:00:1c.2: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
    pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:00: resource 10 [mem 0x40000000-0xf7ffffff]
    pci_bus 0000:00: resource 11 [io 0x0d00-0xfdff]
    pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
    pci_bus 0000:05: resource 1 [mem 0x40000000-0x401fffff]
    pci_bus 0000:05: resource 2 [mem 0x40200000-0x403fffff 64bit pref]
    pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
    pci_bus 0000:07: resource 1 [mem 0xf0100000-0xf01fffff]
    pci_bus 0000:07: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
    pci_bus 0000:09: resource 0 [io 0x2000-0x2fff]
    pci_bus 0000:09: resource 1 [mem 0x40600000-0x409fffff]
    pci_bus 0000:09: resource 2 [mem 0xf0500000-0xf05fffff 64bit pref]
    pci_bus 0000:11: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:11: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:11: resource 6 [mem 0x000d0000-0x000d3fff]
    pci_bus 0000:11: resource 7 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:11: resource 8 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:11: resource 9 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:11: resource 10 [mem 0x40000000-0xf7ffffff]
    pci_bus 0000:11: resource 11 [io 0x0d00-0xfdff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    UDP hash table entries: 512 (order: 2, 16384 bytes)
    UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    NET: Registered protocol family 1
    pci 0000:00:02.0: Boot video device
    PCI: CLS 32 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1460k freed
    Simple Boot Flag at 0x35 set to 0x1
    apm: BIOS not found.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1285380584.433:1): initialized
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1736
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pcieport 0000:00:1c.0: setting latency timer to 64
    pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X
    pcieport 0000:00:1c.1: setting latency timer to 64
    pcieport 0000:00:1c.1: irq 25 for MSI/MSI-X
    pcieport 0000:00:1c.2: setting latency timer to 64
    pcieport 0000:00:1c.2: irq 26 for MSI/MSI-X
    pcieport 0000:00:1c.0: Requesting control of PCIe PME from ACPI BIOS
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f288), AE_ALREADY_EXISTS
    pcieport 0000:00:1c.0: Failed to receive control of PCIe PME service: ACPI _OSC failed
    pcie_pme: probe of 0000:00:1c.0:pcie01 failed with error -13
    pcieport 0000:00:1c.1: Requesting control of PCIe PME from ACPI BIOS
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f288), AE_ALREADY_EXISTS
    pcieport 0000:00:1c.1: Failed to receive control of PCIe PME service: ACPI _OSC failed
    pcie_pme: probe of 0000:00:1c.1:pcie01 failed with error -13
    pcieport 0000:00:1c.2: Requesting control of PCIe PME from ACPI BIOS
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f288), AE_ALREADY_EXISTS
    pcieport 0000:00:1c.2: Failed to receive control of PCIe PME service: ACPI _OSC failed
    pcie_pme: probe of 0000:00:1c.2:pcie01 failed with error -13
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    PM: Checking image partition /dev/disk/by-uuid/55dfc8bd-98b4-4f27-875c-e7b06c8b1c3e
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    PM: Resume from disk failed.
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 408k freed
    udev: starting version 160
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 27 for MSI/MSI-X
    ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    ata1: SATA max UDMA/133 abar m1024@0x40a00400 port 0x40a00500 irq 27
    ata2: SATA max UDMA/133 abar m1024@0x40a00400 port 0x40a00580 irq 27
    ata3: SATA max UDMA/133 abar m1024@0x40a00400 port 0x40a00600 irq 27
    ata4: SATA max UDMA/133 abar m1024@0x40a00400 port 0x40a00680 irq 27
    ata2: SATA link down (SStatus 0 SControl 300)
    ata3: SATA link down (SStatus 0 SControl 300)
    ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    ata4: SATA link down (SStatus 0 SControl 300)
    ata1.00: ATA-8: Hitachi HTS545025B9A300, PB2OC64G, max UDMA/133
    ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54502 PB2O PQ: 0 ANSI: 5
    sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4
    sd 0:0:0:0: [sda] Attached SCSI disk
    kjournald starting. Commit interval 5 seconds
    EXT3-fs (sda3): mounted filesystem with writeback data mode
    udev: starting version 160
    cfg80211: Calling CRDA to update world regulatory domain
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    input: PC Speaker as /devices/platform/pcspkr/input/input1
    Linux agpgart interface v0.103
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c/PNP0C0D:00/input/input2
    ACPI: Lid Switch [LID0]
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0C:00/input/input3
    i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ACPI: Power Button [PWRB]
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    ACPI: Power Button [PWRF]
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1d.7: using broken periodic workaround
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0x40a00000
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 8 ports detected
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    Marking TSC unstable due to TSC halts in idle
    Switching to clocksource hpet
    ACPI: AC Adapter [ACAD] (off-line)
    usb 1-4: new high speed USB device using ehci_hcd and address 2
    r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    r8169 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
    r8169 0000:09:00.0: setting latency timer to 64
    r8169 0000:09:00.0: (unregistered net_device): unknown MAC, using family default
    r8169 0000:09:00.0: irq 28 for MSI/MSI-X
    r8169 0000:09:00.0: eth0: RTL8101e at 0xf8664000, 88:ae:1d:46:3e:b2, XID 0c200000 IRQ 28
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1d.3: setting latency timer to 64
    uhci_hcd 0000:00:1d.3: UHCI Host Controller
    uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
    agpgart-intel 0000:00:00.0: detected 8188K stolen memory
    agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    ath9k 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    ath9k 0000:07:00.0: setting latency timer to 64
    Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000
    ath: EEPROM regdomain: 0x65
    ath: EEPROM indicates we should expect a direct regpair map
    ath: Country alpha2 being used: 00
    ath: Regpair used: 0x65
    ACPI: Battery Slot [BAT1] (battery present)
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
    [drm] Initialized drm 1.1.0 20060810
    rtc_cmos 00:04: RTC can wake from S4
    rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    usb 1-8: new high speed USB device using ehci_hcd and address 3
    i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    i915 0000:00:02.0: setting latency timer to 64
    i915 0000:00:02.0: irq 29 for MSI/MSI-X
    [drm] set up 7M of stolen space
    phy0: Selected rate control algorithm 'ath9k_rate_control'
    Registered led device: ath9k-phy0::radio
    Registered led device: ath9k-phy0::assoc
    Registered led device: ath9k-phy0::tx
    Registered led device: ath9k-phy0::rx
    phy0: Atheros AR9285 Rev:2 mem=0xf8160000, irq=17
    fuse init (API version 7.13)
    [drm] initialized overlay support
    Initializing USB Mass Storage driver...
    scsi4 : usb-storage 1-4:1.0
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device USB 2.0 Camera (064e:c211)
    input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1d.7/usb1/1-8/1-8:1.0/input/input6
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    [drm] Big FIFO is enabled
    [drm] Big FIFO is enabled
    [drm] Big FIFO is enabled
    [drm] Big FIFO is enabled
    Console: switching to colour frame buffer device 128x37
    fb0: inteldrmfb frame buffer device
    registered panic notifier
    [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 30 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    hda_codec: ALC259: BIOS auto-probing.
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    scsi 4:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
    sd 4:0:0:0: Attached scsi generic sg1 type 0
    sd 4:0:0:0: [sdb] Attached SCSI removable disk
    EXT3-fs (sda3): using internal journal
    kjournald starting. Commit interval 5 seconds
    EXT3-fs (sda4): warning: maximal mount count reached, running e2fsck is recommended
    EXT3-fs (sda4): using internal journal
    EXT3-fs (sda4): mounted filesystem with writeback data mode
    Adding 265068k swap on /dev/sda2. Priority:-1 extents:1 across:265068k
    pacman.log: (the latest update + my attempt at iphone USB tethering)
    [2010-09-25 00:08] Running 'pacman -Syu'
    [2010-09-25 00:08] synchronizing package lists
    [2010-09-25 00:08] starting full system upgrade
    [2010-09-25 00:14] Running 'pacman -Syyu'
    [2010-09-25 00:14] synchronizing package lists
    [2010-09-25 00:14] upgraded pacman (3.4.0-2 -> 3.4.1-1)
    [2010-09-25 00:15] Running 'pacman -Syu'
    [2010-09-25 00:15] synchronizing package lists
    [2010-09-25 00:15] starting full system upgrade
    [2010-09-25 00:15] Running 'pacman -Syu'
    [2010-09-25 00:15] synchronizing package lists
    [2010-09-25 00:15] starting full system upgrade
    [2010-09-25 00:15] Running 'pacman -Syyu'
    [2010-09-25 00:15] synchronizing package lists
    [2010-09-25 00:16] starting full system upgrade
    [2010-09-25 00:16] Running 'pacman -Syyu'
    [2010-09-25 00:16] synchronizing package lists
    [2010-09-25 00:16] starting full system upgrade
    [2010-09-25 00:26] removed libelf (0.8.13-1)
    [2010-09-25 00:26] removed libv4l (0.6.4-1)
    [2010-09-25 00:26] installed goffice (0.8.9-1)
    [2010-09-25 00:26] upgraded abiword (2.8.6-1 -> 2.8.6-2)
    [2010-09-25 00:26] upgraded apvlv (0.0.9.7-1 -> 0.0.9.8-1)
    [2010-09-25 00:27] upgraded tzdata (2010j-1 -> 2010l-1)
    [2010-09-25 00:27] Generating locales...
    [2010-09-25 00:27] en_US.UTF-8... done
    [2010-09-25 00:27] en_US.ISO-8859-1... done
    [2010-09-25 00:27] Generation complete.
    [2010-09-25 00:27] upgraded glibc (2.12-4 -> 2.12.1-1)
    [2010-09-25 00:27] upgraded m4 (1.4.14-2 -> 1.4.15-1)
    [2010-09-25 00:27] upgraded autoconf (2.66-2 -> 2.67-1)
    [2010-09-25 00:27] upgraded glib2 (2.24.1-1 -> 2.24.2-1)
    [2010-09-25 00:27] installed iana-etc (2.30-1)
    [2010-09-25 00:27] warning: /etc/shadow installed as /etc/shadow.pacnew
    [2010-09-25 00:27] upgraded filesystem (2010.02-4 -> 2010.09-1)
    [2010-09-25 00:27] upgraded dbus-core (1.2.24-1 -> 1.4.0-1)
    [2010-09-25 00:27] upgraded xproto (7.0.17-1 -> 7.0.18-1)
    [2010-09-25 00:27] upgraded libxau (1.0.5-1 -> 1.0.6-1)
    [2010-09-25 00:27] upgraded libxcb (1.6-1 -> 1.7-1)
    [2010-09-25 00:27] upgraded kbproto (1.0.4-1 -> 1.0.5-1)
    [2010-09-25 00:27] upgraded libx11 (1.3.4-1 -> 1.3.5-1)
    [2010-09-25 00:27] upgraded dbus (1.2.24-1 -> 1.4.0-1)
    [2010-09-25 00:27] upgraded avahi (0.6.25-3 -> 0.6.27-2)
    [2010-09-25 00:27] upgraded lua (5.1.4-5 -> 5.1.4-6)
    [2010-09-25 00:27]
    [2010-09-25 00:27] ==> awesome installation notes:
    [2010-09-25 00:27] ----------------------------------------
    [2010-09-25 00:27] During some updates of awesome, the config file syntax changes heavily.
    [2010-09-25 00:27] This means that your configuration file (~/.config/awesome/rc.lua) for
    [2010-09-25 00:27] any other than this particular version of awesome may or may not work.
    [2010-09-25 00:27]
    [2010-09-25 00:27] upgraded awesome (3.4.5-2 -> 3.4.6-1)
    [2010-09-25 00:27] upgraded bzip2 (1.0.5-5 -> 1.0.6-1)
    [2010-09-25 00:27] upgraded cabextract (1.2-2 -> 1.3-1)
    [2010-09-25 00:27] upgraded ppl (0.10.2-3 -> 0.11-1)
    [2010-09-25 00:27] upgraded cloog-ppl (0.15.9-1 -> 0.15.9-2)
    [2010-09-25 00:27] upgraded consolekit (0.4.1-2 -> 0.4.1-4)
    [2010-09-25 00:27] The directories /usr/lib/perl5/current, /usr/lib/perl5/site_perl/current,
    [2010-09-25 00:27] /usr/lib/perl5/site_perl/5.10.1, and /usr/share/perl5/site_perl/5.10.1
    [2010-09-25 00:27] will be removed from @INC in a future release.
    [2010-09-25 00:27] The directory /usr/bin/perlbin/site will not be added to $PATH in a
    [2010-09-25 00:27] future release.
    [2010-09-25 00:27] upgraded perl (5.10.1-5 -> 5.12.1-2)
    [2010-09-25 00:27] upgraded openssl (1.0.0.a-2 -> 1.0.0.a-3)
    [2010-09-25 00:27] upgraded curl (7.21.0-1 -> 7.21.1-1)
    [2010-09-25 00:27] upgraded util-linux-ng (2.18-2 -> 2.18-3)
    [2010-09-25 00:27] upgraded module-init-tools (3.11.1-2 -> 3.12-1)
    [2010-09-25 00:27] upgraded udev (160-1 -> 162-1)
    [2010-09-25 00:27] upgraded device-mapper (2.02.70-1 -> 2.02.73-1)
    [2010-09-25 00:27] upgraded dhcpcd (5.2.5-1 -> 5.2.7-1)
    [2010-09-25 00:27] upgraded libldap (2.4.22-1 -> 2.4.23-1)
    [2010-09-25 00:27] upgraded libgpg-error (1.7-3 -> 1.9-2)
    [2010-09-25 00:27] upgraded libksba (1.0.7-1 -> 1.0.8-1)
    [2010-09-25 00:27] upgraded libassuan (2.0.0-1 -> 2.0.1-1)
    [2010-09-25 00:27] upgraded dirmngr (1.1.0rc1-1 -> 1.1.0-1)
    [2010-09-25 00:27] upgraded gcc-libs (4.5.0-6 -> 4.5.1-1)
    [2010-09-25 00:27] upgraded espeak (1.43.03-1 -> 1.44.05-1)
    [2010-09-25 00:27] upgraded feh (1.8-1 -> 1.9-1)
    [2010-09-25 00:27] upgraded x264 (20100722-1 -> 20100826-1)
    [2010-09-25 00:27] upgraded libvpx (0.9.1-1 -> 0.9.2-1)
    [2010-09-25 00:27] upgraded libdrm (2.4.21-1 -> 2.4.21-2)
    [2010-09-25 00:27] upgraded libva (0.31.0_p13-2 -> 1.0.4-1)
    [2010-09-25 00:27] upgraded ffmpeg (24460-1 -> 24953-1)
    [2010-09-25 00:27] upgraded nspr (4.8.4-1 -> 4.8.6-1)
    [2010-09-25 00:27] upgraded sqlite3 (3.6.23.1-1 -> 3.7.2-1)
    [2010-09-25 00:27] upgraded nss (3.12.6-3 -> 3.12.7-1)
    [2010-09-25 00:28] upgraded xulrunner (1.9.2.8-1 -> 1.9.2.10-1)
    [2010-09-25 00:28] upgraded firefox (3.6.8-1 -> 3.6.10-1)
    [2010-09-25 00:28] upgraded flashplugin (10.1.53.64-1 -> 10.1.85.3-1)
    [2010-09-25 00:28] installed elfutils (0.148-1)
    [2010-09-25 00:28] upgraded gcc (4.5.0-6 -> 4.5.1-1)
    [2010-09-25 00:28] ==> Unregistering cabalized packages...
    [2010-09-25 00:28] ==> Done.
    [2010-09-25 00:29] ==> All cabalized and yaourt-installed packages need to be reinstalled now.
    [2010-09-25 00:29] ==> See /usr/share/haskell/ and ghc-pkg list --user for a tentative list of affected packages.
    [2010-09-25 00:29] upgraded ghc (6.12.1-4 -> 6.12.3-1)
    [2010-09-25 00:29] upgraded git (1.7.2-1 -> 1.7.3-1)
    [2010-09-25 00:29] upgraded gnome-keyring (2.30.3-1 -> 2.30.3-2)
    [2010-09-25 00:29] upgraded pinentry (0.8.0-1 -> 0.8.0-2)
    [2010-09-25 00:29] upgraded gnupg2 (2.0.15-1 -> 2.0.16-2)
    [2010-09-25 00:29] upgraded grep (2.6.3-1 -> 2.7-1)
    [2010-09-25 00:29] upgraded gstreamer0.10 (0.10.29-1 -> 0.10.30-1)
    [2010-09-25 00:29] upgraded orc (0.4.6-1 -> 0.4.7-1)
    [2010-09-25 00:29] upgraded gstreamer0.10-base (0.10.29-1 -> 0.10.30-1)
    [2010-09-25 00:29] upgraded vim-runtime (7.2-1 -> 7.3.3-1)
    [2010-09-25 00:29] upgraded ruby (1.9.1_p429-1 -> 1.9.2_p0-3)
    [2010-09-25 00:29] Updating desktop and mime database...done.
    [2010-09-25 00:29] upgraded gvim (7.2-1 -> 7.3.3-1)
    [2010-09-25 00:29] Reading package info from stdin ... done.
    [2010-09-25 00:29] upgraded haskell-mtl (1.1.0.2-3 -> 1.1.0.2-4)
    [2010-09-25 00:29] Reading package info from stdin ... done.
    [2010-09-25 00:29] upgraded haskell-utf8-string (0.3.6-3 -> 0.3.6-4)
    [2010-09-25 00:29] Reading package info from stdin ... done.
    [2010-09-25 00:29] upgraded haskell-x11 (1.5.0.0-2 -> 1.5.0.0-5)
    [2010-09-25 00:29] upgraded libtool (2.2.10-1 -> 2.2.10-3)
    [2010-09-25 00:29] upgraded lcms (1.18-3 -> 1.19-1)
    [2010-09-25 00:29] upgraded imagemagick (6.6.2.10-1 -> 6.6.4.3-1)
    [2010-09-25 00:29] upgraded iproute2 (2.6.34-2 -> 2.6.35-3)
    [2010-09-25 00:29] upgraded iptables (1.4.8-1 -> 1.4.9-1)
    [2010-09-25 00:29] upgraded irssi (0.8.15-1 -> 0.8.15-3)
    [2010-09-25 00:29] upgraded jack (0.118.0-3 -> 0.118.0-4)
    [2010-09-25 00:29] upgraded libxi (1.3-2 -> 1.3.2-1)
    [2010-09-25 00:29] upgraded jasper (1.900.1-5 -> 1.900.1-6)
    [2010-09-25 00:29] upgraded linux-firmware (20100623-2 -> 20100807-1)
    [2010-09-25 00:30] >>> Updating module dependencies. Please wait ...
    [2010-09-25 00:30] >>> MKINITCPIO SETUP
    [2010-09-25 00:30] >>> ----------------
    [2010-09-25 00:30] >>> If you use LVM2, Encrypted root or software RAID,
    [2010-09-25 00:30] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2010-09-25 00:30] >>> More information about mkinitcpio setup can be found here:
    [2010-09-25 00:30] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2010-09-25 00:30]
    [2010-09-25 00:30] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2010-09-25 00:30] ==> Building image "default"
    [2010-09-25 00:30] ==> Running command: /sbin/mkinitcpio -k 2.6.35-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2010-09-25 00:30] :: Begin build
    [2010-09-25 00:30] :: Parsing hook [base]
    [2010-09-25 00:30] :: Parsing hook [udev]
    [2010-09-25 00:30] :: Parsing hook [autodetect]
    [2010-09-25 00:30] :: Parsing hook [pata]
    [2010-09-25 00:30] :: Parsing hook [scsi]
    [2010-09-25 00:30] :: Parsing hook [sata]
    [2010-09-25 00:30] :: Parsing hook [filesystems]
    [2010-09-25 00:30] :: Generating module dependencies
    [2010-09-25 00:30] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2010-09-25 00:30] ==> SUCCESS
    [2010-09-25 00:30] ==> Building image "fallback"
    [2010-09-25 00:30] ==> Running command: /sbin/mkinitcpio -k 2.6.35-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2010-09-25 00:30] :: Begin build
    [2010-09-25 00:30] :: Parsing hook [base]
    [2010-09-25 00:31] :: Parsing hook [udev]
    [2010-09-25 00:31] :: Parsing hook [pata]
    [2010-09-25 00:31] :: Parsing hook [scsi]
    [2010-09-25 00:33] :: Parsing hook [sata]
    [2010-09-25 00:34] :: Parsing hook [filesystems]
    [2010-09-25 00:35] :: Generating module dependencies
    [2010-09-25 00:35] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2010-09-25 00:35] ==> SUCCESS
    [2010-09-25 00:35] upgraded kernel26 (2.6.34.1-1 -> 2.6.35.5-1)
    [2010-09-25 00:35] upgraded kernel26-headers (2.6.34.1-1 -> 2.6.35.5-1)
    [2010-09-25 00:35] upgraded lftp (4.0.9-1 -> 4.0.10-1)
    [2010-09-25 00:35] upgraded libass (0.9.9-1 -> 0.9.11-1)
    [2010-09-25 00:35] upgraded libcdaudio (0.99.12-4 -> 0.99.12-5)
    [2010-09-25 00:35] upgraded libcups (1.4.4-1 -> 1.4.4-3)
    [2010-09-25 00:35] upgraded libdatrie (0.2.3-1 -> 0.2.4-1)
    [2010-09-25 00:35] upgraded libfetch (2.32-1 -> 2.33-1)
    [2010-09-25 00:35] upgraded libgnome-keyring (2.30.1-1 -> 2.30.1-2)
    [2010-09-25 00:35] upgraded libid3tag (0.15.1b-5 -> 0.15.1b-6)
    [2010-09-25 00:35] upgraded libpciaccess (0.11.0-1 -> 0.12.0-1)
    [2010-09-25 00:35] upgraded libproxy (0.3.1-1 -> 0.4.6-1)
    [2010-09-25 00:35] installed v4l-utils (0.8.1-1)
    [2010-09-25 00:35] upgraded libxvmc (1.0.5-1 -> 1.0.6-1)
    [2010-09-25 00:35] upgraded lirc-utils (0.8.6-3 -> 0.8.6-4)
    [2010-09-25 00:35] upgraded lvm2 (2.02.70-1 -> 2.02.73-1)
    [2010-09-25 00:35] upgraded man-pages (3.25-1 -> 3.26-1)
    [2010-09-25 00:35] upgraded mathomatic (15.1.5-1 -> 15.2.1-1)
    [2010-09-25 00:35] upgraded mdadm (3.1.2-2 -> 3.1.4-1)
    [2010-09-25 00:35] upgraded mkinitcpio-busybox (1.16.2-1 -> 1.17.2-1)
    [2010-09-25 00:35] upgraded modemmanager (0.3-2 -> 0.4-1)
    [2010-09-25 00:35] upgraded mpfr (3.0.0-1 -> 3.0.0-2)
    [2010-09-25 00:35] upgraded smbclient (3.5.4-1 -> 3.5.5-1)
    [2010-09-25 00:35] upgraded mplayer (31774-1 -> 32227-1)
    [2010-09-25 00:35] upgraded murrine-themes-collection (20100201-1 -> 20100910-1)
    [2010-09-25 00:35] upgraded nano (2.2.4-1 -> 2.2.5-1)
    [2010-09-25 00:35] upgraded ncmpcpp (0.5.4-1 -> 0.5.5-1)
    [2010-09-25 00:35] upgraded networkmanager (0.8-1 -> 0.8.1-1)
    [2010-09-25 00:35] upgraded network-manager-applet (0.8-3 -> 0.8.1-1)
    [2010-09-25 00:35] upgraded tcp_wrappers (7.6-11 -> 7.6-12)
    [2010-09-25 00:35] upgraded openssh (5.5p1-1 -> 5.6p1-1)
    [2010-09-25 00:35] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2010-09-25 00:35] upgraded pacman-mirrorlist (20100621-1 -> 20100825-1)
    [2010-09-25 00:35] upgraded perl-list-moreutils (0.22-2 -> 0.22-4)
    [2010-09-25 00:35] upgraded pixman (0.18.2-1 -> 0.18.4-1)
    [2010-09-25 00:35] upgraded poppler-data (0.4.2-1 -> 0.4.3-1)
    [2010-09-25 00:35] upgraded psmisc (22.11-1 -> 22.13-1)
    [2010-09-25 00:35] upgraded pycairo (1.8.8-1 -> 1.8.10-1)
    [2010-09-25 00:36] upgraded pygtk (2.17.0-1 -> 2.17.0-2)
    [2010-09-25 00:36] upgraded renderproto (0.11-1 -> 0.11.1-1)
    [2010-09-25 00:36] upgraded rpcbind (0.2.0-1 -> 0.2.0-2)
    [2010-09-25 00:36] upgraded rxvt-unicode-256color (9.07-8 -> 9.07-9)
    [2010-09-25 00:36] warning: /etc/slim.conf installed as /etc/slim.conf.pacnew
    [2010-09-25 00:36] upgraded slim (1.3.1-7 -> 1.3.2-1)
    [2010-09-25 00:36] warning: /etc/sudoers installed as /etc/sudoers.pacnew
    [2010-09-25 00:36] upgraded sudo (1.7.3-1 -> 1.7.4.p4-1)
    [2010-09-25 00:36] upgraded synergy (1.3.1-7 -> 1.3.4-2)
    [2010-09-25 00:36] upgraded syslog-ng (3.1.1-1 -> 3.1.2-1)
    [2010-09-25 00:36] upgraded sysvinit (2.86-5 -> 2.88-1)
    [2010-09-25 00:36] upgraded upower (0.9.4-1 -> 0.9.5-1)
    [2010-09-25 00:36] upgraded usbutils (0.87-1 -> 0.90-1)
    [2010-09-25 00:36] upgraded videoproto (2.3.0-1 -> 2.3.1-1)
    [2010-09-25 00:36] upgraded vim-colorsamplerpack (8.03-1 -> 8.03-2)
    [2010-09-25 00:36] upgraded vlc (1.1.1-3 -> 1.1.4-2)
    [2010-09-25 00:36] upgraded wine (1.2-1 -> 1.3.3-1)
    [2010-09-25 00:36] upgraded xextproto (7.1.1-1 -> 7.1.2-1)
    [2010-09-25 00:36] upgraded xf86-input-evdev (2.4.0-1 -> 2.4.0-2)
    [2010-09-25 00:36] upgraded xfce-utils (4.6.2-1 -> 4.6.2-2)
    [2010-09-25 00:36] upgraded xfconf (4.6.2-1 -> 4.6.2-2)
    [2010-09-25 00:36] upgraded xfdesktop (4.6.2-1 -> 4.6.2-2)
    [2010-09-25 00:36] upgraded xfsprogs (3.1.2-1 -> 3.1.3-1)
    [2010-09-25 00:36] Reading package info from stdin ... done.
    [2010-09-25 00:36] upgraded xmonad (0.9.1-4 -> 0.9.1-8)
    [2010-09-25 00:36] upgraded xorg-server-utils (7.5-4 -> 7.5-6)
    [2010-09-25 00:36] upgraded xorg-utils (7.6-2 -> 7.6-3)
    [2010-09-25 00:36] upgraded xterm (259-1 -> 261-1)
    [2010-09-25 00:36] upgraded xz (4.999.9beta-5 -> 4.999.9beta_174_g41bc-1)
    [2010-09-25 00:36] upgraded youtube-dl (2010.07.14-1 -> 2010.08.04-1)
    [2010-09-25 00:41] Running 'pacman -S xcompmgr'
    [2010-09-25 00:41] installed xcompmgr (1.1.5-1)
    [2010-09-27 23:25] Running 'pacman -S libimobiledevice'
    [2010-09-27 23:25] installed libplist (1.3-1)
    [2010-09-27 23:25] installed usbmuxd (1.0.4-2)
    [2010-09-27 23:25] installed libimobiledevice (1.0.2-1)
    [2010-09-27 23:27] Running 'pacman -U /home/brandon/downloads/ipheth-utils/ipheth-utils-1.0-1-i686.pkg.tar.xz'
    [2010-09-27 23:27] >>> Reloading udev rules
    [2010-09-27 23:27] >>> You can load the iPhone Ethernet Driver now - ipheth
    [2010-09-27 23:27] installed ipheth-utils (1.0-1)
    Last edited by bas1 (2010-09-30 01:48:43)

    karol wrote:
    bas1 wrote:I guess the thing to do would be to try to re-generate the initrd via chroot, but I have no idea how to do this.
    http://wiki.archlinux.org/index.php/Chroot
    You may try to add or remove some hooks as this mysteriously helped some folks.
    Good luck.
    Well, chrooting and regenerating the initial ramdisk has fixed it! Thanks for the help!!
    Edit:  and just FYI, I didn't change any hooks in /etc/mkinitcpio.conf when I re-generated.  But yeah, if someone else has this issue, try playing with them.
    Last edited by bas1 (2010-09-30 01:59:47)

  • Unable to Deploy WAR file  (Unknown assembly root-tag attribute: version)

    Hello,
    I created a simple web application with eclipse + tomcat plugin + struts2 (JPA Spring Hibernate ) and created the WAR file using the tomcat plugin compiler. When I deploy the war file into Tomcat 6 the file is deployed properly and i can view the website properly. But when I try to deploy the the WAR file from Oracle 9i Application Server I get the following error.
    Failed to deploy web application "mytest". Nested exception Root Cause: Error loading web-app 'mytest' at C:\ora9ias\j2ee\MySystem\applications\mytest\mytest: Unknown assembly root-tag attribute: version; nested exception is: java.lang.InstantiationException: Error loading web-app 'SFPD' at C:\ora9ias\j2ee\MySystem\applications\mytest\mytest: Unknown assembly root-tag attribute: version.
    My Current web.xml is this.
    <?xml version="1.0" ?>
    <web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
         http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>My Test Project System</display-name>
    <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <listener>
    <listener-class>
    org.springframework.web.context.ContextLoaderListener
    </listener-class>
    </listener>
    </web-app>
    thanks in advance,

    Thanks for the reply sasesha,
    I've changed my web.xml to
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
         "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>     
         <display-name>My Test Project System</display-name>
         <filter>
              <filter-name>struts2</filter-name>
              <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
         </filter>
         <filter-mapping>
              <filter-name>struts2</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>
         <listener>
              <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
         </listener>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
         </welcome-file-list>
    </web-app>
    During the initial upload the previous error doesn't show anymore, however, I'm getting this new error and currently I'm a bit at a loss since i included the spring.jar library file in my war file. I tried the new war file in Tomcat and the war file deploys fine. Am I missing a configuration or setup ?
    Failed to deploy web application "mytest". Nested exception Root Cause: Class not found: org.springframework.beans.factory.BeanDefinitionStoreException; nested exception is: java.lang.ClassNotFoundException: org.springframework.beans.factory.BeanDefinitionStoreException. Class not found: org.springframework.beans.factory.BeanDefinitionStoreException; nested exception is: java.lang.ClassNotFoundException: org.springframework.beans.factory.BeanDefinitionStoreException
    Thanks again,
    sethsera

  • Couldn't find root user.  Sleeping and trying again.

    Last week I installed an MSO 2004 update on my G5 iMac running 10.4.11.
    Then I attempted to repair permissions. The repair permissions process
    halted at about half of the progress bar. I let it cook for about two
    hours without success, then tried to force quit Disk Utility. I
    couldn't force quit it, so I very reluctantly turned off the Mac;
    something I've rarely ever done. I waited five minutes and then turned
    the Mac back on. The startup sequence progressed to the point where the
    system displays the gray apple on the gray background, and the circular
    progress indicator or gear begins turning. I let it turn for one hour
    and then powered off the iMac, then powered it back up with the same
    results.
    I powered it off again and then commenced a Safe Boot. Same results as
    before.
    I powered it off again and then started it in Single User Mode. No
    problem. I ran /sbin/fsck -fy. No problem.
    I typed "reboot" and it rebooted. This time I start it in Verbose mode.
    After the preliminary startup code, the system began repeating the same
    message lines:
    dsFindDirNodes returned -14071, count = 0 count = 2147483646
    Couldn't find root user. Sleeping and trying again.
    A Google search produced very few results. I don't have a backup
    because I inherited this iMac from my 75 year old semi retired father
    who wanted a 20-inch Intel iMac instead. I just goof around with the G5
    iMac from time to time, and am considering giving it to my little niece and
    nephews. It worked great for about a month. I have customized my
    user account and the accounts for the little ones, so I really don't
    want to wipe the hard drive and reinstall Tiger again from scratch.
    I booted from the suspect internal hard drive into single user mode.
    I ran /sbin/fsck -fy on the internal hard drive.
    All tests passed.
    I ran fsck_hfs on the internal hard drive.
    It returned a message that stated that I needed
    to add additional information.
    I ran fsck_hfs with several switches enabled, but
    it continued to return this message.
    I performed the procedures in Apple's article 107210
    "Mac OS X, Mac OS X Server: How to Replace the NetInfo
    Database (Restoring from defaults).
    This did not solve the problem.
    I booted this computer from my external Firewire hard drive that I use
    to create nightly backups on my G4 iMac using SuperDuper!.
    I ran Disk Utility Repair Disk Permissions on the
    internal hard drive.
    There were no permissions errors.
    I ran Disk Utility Repair Disk.
    All tests passed.
    I ran the TechTool Pro Suites --> Advanced Tests on
    the internal hard drive.
    All tests passed except for "Startup File" which it
    listed as " <Not Present>".
    The description of this test is:
    "This test checks the Startup file. The parameters
    within this file contain the information used by
    the computer ROM to determine what program will
    boot the computer as well as other system-specific
    aspects."
    I ran the TechTool Pro Performance --> Maintenance
    routine on the internal hard drive.
    It completed the maintenance successfully.
    I ran DiskWarrior on the internal hard drive.
    It reported no directory errors, but I replaced it
    anyway.
    While booted from the external Firewire hard drive, I viewed what
    appears to be the proper compliment of folders on the internal hard
    drive. Of course, I didn't examine and verify every subfolder in the
    hierarchy, however, examining the Applications, Library, System, and
    Users folders two deep seemed to indicate that everything was there.
    I booted this computer from my Tiger installation disk. I selected
    Utilities --> Reset Password... (I think.). It listed only the
    Administrator account (root) on the internal hard drive. It did not
    list the other three accounts that I created on this hard drive, even
    all three respective folders are present in the Users folder. However,
    it did list all four accounts on the still attached external Firewire
    hard drive.
    By every measure, this drive and its directory are sound. I am
    concerned that TechTool Pro reported that the Startup File is Not
    Present. Beyond the meaning that the words suggest, I'm not sure what
    this really means. I checked the Micromat site and found the following:
    The Startup File has been defined but not yet
    implemented by Apple.
    What does the message signify:
    dsFindDirNodes returned -14071, count = 0 count = 2147483646
    Couldn't find root user. Sleeping and trying again.
    Can I effect a simple repair?
    Thank you.

    I think besides a reinstall, only DiskWarrior from Alsoft...
    http://www.alsoft.com/DiskWarrior/
    stands a chance of fixing it.

Maybe you are looking for