Depth Manager

Hello everyone. Here is a simple package with DepthManager, the question is in performance of it.
1) Create .fla AS3, size = 600x400, grey background.
2) Create in library a MovieClip, named THING, linkage = THING, and open it. Draw a 15-corner star in the centre of it. Fill by standart from-black-to-white linear gradient.
3) Set the name MAIN as main class of the document (don't forget save them all in one directory), open it, and paste there this code:
package 
       import flash.display.MovieClip;
          import flash.events.Event;
          import flash.events.MouseEvent;
          public class MAIN extends MovieClip
                   public var array_THINGS:Array = new Array();
                   public function MAIN()
                              var tmp_thing:MovieClip;
                              //BECAUSE I'M NOT GOING TO REMOVE THIS, I CAN USE ANONYMOUS FUNCTION
                              stage.addEventListener(MouseEvent.MOUSE_UP, function()
                                        //WE WILL CREATE SOME THINGS TO DISPLAY
                                        for(var i = 1; i <= 100; i++)
                                                  tmp_thing = new THING();
                                                  tmp_thing.x = Math.random() * 600;
                                                  tmp_thing.y = Math.random() * 400;
                                                  //LETS MAKE IT EASIER FOR PLAYER BY SETTING cacheAsBitmap TO true
                                                  tmp_thing.cacheAsBitmap = true;
                                                  addChild(tmp_thing);
                                                  array_THINGS.push({INSTANCE:tmp_thing});
                              stage.addEventListener(Event.ENTER_FRAME, function()
                                        ENTER_FRAME_1(); //USING DepthMan
                                        //ENTER_FRAME_2(); //NOT USING DepthMan
                                       //MAKE ONE OF THOSE FUNCTIONS IN // TO SEE THE DEFFERENCE IN FRAMERATE
                    private function ARRAY_THINGS_GET_POS_OF_OBJECT(element:*, index:int, arr:Array)
                              var thing_x = MovieClip(element.INSTANCE).x;
                              var thing_y = MovieClip(element.INSTANCE).y;
                              return {INSTANCE:element.INSTANCE, X:thing_x, Y:thing_y};
                    private function ENTER_FRAME_1()
                              var array_DETAILED_THINGS:Array = array_THINGS.map(ARRAY_THINGS_GET_POS_OF_OBJECT);
                              array_DETAILED_THINGS.sortOn(["Y", "X"], [Array.NUMERIC, Array.NUMERIC | Array.DESCENDING]);
                              for(var i in array_DETAILED_THINGS)
                                        var tmp_mc:MovieClip = MovieClip(array_DETAILED_THINGS[i].INSTANCE);
                                        tmp_mc.rotation += 7;
                                        tmp_mc.parent.setChildIndex(tmp_mc, i);
                    private function ENTER_FRAME_2()
                              for(var i in array_THINGS)
                                        var tmp_mc:MovieClip = MovieClip(array_THINGS[i].INSTANCE);
                                        tmp_mc.rotation += 7;
We click stage = we create 100 stars, each is rotated every frame.
Each frame the function ARRAY_THINGS_GET_POS_OF_OBJECT gets the position of the INSTANCE (it's a simple example, imagine that things may move, so the constant position will not suite).
Then things are sorted and reindexed.
Code works.
The main problem is:
With the ENTER_FRAME_1() turned ON (and ENTER_FRAME_2() turned off, ofcourse), the framerate is much lower, when 300 things (3 clicks) and more on the stage. We don't have so big decline, not using DepthManager (ENTER_FRAME_1() turned OFF and ENTER_FRAME_2() turned ON). And I don't even mention, that a star has not much dots to draw. So the problem is in setting indexes, or may be even in Array.map().
The tip is:
There is a way to use swapDepths, adding an EnterFrame function to each thing, which will "understand", if the thing is higher or lower(.y) from its neighbours, whose depths +1, -1. So it will be one check but by each star... 
The question is:
Will it work faster? Or there is another way to make all this RUN?)

I have actually had a chance to play around with it now
and with 400 stars my ENTER_FRAME_1() runs at 10 fps and so does ENTER_FRAME2()
I am using
package
          import flash.display.MovieClip;
          import flash.events.Event;
          import flash.events.MouseEvent;
          public class MAIN extends MovieClip
                    public var array_THINGS:Array = new Array();
                    private var stats:Stats = new Stats();
                    public function MAIN()
                              stage.addEventListener(MouseEvent.CLICK, mouseUpHandler);
                              stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
                    private function mouseUpHandler(e:MouseEvent):void
                              var tmp_thing:THING;
                              //WE WILL CREATE SOME THINGS TO DISPLAY
                              for (var i = 1; i <= 100; i++)
                                        tmp_thing = new THING();
                                        tmp_thing.x = Math.random() * 600;
                                        tmp_thing.y = Math.random() * 400;
                                        //LETS MAKE IT EASIER FOR PLAYER BY SETTING cacheAsBitmap TO true
                                        tmp_thing.cacheAsBitmap = true;
                                        addChild(tmp_thing);
                                        array_THINGS.push(tmp_thing);
                              array_THINGS.sortOn(["y", "x"], Array.NUMERIC | Array.DESCENDING);
                              for (var j in array_THINGS)
                                        var tmp_mc:THING = THING(array_THINGS[j]);
                                        tmp_mc.parent.setChildIndex(tmp_mc, j);
                              addChild(stats);
                    private function enterFrameHandler(e:Event):void
                              ENTER_FRAME_1(); //USING DepthMan
                              //ENTER_FRAME_2(); //NOT USING DepthMan
                              //MAKE ONE OF THOSE FUNCTIONS IN // TO SEE THE DEFFERENCE IN FRAMERATE
                    private function ENTER_FRAME_1()
                              for (var i in array_THINGS)
                                        var tmp_mc:THING = THING(array_THINGS[i]);
                                        tmp_mc.rotation += 7;
                    private function ENTER_FRAME_2()
                              for (var i in array_THINGS)
                                        var tmp_mc:THING = THING(array_THINGS[i]);
                                        tmp_mc.rotation += 7;
and a copy of MrDoobs stats class
* stats.as
* https://github.com/mrdoob/Hi-ReS-Stats
* Released under MIT license:
* http://www.opensource.org/licenses/mit-license.php
* How to use:
*          addChild( new Stats() );
package {
          import flash.display.BitmapData;
          import flash.display.Sprite;
          import flash.events.Event;
          import flash.events.MouseEvent;
          import flash.geom.Matrix;
          import flash.geom.Rectangle;
          import flash.system.System;
          import flash.text.StyleSheet;
          import flash.text.TextField;
          import flash.utils.getTimer;
          public class Stats extends Sprite {
                    protected const WIDTH : uint = 70;
                    protected const HEIGHT : uint = 100;
                    protected var xml : XML;
                    protected var text : TextField;
                    protected var style : StyleSheet;
                    protected var timer : uint;
                    protected var fps : uint;
                    protected var ms : uint;
                    protected var ms_prev : uint;
                    protected var mem : Number;
                    protected var mem_max : Number;
                    protected var graph : BitmapData;
                    protected var rectangle : Rectangle;
                    protected var fps_graph : uint;
                    protected var mem_graph : uint;
                    protected var mem_max_graph : uint;
                    protected var colors : Colors = new Colors();
                     * <b>Stats</b> FPS, MS and MEM, all in one.
                    public function Stats() : void {
                              mem_max = 0;
                              xml = <xml><fps>FPS:</fps><ms>MS:</ms><mem>MEM:</mem><memMax>MAX:</memMax></xml>;
                              style = new StyleSheet();
                              style.setStyle('xml', {fontSize:'9px', fontFamily:'_sans', leading:'-2px'});
                              style.setStyle('fps', {color: hex2css(colors.fps)});
                              style.setStyle('ms', {color: hex2css(colors.ms)});
                              style.setStyle('mem', {color: hex2css(colors.mem)});
                              style.setStyle('memMax', {color: hex2css(colors.memmax)});
                              text = new TextField();
                              text.width = WIDTH;
                              text.height = 50;
                              text.styleSheet = style;
                              text.condenseWhite = true;
                              text.selectable = false;
                              text.mouseEnabled = false;
                              rectangle = new Rectangle(WIDTH - 1, 0, 1, HEIGHT - 50);
                              addEventListener(Event.ADDED_TO_STAGE, init, false, 0, true);
                              addEventListener(Event.REMOVED_FROM_STAGE, destroy, false, 0, true);
                    private function init(e : Event) : void {
                              graphics.beginFill(colors.bg);
                              graphics.drawRect(0, 0, WIDTH, HEIGHT);
                              graphics.endFill();
                              addChild(text);
                              graph = new BitmapData(WIDTH, HEIGHT - 50, false, colors.bg);
                              graphics.beginBitmapFill(graph, new Matrix(1, 0, 0, 1, 0, 50));
                              graphics.drawRect(0, 50, WIDTH, HEIGHT - 50);
                              addEventListener(MouseEvent.CLICK, onClick);
                              addEventListener(Event.ENTER_FRAME, update);
                    private function destroy(e : Event) : void {
                              graphics.clear();
                              while(numChildren > 0)
                                        removeChildAt(0);
                              graph.dispose();
                              removeEventListener(MouseEvent.CLICK, onClick);
                              removeEventListener(Event.ENTER_FRAME, update);
                    private function update(e : Event) : void {
                              timer = getTimer();
                              if( timer - 1000 > ms_prev ) {
                                        ms_prev = timer;
                                        mem = Number((System.totalMemory * 0.000000954).toFixed(3));
                                        mem_max = mem_max > mem ? mem_max : mem;
                                        fps_graph = Math.min(graph.height, ( fps / stage.frameRate ) * graph.height);
                                        mem_graph = Math.min(graph.height, Math.sqrt(Math.sqrt(mem * 5000))) - 2;
                                        mem_max_graph = Math.min(graph.height, Math.sqrt(Math.sqrt(mem_max * 5000))) - 2;
                                        graph.scroll(-1, 0);
                                        graph.fillRect(rectangle, colors.bg);
                                        graph.setPixel(graph.width - 1, graph.height - fps_graph, colors.fps);
                                        graph.setPixel(graph.width - 1, graph.height - ( ( timer - ms ) >> 1 ), colors.ms);
                                        graph.setPixel(graph.width - 1, graph.height - mem_graph, colors.mem);
                                        graph.setPixel(graph.width - 1, graph.height - mem_max_graph, colors.memmax);
                                        xml.fps = "FPS: " + fps + " / " + stage.frameRate;
                                        xml.mem = "MEM: " + mem;
                                        xml.memMax = "MAX: " + mem_max;
                                        fps = 0;
                              fps++;
                              xml.ms = "MS: " + (timer - ms);
                              ms = timer;
                              text.htmlText = xml;
                    private function onClick(e : MouseEvent) : void {
                              mouseY / height > .5 ? stage.frameRate-- : stage.frameRate++;
                              xml.fps = "FPS: " + fps + " / " + stage.frameRate; 
                              text.htmlText = xml;
                    // .. Utils
                    private function hex2css( color : int ) : String {
                              return "#" + color.toString(16);
class Colors {
          public var bg : uint = 0x000033;
          public var fps : uint = 0xffff00;
          public var ms : uint = 0x00ff00;
          public var mem : uint = 0x00ffff;
          public var memmax : uint = 0xff0070;

Similar Messages

  • AS3 depth management issue

    Hello folks! Looking for a little technical advice - let me
    explain:
    I'm converting a small flash game that I had built in flash 8
    with as2 to flash 9 with as3 and have hit a snag. The visible
    object on the stage in that application is simialr to a rubiks cube
    as seen from an upper corner (sort of an isometric view). There are
    mutliple rows and columns and levels...lets just say it's a 3x3x3
    cube. Through gameplay various cubes are moved around, added and
    removed from the grid, sometimes a slot is empty sometimes full. In
    order to track this and make sure that the cubes stay at the proper
    depth relative to each other I had assigned each slot in the full
    grid a grid number incremented by 10's for rowsand 100's for layers
    and stored the numbers in an array. Then when I added a cube to the
    stage I just looked up its depth value from the array, attached it
    and appended its number to it's instance name and set it's depth to
    the same number . Nothing ever got at an improper depth becuase
    every slot had a fixed absolute number that could be pulled from
    the array. My problem is that the new depth manager won't allow
    gaps - each depth needs to be used before the next one can be used,
    and that when you insert someting at an occupied depth everything
    above it is pushed up by one so I can't track any of my cubes depth
    as I had been becuase they keep changing.
    Example: I'm my old system if I needed to move the first row
    of cubes from the 3rd layer (cubes 310, 320, 330) straight down
    into the second layer I would simply move them then swapdepth to
    210, 220, 230. In the new system since i cant reserve a depth for
    an empty slot I never know what number to move the cube to without
    a convoluted lookup process, and once I do move it...every single
    depth after it gets altered (which seems like a lot of extra work
    for the system by the way)
    So...anyone know a better way to manage depths of a 3
    dimensional grid in as3?

    Personally, I think the new depth system introduces more
    problems than it fixes.
    One advantage in AS3, though, is that you can move a
    DisplayObject from one DisplayObjectContainer to another.
    [edit] Oops, GWD already mentioned this, so I'm basically
    re-iterating what he said [/edit]
    So based on your setup, it might be helpful to make different
    container clips for each "layer" as you described it. Then you can
    simply move the rows into the different containers, and the
    containers are at different depths.

  • Need help with AS 2 depth management

    Hi all,
    I am working on a US map that was developed by someone else, and they do not have an answer for a bug in the programming.
    The Flash file contains each of the 50 U.S. States as objects with instance names and they are defined as variables through AS 2 on the Flash File timeline. A separate AS 2 file creates each U.S. State as a "region" dynamically and manages the depth of objects throughout the many lines of code. The properties of each state, such as it's background color, are then defined in an XML file.
    As I define a color variable for each U.S. State in the XML file, the color of the state writes over top of another object (created dynamicaly through AS 2 code and then defined in the XML), which is the locations and their "dots" that indicate their geographic (i.e.: a location can be a service center located in Texas).
    I've tried everything I can think of, and read and followed every instruction I can find in order to move the Location text and their corresponding "dots" to write on top of each state with no success. I'm just a beginner in AS and have come from the design side. This stuff is mostly vodoo to me to begin with. Can anyone help me? Would this file be better if migrated to AS 3.0? If so, how in the world do I do that? Remember, I'm no programmer.
    I've attached a Zip file for any of you code warriors out there they may have the answer.
    Thanks,
    Aurealius

    The "dot" is an image. The state mc is named "region" and is a child of the mc "map". The "location" mc is also a child of the "map" mc. Can you tell me how to define the "location" mc to be a child of the "region" mc? That may be the answer to this. Please take a look at the AS file before answering, as it's really confusing how depth is managed in this file. Thx.

  • How to calculate spacing & depth/stack with this kind of image slider.

    Hello,
    Does anyone can give me a jump start on how to setup calculations to create this kind of carousel?
    I followed some tutorials about carousels but they all move in eliptical way. The carousel that i have to make
    does not have to move in eliptical way, but like the image below. The controller for this carousel is a scrollbar that
    i already made. Some tips would be apriciated!

    as your slider moves from the far left to the next position to the right, each of your boxes scales and moves - those to the right of the current position scale up and those to the left scale down unless you're using 3d positioning to move boxes forward and back.  each box moves to the left, except the far left box which moves to the far right.
    there will be depth management that you'll need to handle, too.

  • Tree component not working in a mask

    I have been having problems displaying the labels on tree
    component , I have now found the cause it was in a mask.
    Once I moved it out of the mask it worked fine!!. But the
    thing is now how do I get it to work in a mask????
    You can test this for yourself by opening the
    gallery_tree.fla in \Flash 8\Samples and adding a layer making it a
    mask (and making a box around the whole thing).
    I need to use the tree in a mask as it is part of a bigger
    picture.
    Thanks for the help
    BP

    I'm not sure if that will help, but you can try to set the
    mak at runtime (MovieClip.setMask()) - I'm not even sure if that is
    "leagal" with components, but setting a (rectangular) mask wia
    actionscript is the only way to mask device text, and that should
    be part of your component.
    Watch out rot problems of depths-order though, as depth
    management with component (v2) is different from "normal" depth
    management.

  • UIScrollbar creates conflicts

    Hi!
    I've just a strange thing happening; I managed to succefully
    use a dynamic scrollbar, everything worked perfectly, but then,
    willing to add some UIScrollBars to my existing flash 8 site, I
    found that just the pasting (and immediate deleting) of the
    component on the scene would "corrupt" my programmation; some
    strange things would happen (incorrect load of external jpgs i.e.),
    any idea of what would be the cause and eventual solution?
    Tks for your advice & help

    The solutioin should be deleting everything related to the
    ui-comp not only from stage but from the libeary too.
    The problem (I find most annoying) with v2 components is,
    that the break al regular depth management and introduce the (in my
    eyes) cumbersome textmanager.
    So essentially you should decide upfront if you want to juse
    version 2Components or will not ever, at least not afert having a
    considerably complex project.
    They are quite heavy in size, and not really easy to
    customize (in terms of looks) I mosly use them for building
    "boring" frontendt for adnimstring websites or stuff like that, the
    are helpfull there, but I don't like them for public placement in
    websites.
    my 2 cents

  • Creating random stars behind everything else

    I've used the following actionscript to generate random
    "stars" on the stage. I would like all other elements in my movie
    to be placed above these "stars". I couldn't quite figure out the
    actionscript to control the depth of my stars so that all other
    elements will be placed on top of these random stars. As it is now,
    some stars come in front, others go behind. Thanks!!
    counter = 0;
    _root.onEnterFrame = function(){
    if (counter<=30){
    a = _root.star.duplicateMovieClip("copy", counter);
    a._x =random(Stage.width);
    a._y =random(Stage.height);
    a._xscale = a._yscale = random(100);
    a._rotation = random(360);
    a._alpha = random (100);
    counter++;
    else{
    delete this.onEnterFrame;

    if you have all your stuff created in AS, then just assign
    the lowest depth to it.
    but if layers involved, an easy get around is to create an
    empty mc symbol and place it on stage in the lowest layer. now, you
    just update that layer with your stars... and then there's a depth
    manager class you could also use (more coding).

  • FS Repository Manager depth limits - crawling problems

    Ciao a tuti.
    I have some really strange results from my Crawler. Here is the story:
    After Crawling 50000 for indexing I have around 800 docs where I have the Error Type: crawler.
    The interesting thing is that these documents have nothing in common & even via PCD there are "there" but after clicking on it, the message says: the document does not exist.
    So where can I start with the research? Maybe out there has someone a good idea?!
    Originally I thought, that I have a problem with the depth of the file structure, cause the structure is reallly complex. On the other hand I could not found any limitations for the FS Repository Manager.
    Thanx in advance

    Sir or madam -
    First, you may be hitting a URL limit of 256 characters.  Are you using the /irj/go/km/docs path to access the documents, or are you using the old method?
    Second, if you create a CM repository with FSDB persistence, do you have the same issues?
    Third, how deep into the repository does it go before an error is thrown?  Have you tried creating a test index directly to the folder/document in question?
    Good luck!
    Kyle

  • How To Install A (Almost) Working Lion Server With Profile Management/SSL/OD/Mail/iCal/Address Book/VNC/Web/etc.

    I recently installed a fresh version of Lion Server after attempting to fix a broken upgrade. With some help from others, I've managed to get all the new features working and have kept notes, having found that many or most of the necessary installation steps for both the OS and its services are almost entirely undocumented. When you get them working, they work great, but the entire process is very fragile, with simple setup steps causing breaks or even malicious behaviors. In case this is useful to others, here are my notes.
    Start with an erased, virgin, single guid partitioned drive. Not an upgrade. Not simply a repartitioned drive. Erased. Clean. Anything else can and probably will break the Lion Server install, as I discovered myself more than once. Before erasing my drive, I already had Lion and made a Lion install DVD from instructions widely available on the web. I suppose you could also boot into the Lion recovery partition and use disk utility to erase the OS X partition then install a new partition, but I cut a DVD. The bottom line is to erase any old OS partitions. And of course to have multiple, independent backups: I use both Time Machine with a modified StdExclusions.plist and Carbon Copy Cloner.
    Also, if you will be running your own personal cloud, you will want to know your domain name ahead of time, as this will be propagated everywhere throughout server, and changing anything related to SSL on Lion Server is a nightmare that I haven't figured out. If you don't yet have a domain name, go drop ten dollars at namecheap.com or wherever and reserve one before you start. Soemday someone will document how to change this stuff without breaking Lion Server, but we're not there yet. I'll assume the top-level domain name "domain.com" here.
    Given good backups, a Lion Install DVD (or Recovery Partition), and a domain name, here are the steps, apparently all of which must be more-or-less strictly followed in this order.
    DVD>Disk Utility>Erase Disk  [or Recovery Partition>Disk Utility>Erase Partition]
    DVD>Install Lion
    Reboot, hopefully Lion install kicks in
    Update, update, update Lion (NOT Lion Server yet) until no more updates
    System Preferences>Network>Static IP on the LAN (say 10.0.1.2) and Computer name ("server" is a good standbye)
    Terminal>$ sudo scutil --set HostName server.domain.com
    App Store>Install Lion Server and run through the Setup
    Download install Server Admin Tools, then update, update, update until no more updates
    Server Admin>DNS>Zones [IF THIS WASN'T AUTOMAGICALLY CREATED (mine wasn't): Add zone domain.com with Nameserver "server.domain.com." (that's a FQDN terminated with a period) and a Mail Exchanger (MX record) "server.domain.com." with priority 10. Add Record>Add Machine (A record) server.domain.com pointing to the server's static IP. You can add fancier DNS aliases and a simpler MX record below after you get through the crucial steps.]
    System Prefs>Network>Advanced>Set your DNS server to 127.0.0.1
    A few DNS set-up steps and these most important steps:
    A. Check that the Unix command "hostname" returns the correct hostname and you can see this hostname in Server.app>Hardware>Network
    B. Check that DNS works: the unix commands "host server.domain.com" and "host 10.0.1.2" (assuming that that's your static IP) should point to each other. Do not proceed until DNS works.
    C. Get Apple Push Notification Services CA via Server.app>Hardware>Settings><Click toggle, Edit... get a new cert ...>
    D. Server.app>Profile Manager>Configure... [Magic script should create OD Master, signed SSL cert]
    E. Server.app>Hardware>Settings>SSL Certificate> [Check to make sure it's set to the one just created]
    F. Using Server.app, turn on the web, then Server.app>Profile Manager> [Click on hyperlink to get to web page, e.g. server.domain.com/profilemanager] Upper RHS pull-down, install Trust Profile
    G. Keychain Access>System>Certificates [Find the automatically generated cert "Domain", the one that is a "Root certificate authority", Highlight and Export as .cer, email to all iOS devices, and click on the authority on the device. It should be entered as a trusted CA on all iOS devices. While you're at it, highlight and Export... as a .cer the certificate "IntermediateCA_SERVER.DOMAIN.COM_1", which is listed an an "Intermediate CA" -- you will use this to establish secure SSL connections with remote browsers hitting your server.]
    H. iOS on LAN: browse to server.domain.com/mydevices> [click on LHS Install trust cert, then RHS Enroll device.
    I. Test from web browser server.domain.com/mydevices: Lock Device to test
    J. ??? Profit
    12. Server Admin>DNS>Zones> Add convenient DNS alias records if necessary, e.g., mail.domain.com, smtp.domain.com, www.domain.com. If you want to refer to your box using the convenient shorthand "domain.com", you must enter the A record (NOT alias) "domain.com." FQDN pointing to the server's fixed IP. You can also enter the convenient short MX record "domain.com." with priority 11. This will all work on the LAN -- all these settings must be mirrored on the outside internet using the service from which you registered domain.com.
    You are now ready to begin turning on your services. Here are a few important details and gotchas setting up cloud services.
    Firewall
    Server Admin>Firewall>Services> Open up all ports needed by whichever services you want to run and set up your router (assuming that your server sits behind a router) to port forward these ports to your router's LAN IP. This is most a straightforward exercise in grepping for the correct ports on this page, but there are several jaw-droppingly undocumented omissions of crucial ports for Push Services and Device Enrollment. If you want to enroll your iOS devices, make sure port 1640 is open. If you want Push Notifications to work (you do), then ports 2195, 2196, 5218, and 5223 must be open. The Unix commands "lsof -i :5218" and "nmap -p 5218 server.domain.com" (nmap available from Macports after installing Xcode from the App Store) help show which ports are open.
    SSH
    Do this with strong security. Server.app to turn on remote logins (open port 22), but edit /etc/sshd_config to turn off root and password logins.
    PermitRootLogin no
    PasswordAuthentication no
    ChallengeResponseAuthentication no
    I'm note sure if toggling the Allow remote logins will load this config file or, run "sudo launchctl unload -w /System/Library/LaunchAgents/org.openbsd.ssh-agent.plist ; sudo launchctl load -w /System/Library/LaunchAgents/org.openbsd.ssh-agent.plist" to restart the server's ssh daemon.
    Then use ssh-keygen on remote client to generate public/private keys that can be used to remotely login to the server.
    client$ ssh-keygen -t rsa -b 2048 -C client_name
    [Securely copy ~/.ssh/id_rsa.pub from client to server.]
    server$ cat id_rsa.pub > ~/.ssh/known_hosts
    I also like DenyHosts, which emails detected ssh attacks to [email protected]. It's amazing how many ssh attacks there are on any open port 22. Not really an added security feature if you've turned off password logins, but good to monitor. Here's a Lion Server diff for the config file /usr/share/denyhosts:
    $ diff denyhosts.cfg-dist denyhosts.cfg
    12c12
    < SECURE_LOG = /var/log/secure
    > #SECURE_LOG = /var/log/secure
    22a23
    > SECURE_LOG = /var/log/secure.log
    34c35
    < HOSTS_DENY = /etc/hosts.deny
    > #HOSTS_DENY = /etc/hosts.deny
    40a42,44
    > #
    > # Mac OS X Lion Server
    > HOSTS_DENY = /private/etc/hosts.deny
    195c199
    < LOCK_FILE = /var/lock/subsys/denyhosts
    > #LOCK_FILE = /var/lock/subsys/denyhosts
    202a207,208
    > LOCK_FILE = /var/denyhosts/denyhosts.pid
    > #
    219c225
    < ADMIN_EMAIL =
    > ADMIN_EMAIL = [email protected]
    286c292
    < #SYSLOG_REPORT=YES
    > SYSLOG_REPORT=YES
    Network Accounts
    User Server.app to create your network accounts; do not use Workgroup Manager. If you use Workgroup Manager, as I did, then your accounts will not have email addresses specified and iCal Server WILL NOT COMPLETELY WORK. Well, at least collaboration through network accounts will be handled clunkily through email, not automatically as they should. If you create a network account using Workgroup Manager, then edit that account using Server.app to specify the email to which iCal invitations may be sent. Server.app doesn't say anything about this, but that's one thing that email address entry is used for. This still isn't quite solid on Lion Server, as my Open Directory logs on a freshly installed Lion Server are filled with errors that read:
    2011-12-12 15:05:52.425 EST - Module: SystemCache - Misconfiguration detected in hash 'Kerberos':
         User 'uname' (/LDAPv3/127.0.0.1) - ID 1031 - UUID 98B4DF30-09CF-42F1-6C31-9D55FE4A0812 - SID S-0-8-83-8930552043-0845248631-7065481045-9092
    Oh well.
    Email
    Email aliases are handled with the file /private/etc/postfix/aliases. Do something like this
    root:           myname
    admin:          myname
    sysadmin:       myname
    certadmin:      myname
    webmaster:      myname
    my_alternate:   myname
    Then run "sudo newaliases". If your ISP is Comcast or some other large provider, you probably must proxy your outgoing mail through their SMTP servers to avoid being blocked as a spammer (a lot of SMTP servers will block email from Comcast/whatever IP addresses that isn't sent by Comcast). Use Server.app>Mail to enter your account information. Even then, the Lion Server default setup may fail using this proxy. I had to do this with the file /private/etc/postfix/main.cf:
    cd /etc/postfix
    sudo cp ./main.cf ./main.cf.no_smtp_sasl_security_options
    sudo echo 'smtp_sasl_security_options = noanonymous' >> ./main.cf
    sudo serveradmin stop mail
    sudo serveradmin start mail
    Finally, make sure that you're running a blacklisting srevice yourself! Server Admin>Mail>Filter> Use spamhaus.org as a blacklister. Finally, set up mail to use strong Kerberos/MD5 settings under on Server Admin>Mail>Advanced. Turn off password and clear logins. The settings should be set to "Use" your SSL cert, NOT "Require". "Require" consistently breaks things for me.
    If you already installed the server's Trust Certificate as described above (and opened up the correct ports), email to your account should be pushed out to all clients.
    iCal Server
    Server.app>Calendar>Turn ON and Allow Email Invitations, Edit... . Whatever you do, do NOT enter your own email account information in this GUI. You must enter the account information for local user com.apple.calendarserver, and the password for this account, which is stored in the System keychain: Keychain Access>System> Item com.apple.servermgr_calendar. Double-click and Show Password, copy and paste into Server.app dialog. This is all described in depth here. If you enter your own account information here (DO NOT!), the iCal Server will delete all Emails in your Inbox just as soon as it reads them, exactly like it works for user com.apple.calendarserver. Believe me, you don't want to discover this "feature", which I expect will be more tightly controlled in some future update.
    Web
    The functionality of Server.app's Web management is pretty limited and awful, but a few changes to the file /etc/apache2/httpd.conf will give you a pretty capable and flexible web server, just one that you must manage by hand. Here's a diff for httpd.conf:
    $ diff httpd.conf.default httpd.conf
    95c95
    < #LoadModule ssl_module libexec/apache2/mod_ssl.so
    > LoadModule ssl_module libexec/apache2/mod_ssl.so
    111c111
    < #LoadModule php5_module libexec/apache2/libphp5.so
    > LoadModule php5_module libexec/apache2/libphp5.so
    139,140c139,140
    < #LoadModule auth_digest_apple_module libexec/apache2/mod_auth_digest_apple.so
    < #LoadModule encoding_module libexec/apache2/mod_encoding.so
    > LoadModule auth_digest_apple_module libexec/apache2/mod_auth_digest_apple.so
    > LoadModule encoding_module libexec/apache2/mod_encoding.so
    146c146
    < #LoadModule xsendfile_module libexec/apache2/mod_xsendfile.so
    > LoadModule xsendfile_module libexec/apache2/mod_xsendfile.so
    177c177
    < ServerAdmin [email protected]
    > ServerAdmin [email protected]
    186c186
    < #ServerName www.example.com:80
    > ServerName domain.com:443
    677a678,680
    > # Server-specific configuration
    > # sudo apachectl -D WEBSERVICE_ON -D MACOSXSERVER -k restart
    > Include /etc/apache2/mydomain/*.conf
    I did "sudo mkdir /etc/apache2/mydomain" and add specific config files for various web pages to host. For example, here's a config file that will host the entire contents of an EyeTV DVR, all password controlled with htdigest ("htdigest ~uname/.htdigest EyeTV uname"). Browsing to https://server.domain.com/eyetv points to /Users/uname/Sites/EyeTV, in which there's an index.php script that can read and display the EyeTV archive at https://server.domain.com/eyetv_archive. If you want Apache username accounts with twiddles as in https://server.domain.com/~uname, specify "UserDir Sites" in the configuration file.
    Alias /eyetv /Users/uname/Sites/EyeTV
    <Directory "/Users/uname/Sites/EyeTV">
        AuthType Digest
        AuthName "EyeTV"
        AuthUserFile /Users/uname/.htdigest
        AuthGroupFile /dev/null
        Require user uname
        Options Indexes MultiViews
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
    Alias /eyetv_archive "/Volumes/Macintosh HD2/Documents/EyeTV Archive"
    <Directory "/Volumes/Macintosh HD2/Documents/EyeTV Archive">
        AuthType Digest
        AuthName "EyeTV"
        AuthUserFile /Users/uname/.htdigest
        AuthGroupFile /dev/null
        Require user uname
        Options Indexes MultiViews
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
    I think you can turn Web off/on in Server.app to relaunch apached, or simply "sudo apachectl -D WEBSERVICE_ON -D MACOSXSERVER -k restart".
    Securely copy to all desired remote clients the file IntermediateCA_SERVER.DOMAIN.COM_1.cer, which you exported from System Keychain above. Add this certificate to your remote keychain and trust it, allowing secure connections between remote clients and your server. Also on remote clients: Firefox>Advanced>Encryption>View Certificates>Authorities>Import...> Import this certificate into your browser. Now there should be a secure connection to https://server.domain.com without any SSL warnings.
    One caveat is that there should be a nice way to establish secure SSL to https://domain.com and https://www.domain.com, but the automagically created SSL certificate only knows about server.domain.com. I attempted to follow this advice when I originally created the cert and add these additional domains (under "Subject Alternate Name Extension"), but the cert creation UI failed when I did this, so I just gave up. I hope that by the time these certs expire, someone posts some documentation on how to manage and change Lion Server SSL scripts AFTER the server has been promoted to an Open Directory Master. In the meantime, it would be much appreciated if anyone can post either how to add these additional domain names to the existing cert, or generate and/or sign a cert with a self-created Keychain Access root certificate authority. In my experience, any attempt to mess with the SSL certs automatically generated just breaks Lion Server.
    Finally, if you don't want a little Apple logo as your web page icon, create your own 16×16 PNG and copy it to the file /Library/Server/Web/Data/Sites/Default/favicon.ico. And request that all web-crawling robots go away with the file /Library/Server/Web/Data/Sites/Default/robots.txt:
    User-agent: *
    Disallow: /
    Misc
    VNC easily works with iOS devices -- use a good passphrase. Edit /System/Library/LaunchDaemons/org.postgresql.postgres.plist and set "listen_addresses=127.0.0.1" to allow PostgreSQL connections over localhost. I've also downloaded snort/base/swatch to build an intrusion detection system, and used Macports's squid+privoxy to build a privacy-enhanced ad-blocking proxy server.

    Privacy Enhancing Filtering Proxy and SSH Tunnel
    Lion Server comes with its own web proxy, but chaining Squid and Privoxy together provides a capable and effective web proxy that can block ads and malicious scripts, and conceal information used to track you around the web. I've posted a simple way to build and use a privacy enhancing web proxy here. While you're at it, configure your OS and browsers to block Adobe Flash cookies and block Flash access to your camera, microphone, and peer networks. Read this WSJ article series to understand how this impacts your privacy. If you configure it to allow use for anyone on your LAN, be sure to open up ports 3128, 8118, and 8123 on your firewall.
    If you've set up ssh and/or VPN as above, you can securely tunnel in to your proxy from anywhere. The syntax for ssh tunnels is a little obscure, so I wrote a little ssh tunnel script with a simpler flexible syntax. This script also allows secure tunnels to other services like VNC (port 5900). If you save this to a file ./ssht (and chmod a+x ./ssht), example syntax to establish an ssh tunnel through localhost:8080 (or, e.g., localhost:5901 for secure VNC Screen Sharing connects) looks like:
    $ ./ssht 8080:[email protected]:3128
    $ ./ssht 8080:alice@:
    $ ./ssht 8080:
    $ ./ssht 8018::8123
    $ ./ssht 5901::5900  [Use the address localhost:5901 for secure VNC connects using OS X's Screen Sharing or Chicken of the VNC (sudo port install cotvnc)]
    $ vi ./ssht
    #!/bin/sh
    # SSH tunnel to squid/whatever proxy: ssht [-p ssh_port] [localhost_port:][user_name@][ip_address][:remotehost][:remote_port]
    USERNAME_DEFAULT=username
    HOSTNAME_DEFAULT=domain.com
    SSHPORT_DEFAULT=22
    # SSH port forwarding specs, e.g. 8080:localhost:3128
    LOCALHOSTPORT_DEFAULT=8080      # Default is http proxy 8080
    REMOTEHOST_DEFAULT=localhost    # Default is localhost
    REMOTEPORT_DEFAULT=3128         # Default is Squid port
    # Parse ssh port and tunnel details if specified
    SSHPORT=$SSHPORT_DEFAULT
    TUNNEL_DETAILS=$LOCALHOSTPORT_DEFAULT:$USERNAME_DEFAULT@$HOSTNAME_DEFAULT:$REMOT EHOST_DEFAULT:$REMOTEPORT_DEFAULT
    while [ "$1" != "" ]
    do
      case $1
      in
        -p) shift;                  # -p option
            SSHPORT=$1;
            shift;;
         *) TUNNEL_DETAILS=$1;      # 1st argument option
            shift;;
      esac
    done
    # Get local and remote ports, username, and hostname from the command line argument: localhost_port:user_name@ip_address:remote_host:remote_port
    shopt -s extglob                        # needed for +(pattern) syntax; man sh
    LOCALHOSTPORT=$LOCALHOSTPORT_DEFAULT
    USERNAME=$USERNAME_DEFAULT
    HOSTNAME=$HOSTNAME_DEFAULT
    REMOTEHOST=$REMOTEHOST_DEFAULT
    REMOTEPORT=$REMOTEPORT_DEFAULT
    # LOCALHOSTPORT
    CDR=${TUNNEL_DETAILS#+([0-9]):}         # delete shortest leading +([0-9]):
    CAR=${TUNNEL_DETAILS%%$CDR}             # cut this string from TUNNEL_DETAILS
    CAR=${CAR%:}                            # delete :
    if [ "$CAR" != "" ]                     # leading or trailing port specified
    then
        LOCALHOSTPORT=$CAR
    fi
    TUNNEL_DETAILS=$CDR
    # REMOTEPORT
    CDR=${TUNNEL_DETAILS%:+([0-9])}         # delete shortest trailing :+([0-9])
    CAR=${TUNNEL_DETAILS##$CDR}             # cut this string from TUNNEL_DETAILS
    CAR=${CAR#:}                            # delete :
    if [ "$CAR" != "" ]                     # leading or trailing port specified
    then
        REMOTEPORT=$CAR
    fi
    TUNNEL_DETAILS=$CDR
    # REMOTEHOST
    CDR=${TUNNEL_DETAILS%:*}                # delete shortest trailing :*
    CAR=${TUNNEL_DETAILS##$CDR}             # cut this string from TUNNEL_DETAILS
    CAR=${CAR#:}                            # delete :
    if [ "$CAR" != "" ]                     # leading or trailing port specified
    then
        REMOTEHOST=$CAR
    fi
    TUNNEL_DETAILS=$CDR
    # USERNAME
    CDR=${TUNNEL_DETAILS#*@}                # delete shortest leading +([0-9]):
    CAR=${TUNNEL_DETAILS%%$CDR}             # cut this string from TUNNEL_DETAILS
    CAR=${CAR%@}                            # delete @
    if [ "$CAR" != "" ]                     # leading or trailing port specified
    then
        USERNAME=$CAR
    fi
    TUNNEL_DETAILS=$CDR
    # HOSTNAME
    HOSTNAME=$TUNNEL_DETAILS
    if [ "$HOSTNAME" == "" ]                # no hostname given
    then
        HOSTNAME=$HOSTNAME_DEFAULT
    fi
    ssh -p $SSHPORT -L $LOCALHOSTPORT:$REMOTEHOST:$REMOTEPORT -l $USERNAME $HOSTNAME -f -C -q -N \
        && echo "SSH tunnel established via $LOCALHOSTPORT:$REMOTEHOST:$REMOTEPORT\n\tto $USERNAME@$HOSTNAME:$SSHPORT." \
        || echo "SSH tunnel FAIL."

  • AMD FireGL GPU + Creative Cloud app = Color Depth & other Issues

    Hello,  I am writing this post to help anyone who may have ran into the same issues I am seeing with my AMD FireGL graphics adapter when using the Adobe Creative Cloud app on a windows 7 PC.
    I ran into a problem installing and setting up the Creative Cloud app on my new workstation that has an AMD FireGL graphics processor.
    First off, the system is new (dell precision m4800, with an AMD FireGL V M5100 GPU), and has all the most current drivers and updates available.. that is to say, this is not a hardware issue.
    The system operates just fine outside of the Creative Cloud app, but when I installed and attempted to login to Creative Cloud for access to download Illustrator, etc., the Creative Cloud app would open up and then only display a blank white page.  No graphics, no data, just white.  
    When I got stuck at this point I called Adobe support and spoke to a rep who had seen the issue before. The rep worked around the blank white page in CC by loading the windows device manager and manually disabling the AMD FireGL GPU device to re-install and login to the Creative Cloud app.   This temporarily forced windows to use the default/dummy VGA graphics driver supplied with windows.   With windows using the dummy 256-color vga driver we were able to get the creative cloud app running and get me logged in to install my design software. HOORAY!--or so I thought....
      At this point I assumed the issue was resolved, but I found that there was a new issue popping up every time I rebooted my system.  Windows would load and log me in using the 32bit color depth setting, but as soon as the Adobe Creative Cloud app started up, my color mode would switch to 256 colors... D`oh!  
    Obviously I don't want to run at only 256 colors, and neither should you!  Adobe, why does my color depth change to 256 colors every time the Creative Cloud app is loaded?
    If you want to temporarily reset the color depth to 32bit, you can go to Control Panel -> Display -> Adjust Resolution -> Advanced Settings -> Monitor Tab -> & select "True Color (32bit)" from the Colors drop-down menu.    Using this method will allow Adobe Creative Cloud app to continue running 24/7, however this is only a temporary fix, which will need to be applied every time the system is rebooted, or any time a user logs off then back in.. Frankly, its a bit of a PITA, so why bother?
    The permanent fix is simple.. go to Start -> & do a Search for "msconfig".   Once found, run the msconfig utility and switch to the "Startup" tab, where you will be presented with a list of boot time startup items.  Find the one labeled "Adobe Creative Cloud" and disable it by removing the check mark from the corresponding check box.   Then click OK.  You will be warned that a restart may be required.. go ahead and re-start.   This time, when the system boots, Adobe Creative Cloud will not load, and your color depth will remain at 32bit.  YAY!
    If need be you can always load up Creative Cloud manually from the start menu if you need it, but it will knock your color depth back to 256 colors.  Thus far i have had zero issues using adobe photoshop or illustrator without first loading the Creative Cloud app, so it isn't required.  If i need updates or need to access other features within the Creative Cloud app i can, but it doesnt need to run 24/7 to use other adobe apps.
    The short explanation is that Adobe is failing to fully and properly support the AMD FireGL graphics platform.  The adobe rep i spoke to essentially said the same thing, but made certain to blame the graphics device and not adobe software--sure thing boss.   The truth is that the FireGL and its varients have been on the market as long or longer than the nvidia products that are supported fully by adobe. 
    It is clear that Adobe has made a choice not to fully support AMD Workstation graphics (FireGL) since not only is the Creative Cloud app broken and causing problems, but also no graphics acceleration features work in any of my installed adobe apps.. I basically get a message saying "please us a supported graphics processor".  Seriously, how is FireGL not "Supported"?
    I am not an AMD or FireGL fanboy.. Frankly I cant stand AMD graphics adapters and I genuinely prefer nVidia on my personal systems.  At home, my 5 year old $100 nVidia gaming card is fully supported in all the adobe apps..
    At work, however, I have no choice what hardware is provided to me and this lack of FireGL support has negatively impacted my productivity more than once.  Admittedly, nvidia has much more market share than AMD in the workstation graphics realm, but that does not mean adobe should just ignore AMD completely!
    Hopefully this post will shed some light on issues with Adobe Creative Cloud app and FireGL graphics cards that others may be experiencing.
    Good Luck!

    Minor correction...  I called my GPU the FireGL, which is the old market name..  The current, proper market name is FirePro.. same line, just new branding after AMD purchased ATI.

  • Unable to Open Project Site Access Denied Issue (Project Manager)

    Hi 
    We got an issue that one project manager is having 12 projects, in that she can able to view 5 projects-- project sites but remaining 7 projects --- she is not able to open the project site (access denied) error is throwing when she try to open.
    She is the project manager of the 12 projects and having project manager permissions on the project sites.
    Please suggest any solution for this.
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

    I believe I've found the fix for this issue.  After opening a ticket with MS support and not getting anywhere with this issue I decided to do an in-depth review of all the Project and SharePoint 2013 CU's starting with December 2013 to September 2014. 
    To my amazement buried inside the July 2014 CU was a hotfix for this issue described almost word for word. (I will list all the relevant KB's at the end)  I contacted my support engineer inquiring about this hotfix and he stated it wasn't relevant because
    the "Synchronize Project Web App permissions to Project Site" was not failing or even generating any warnings in our Prod or Test environments.  I stated that is not always an indicator as ULS doesn't always catch all relevant errors.
    I informed him that I also found a second hotfix pertaining to the same issue released August 2014, apparently the first hotfix in July didn't totally resolve the issue and a second hotfix was released.  He was adamant that this would not resolve
    our issue and he requested or production databases because he was unable to replicate the issue in his test environment.  The reason, you may wonder, is because he was at a higher patch level that our farm.... Obviously!  His farm had the most current
    CU which included the hotfixes from July and August.  Apparently he didn't see the flaw in his logic.
    I decided to install the September CU on our test farm. Low and behold that fixed the problem, even though MS support stated the hotfix was not relevant to our issue.  I learned a long time ago to take MS support comments as suggestions instead
    of gospel truth, this isn't the first time they have confidently given me erroneous information.
    We are currently doing further testing to verify that this CU didn't break something else.  Unfortunately these rollups are not GA and Microsoft is very clear that you should only install them if the hotfixes pertain directly to your issue.
    Finding the hotfixes was a chore as Microsoft loves to create multiple KB's for the same thing and then nest (bury) them so you have to dig through four or five KB's to find the relevant fix.  I'll save you the trouble and list them below.
    Watch the
    September CU Webcast Brian Smith and team go into depth explaining why this issue has been happening and how they fixed it.
    September 2014 CU http://support.microsoft.com/kb/2882990 (the one I installed)
    August 2014 CU https://support.microsoft.com/kb/2989078
    August Project site sync hotfix
    https://support2.microsoft.com/kb/2883083
    July 2014 CU http://support.microsoft.com/kb/2882990
    July Project Site Sync hotfix http://support2.microsoft.com/kb/2882995
    Microsoft Project Server Blog
    http://blogs.technet.com/b/projectsupport/  (I find this to be more helpful than the TechNet site)
    Frank Miranda Florida Hospital MIS

  • Network manager takes lot of time during boot

    HOw to reduce my networkmanager boot time
    Below is my systemd-analyze time
    [root@gauranga simha]# systemd-analyze time
    Startup finished in 5449ms (kernel) + 82854ms (userspace) = 88303ms
    Below is my systemd-analyze blame
    [root@gauranga simha]# systemd-analyze blame
    39261ms NetworkManager.service
    13083ms mysqld.service
    3764ms sys-kernel-debug.mount
    3733ms dev-mqueue.mount
    3720ms dev-hugepages.mount
    3566ms systemd-remount-fs.service
    3423ms systemd-binfmt.service
    3342ms systemd-vconsole-setup.service
    3038ms proc-sys-fs-binfmt_misc.mount
    2349ms media-GAUR.mount
    1954ms polkit.service
    1938ms colord.service
    1226ms systemd-udevd.service
    970ms bluetooth.service
    934ms systemd-logind.service
    881ms systemd-udev-trigger.service
    460ms systemd-sysctl.service
    439ms systemd-modules-load.service
    426ms dev-sda6.swap
    410ms systemd-tmpfiles-setup.service
    256ms httpd.service
    229ms systemd-readahead-replay.service
    80ms systemd-readahead-collect.service
    54ms udisks2.service
    53ms console-kit-log-system-start.service
    52ms wpa_supplicant.service
    49ms console-kit-daemon.service
    19ms systemd-user-sessions.service
    19ms tmp.mount
    14ms rtkit-daemon.service
    8ms modem-manager.service
    5ms upower.service
    1ms sys-fs-fuse-connections.mount
    Output for journalctl -b
    [root@gauranga simha]# journalctl -b
    -- Logs begin at Mon 2013-03-11 15:14:32 IST, end at Fri 2013-03-22 18:34:03 IST. --
    Mar 22 18:32:32 gauranga systemd-journal[114]: Allowing runtime journal files to grow to 145.1M.
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys cpuset
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys cpu
    Mar 22 18:32:32 gauranga kernel: Linux version 3.5.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Sep 15 13:
    Mar 22 18:32:32 gauranga kernel: Disabled fast string operations
    Mar 22 18:32:32 gauranga kernel: e820: BIOS-provided physical RAM map:
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000b64e0fff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b64e1000-0x00000000b64e3fff] ACPI NVS
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b64e4000-0x00000000b7a6afff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7a6b000-0x00000000b7abefff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7abf000-0x00000000b7b84fff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7b85000-0x00000000b7bbefff] ACPI NVS
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7bbf000-0x00000000b7be3fff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7be4000-0x00000000b7bf6fff] ACPI data
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7bf7000-0x00000000b7bfffff] usable
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000b7c00000-0x00000000bfffffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    Mar 22 18:32:32 gauranga kernel: BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
    Mar 22 18:32:32 gauranga kernel: Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    Mar 22 18:32:32 gauranga kernel: DMI 2.4 present.
    Mar 22 18:32:32 gauranga kernel: DMI: Sony Corporation VGN-CS230J/VAIO, BIOS R1100Q2 09/01/2009
    Mar 22 18:32:32 gauranga kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Mar 22 18:32:32 gauranga kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Mar 22 18:32:32 gauranga kernel: e820: last_pfn = 0xb7c00 max_arch_pfn = 0x100000
    Mar 22 18:32:32 gauranga kernel: MTRR default type: uncachable
    Mar 22 18:32:32 gauranga kernel: MTRR fixed ranges enabled:
    Mar 22 18:32:32 gauranga kernel: 00000-9FFFF write-back
    Mar 22 18:32:32 gauranga kernel: A0000-BFFFF uncachable
    Mar 22 18:32:32 gauranga kernel: C0000-C7FFF write-through
    Mar 22 18:32:32 gauranga kernel: C8000-FFFFF uncachable
    Mar 22 18:32:32 gauranga kernel: MTRR variable ranges enabled:
    Mar 22 18:32:32 gauranga kernel: 0 base 0FFF00000 mask FFFF00000 write-protect
    Mar 22 18:32:32 gauranga kernel: 1 base 000000000 mask F80000000 write-back
    Mar 22 18:32:32 gauranga kernel: 2 base 080000000 mask FC0000000 write-back
    Mar 22 18:32:32 gauranga kernel: 3 base 0B8000000 mask FF8000000 uncachable
    Mar 22 18:32:32 gauranga kernel: 4 disabled
    Mar 22 18:32:32 gauranga kernel: 5 base 100000000 mask FC0000000 write-back
    Mar 22 18:32:32 gauranga kernel: 6 disabled
    Mar 22 18:32:32 gauranga kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mar 22 18:32:32 gauranga kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Mar 22 18:32:32 gauranga kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Mar 22 18:32:32 gauranga kernel: init_memory_mapping: [mem 0x00000000-0x377fdfff]
    Mar 22 18:32:32 gauranga kernel: [mem 0x00000000-0x003fffff] page 4k
    Mar 22 18:32:32 gauranga kernel: [mem 0x00400000-0x373fffff] page 2M
    Mar 22 18:32:32 gauranga kernel: [mem 0x37400000-0x377fdfff] page 4k
    Mar 22 18:32:32 gauranga kernel: kernel direct mapping tables up to 0x377fdfff @ [mem 0x01bfa000-0x01bfffff]
    Mar 22 18:32:32 gauranga kernel: RAMDISK: [mem 0x37966000-0x37caafff]
    Mar 22 18:32:32 gauranga kernel: Allocated new RAMDISK: [mem 0x374b9000-0x377fd447]
    Mar 22 18:32:32 gauranga kernel: Move RAMDISK from [mem 0x37966000-0x37caa447] to [mem 0x374b9000-0x377fd447]
    Mar 22 18:32:32 gauranga kernel: ACPI: RSDP 000fe020 00024 (v02 Sony)
    Mar 22 18:32:32 gauranga kernel: ACPI: XSDT b7bf6120 0006C (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: FACP b7bf5000 000F4 (v04 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: DSDT b7bea000 0674D (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: FACS b7b92000 00040
    Mar 22 18:32:32 gauranga kernel: ACPI: HPET b7bf4000 00038 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: APIC b7bf3000 0006C (v02 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: MCFG b7bf2000 0003C (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: ASF! b7bf1000 000A5 (v32 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SLIC b7be9000 00176 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: BOOT b7be8000 00028 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7be7000 000D9 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7be4000 00655 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Local APIC address 0xfee00000
    Mar 22 18:32:32 gauranga kernel: 2052MB HIGHMEM available.
    Mar 22 18:32:32 gauranga kernel: 887MB LOWMEM available.
    Mar 22 18:32:32 gauranga kernel: mapped low ram: 0 - 377fe000
    Mar 22 18:32:32 gauranga kernel: low ram: 0 - 377fe000
    Mar 22 18:32:32 gauranga kernel: Zone ranges:
    Mar 22 18:32:32 gauranga kernel: DMA [mem 0x00010000-0x00ffffff]
    Mar 22 18:32:32 gauranga kernel: Normal [mem 0x01000000-0x377fdfff]
    Mar 22 18:32:32 gauranga kernel: HighMem [mem 0x377fe000-0xb7bfffff]
    Mar 22 18:32:32 gauranga kernel: Movable zone start for each node
    Mar 22 18:32:32 gauranga kernel: Early memory node ranges
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0x00010000-0x0009efff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0x00100000-0xb64e0fff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb64e4000-0xb7a6afff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb7abf000-0xb7b84fff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb7bbf000-0xb7be3fff]
    Mar 22 18:32:32 gauranga kernel: node 0: [mem 0xb7bf7000-0xb7bfffff]
    Mar 22 18:32:32 gauranga kernel: On node 0 totalpages: 752363
    Mar 22 18:32:32 gauranga kernel: free_area_init_node: node 0, pgdat c1539c40, node_mem_map f5dc0200
    Mar 22 18:32:32 gauranga kernel: DMA zone: 32 pages used for memmap
    Mar 22 18:32:32 gauranga kernel: DMA zone: 0 pages reserved
    Mar 22 18:32:32 gauranga kernel: DMA zone: 3951 pages, LIFO batch:0
    Mar 22 18:32:32 gauranga kernel: Normal zone: 1744 pages used for memmap
    Mar 22 18:32:32 gauranga kernel: Normal zone: 221486 pages, LIFO batch:31
    Mar 22 18:32:32 gauranga kernel: HighMem zone: 4105 pages used for memmap
    Mar 22 18:32:32 gauranga kernel: HighMem zone: 521045 pages, LIFO batch:31
    Mar 22 18:32:32 gauranga kernel: Using APIC driver default
    Mar 22 18:32:32 gauranga kernel: ACPI: PM-Timer IO Port: 0x408
    Mar 22 18:32:32 gauranga kernel: ACPI: Local APIC address 0xfee00000
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
    Mar 22 18:32:32 gauranga kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Mar 22 18:32:32 gauranga kernel: IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Mar 22 18:32:32 gauranga kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mar 22 18:32:32 gauranga kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Mar 22 18:32:32 gauranga kernel: ACPI: IRQ0 used by override.
    Mar 22 18:32:32 gauranga kernel: ACPI: IRQ2 used by override.
    Mar 22 18:32:32 gauranga kernel: ACPI: IRQ9 used by override.
    Mar 22 18:32:32 gauranga kernel: Using ACPI (MADT) for SMP configuration information
    Mar 22 18:32:32 gauranga kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Mar 22 18:32:32 gauranga kernel: SMP: Allowing 4 CPUs, 2 hotplug CPUs
    Mar 22 18:32:32 gauranga kernel: nr_irqs_gsi: 40
    Mar 22 18:32:32 gauranga kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Mar 22 18:32:32 gauranga kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Mar 22 18:32:32 gauranga kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Mar 22 18:32:32 gauranga kernel: e820: [mem 0xc0000000-0xf7ffffff] available for PCI devices
    Mar 22 18:32:32 gauranga kernel: Booting paravirtualized kernel on bare hardware
    Mar 22 18:32:32 gauranga kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    Mar 22 18:32:32 gauranga kernel: PERCPU: Embedded 13 pages/cpu @f5d7a000 s31616 r0 d21632 u53248
    Mar 22 18:32:32 gauranga kernel: pcpu-alloc: s31616 r0 d21632 u53248 alloc=13*4096
    Mar 22 18:32:32 gauranga kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    Mar 22 18:32:32 gauranga kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 746482
    Mar 22 18:32:32 gauranga kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=de9c1526-30ec-4261-a7fe-c21f74aefba0 ro resume=/dev/sda6 quiet
    Mar 22 18:32:32 gauranga kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Mar 22 18:32:32 gauranga kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Mar 22 18:32:32 gauranga kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Mar 22 18:32:32 gauranga kernel: __ex_table already sorted, skipping sort
    Mar 22 18:32:32 gauranga kernel: Initializing CPU#0
    Mar 22 18:32:32 gauranga kernel: xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Mar 22 18:32:32 gauranga kernel: allocated 6020992 bytes of page_cgroup
    Mar 22 18:32:32 gauranga kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mar 22 18:32:32 gauranga kernel: Initializing HighMem for node 0 (000377fe:000b7c00)
    Mar 22 18:32:32 gauranga kernel: Memory: 2968736k/3010560k available (3896k kernel code, 40716k reserved, 1491k data, 532k init, 2100600k highmem)
    Mar 22 18:32:32 gauranga kernel: [379B blob data]
    Mar 22 18:32:32 gauranga kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Mar 22 18:32:32 gauranga kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Mar 22 18:32:32 gauranga kernel: Preemptible hierarchical RCU implementation.
    Mar 22 18:32:32 gauranga kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Mar 22 18:32:32 gauranga kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Mar 22 18:32:32 gauranga kernel: NR_IRQS:2304 nr_irqs:712 16
    Mar 22 18:32:32 gauranga kernel: CPU 0 irqstacks, hard=f500a000 soft=f500c000
    Mar 22 18:32:32 gauranga kernel: Extended CMOS year: 2000
    Mar 22 18:32:32 gauranga kernel: Console: colour dummy device 80x25
    Mar 22 18:32:32 gauranga kernel: console [tty0] enabled
    Mar 22 18:32:32 gauranga kernel: hpet clockevent registered
    Mar 22 18:32:32 gauranga kernel: Fast TSC calibration using PIT
    Mar 22 18:32:32 gauranga kernel: Detected 2394.003 MHz processor.
    Mar 22 18:32:32 gauranga kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.50 BogoMIPS (lpj=7980010)
    Mar 22 18:32:32 gauranga kernel: pid_max: default: 32768 minimum: 301
    Mar 22 18:32:32 gauranga kernel: Security Framework initialized
    Mar 22 18:32:32 gauranga kernel: AppArmor: AppArmor disabled by boot time parameter
    Mar 22 18:32:32 gauranga kernel: Mount-cache hash table entries: 512
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys cpuacct
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys memory
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys devices
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys freezer
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys net_cls
    Mar 22 18:32:32 gauranga kernel: Initializing cgroup subsys blkio
    Mar 22 18:32:32 gauranga kernel: Disabled fast string operations
    Mar 22 18:32:32 gauranga kernel: CPU: Physical Processor ID: 0
    Mar 22 18:32:32 gauranga kernel: CPU: Processor Core ID: 0
    Mar 22 18:32:32 gauranga kernel: mce: CPU supports 6 MCE banks
    Mar 22 18:32:32 gauranga kernel: CPU0: Thermal monitoring handled by SMI
    Mar 22 18:32:32 gauranga kernel: using mwait in idle threads.
    Mar 22 18:32:32 gauranga kernel: ACPI: Core revision 20120320
    Mar 22 18:32:32 gauranga kernel: ftrace: allocating 17053 entries in 34 pages
    Mar 22 18:32:32 gauranga kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Mar 22 18:32:32 gauranga kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mar 22 18:32:32 gauranga kernel: CPU0: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz stepping 0a
    Mar 22 18:32:32 gauranga kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    Mar 22 18:32:32 gauranga kernel: ... version: 2
    Mar 22 18:32:32 gauranga kernel: ... bit width: 40
    Mar 22 18:32:32 gauranga kernel: ... generic registers: 2
    Mar 22 18:32:32 gauranga kernel: ... value mask: 000000ffffffffff
    Mar 22 18:32:32 gauranga kernel: ... max period: 000000007fffffff
    Mar 22 18:32:32 gauranga kernel: ... fixed-purpose events: 3
    Mar 22 18:32:32 gauranga kernel: ... event mask: 0000000700000003
    Mar 22 18:32:32 gauranga kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Mar 22 18:32:32 gauranga kernel: CPU 1 irqstacks, hard=f50f8000 soft=f50fa000
    Mar 22 18:32:32 gauranga kernel: Initializing CPU#1
    Mar 22 18:32:32 gauranga kernel: Disabled fast string operations
    Mar 22 18:32:32 gauranga kernel: CPU1: Thermal monitoring handled by SMI
    Mar 22 18:32:32 gauranga kernel: Booting Node 0, Processors #1
    Mar 22 18:32:32 gauranga kernel: Brought up 2 CPUs
    Mar 22 18:32:32 gauranga kernel: Total of 2 processors activated (9579.01 BogoMIPS).
    Mar 22 18:32:32 gauranga kernel: devtmpfs: initialized
    Mar 22 18:32:32 gauranga kernel: PM: Registering ACPI NVS region [mem 0xb64e1000-0xb64e3fff] (12288 bytes)
    Mar 22 18:32:32 gauranga kernel: PM: Registering ACPI NVS region [mem 0xb7b85000-0xb7bbefff] (237568 bytes)
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 16
    Mar 22 18:32:32 gauranga kernel: ACPI: bus type pci registered
    Mar 22 18:32:32 gauranga kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    Mar 22 18:32:32 gauranga kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Mar 22 18:32:32 gauranga kernel: PCI: Using MMCONFIG for extended config space
    Mar 22 18:32:32 gauranga kernel: PCI: Using configuration type 1 for base access
    Mar 22 18:32:32 gauranga kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Mar 22 18:32:32 gauranga kernel: mtrr: probably your BIOS does not setup all CPUs.
    Mar 22 18:32:32 gauranga kernel: mtrr: corrected configuration.
    Mar 22 18:32:32 gauranga kernel: bio: create slab <bio-0> at 0
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(Module Device)
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(Processor Device)
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Mar 22 18:32:32 gauranga kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Mar 22 18:32:32 gauranga kernel: ACPI: EC: Look up EC in DSDT
    Mar 22 18:32:32 gauranga kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Mar 22 18:32:32 gauranga kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a76c18 00265 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 00265 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a74618 005B3 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 005B3 (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a75e18 001CF (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 001CF (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT b7a76f18 0008D (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Dynamic OEM Table Load:
    Mar 22 18:32:32 gauranga kernel: ACPI: SSDT (null) 0008D (v01 Sony VAIO 20090901 INTL 20061109)
    Mar 22 18:32:32 gauranga kernel: ACPI: Interpreter enabled
    Mar 22 18:32:32 gauranga kernel: ACPI: (supports S0 S3 S4 S5)
    Mar 22 18:32:32 gauranga kernel: ACPI: Using IOAPIC for interrupt routing
    Mar 22 18:32:32 gauranga kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Mar 22 18:32:32 gauranga kernel: ACPI: No dock devices found.
    Mar 22 18:32:32 gauranga kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: PCI host bridge to bus 0000:00
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    Mar 22 18:32:32 gauranga kernel: DMAR: Forcing write-buffer flush capability
    Mar 22 18:32:32 gauranga kernel: DMAR: Disabling IOMMU for graphics on this chipset
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: reg 20: [io 0x60f0-0x60f7]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.1: reg 10: [mem 0xd3400000-0xd34fffff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.0: reg 20: [io 0x60c0-0x60df]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.1: reg 20: [io 0x60a0-0x60bf]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.7: reg 10: [mem 0xd6804c00-0xd6804fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1b.0: reg 10: [mem 0xd6800000-0xd6803fff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.0: reg 20: [io 0x6080-0x609f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.1: reg 20: [io 0x6060-0x607f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.2: reg 20: [io 0x6040-0x605f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.7: reg 10: [mem 0xd6804800-0xd6804bff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 10: [io 0x60e8-0x60ef]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 14: [io 0x60fc-0x60ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 18: [io 0x60e0-0x60e7]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 1c: [io 0x60f8-0x60fb]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 20: [io 0x6020-0x603f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: reg 24: [mem 0xd6804000-0xd68047ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.3: reg 10: [mem 0xd6805000-0xd68050ff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1f.3: reg 20: [io 0x6000-0x601f]
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: [11ab:4354] type 00 class 0x020000
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: reg 10: [mem 0xd5700000-0xd5703fff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: reg 18: [io 0x4000-0x40ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: supports D1 D2
    Mar 22 18:32:32 gauranga kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [io 0x4000-0x5fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd5700000-0xd67fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:03:00.0: [8086:4232] type 00 class 0x028000
    Mar 22 18:32:32 gauranga kernel: pci 0000:03:00.0: reg 10: [mem 0xd4600000-0xd4601fff 64bit]
    Mar 22 18:32:32 gauranga kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd4600000-0xd56fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: PCI bridge to [bus 04-05]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [io 0x2000-0x2fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd3600000-0xd45fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.0: [1180:0832] type 00 class 0x0c0010
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.0: reg 10: [mem 0xd3500000-0xd35007ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.0: PME# supported from D0 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: [1180:0822] type 00 class 0x080500
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: reg 10: [mem 0xd3500900-0xd35009ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: supports D1 D2
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: [1180:0592] type 00 class 0x088000
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: reg 10: [mem 0xd3500800-0xd35008ff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: supports D1 D2
    Mar 22 18:32:32 gauranga kernel: pci 0000:06:02.2: PME# supported from D0 D1 D2 D3hot D3cold
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: PCI bridge to [bus 06-06] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0xd3500000-0xd35fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: on NUMA node 0
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT]
    Mar 22 18:32:32 gauranga kernel: pci0000:00: Requesting ACPI _OSC control (0x1d)
    Mar 22 18:32:32 gauranga kernel: pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    Mar 22 18:32:32 gauranga kernel: ACPI _OSC control for PCIe not granted, disabling ASPM
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12)
    Mar 22 18:32:32 gauranga kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Mar 22 18:32:32 gauranga kernel: vgaarb: loaded
    Mar 22 18:32:32 gauranga kernel: vgaarb: bridge control possible 0000:00:02.0
    Mar 22 18:32:32 gauranga kernel: PCI: Using ACPI for IRQ routing
    Mar 22 18:32:32 gauranga kernel: PCI: pci_cache_line_size set to 64 bytes
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb64e1000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7a6b000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7b85000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7be4000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: e820: reserve RAM buffer [mem 0xb7c00000-0xb7ffffff]
    Mar 22 18:32:32 gauranga kernel: NetLabel: Initializing
    Mar 22 18:32:32 gauranga kernel: NetLabel: domain hash size = 128
    Mar 22 18:32:32 gauranga kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Mar 22 18:32:32 gauranga kernel: NetLabel: unlabeled traffic allowed by default
    Mar 22 18:32:32 gauranga kernel: HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Mar 22 18:32:32 gauranga kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Mar 22 18:32:32 gauranga kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Mar 22 18:32:32 gauranga kernel: Switching to clocksource hpet
    Mar 22 18:32:32 gauranga kernel: pnp: PnP ACPI init
    Mar 22 18:32:32 gauranga kernel: ACPI: bus type pnp registered
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [bus 00-ff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0xc0000000-0xfebfffff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    Mar 22 18:32:32 gauranga kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x002e-0x002f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x004e-0x004f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x164e-0x164f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0061]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0070]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0080]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0092]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x00b2-0x00b3]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0063]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0065]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0067]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0200-0x020f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0600-0x060f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0610]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0800-0x080f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0810-0x0817]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0820-0x0823]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0400-0x047f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [io 0x0500-0x053f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xf8000000-0xfbffffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed10000-0xfed13fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfec00000-0xfec00fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed20000-0xfed3ffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed40000-0xfed44fff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfed45000-0xfed8ffff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:01: [mem 0xfee00000-0xfee00fff]
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x164e-0x164f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0200-0x020f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0600-0x060f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0610] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0800-0x080f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0810-0x0817] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0820-0x0823] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0400-0x047f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [io 0x0500-0x053f] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Mar 22 18:32:32 gauranga kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x0000-0x001f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x0081-0x0091]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x0093-0x009f]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [io 0x00c0-0x00df]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: [dma 4]
    Mar 22 18:32:32 gauranga kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:03: [io 0x0070-0x0077]
    Mar 22 18:32:32 gauranga kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: [irq 0 disabled]
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: [irq 8]
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: [mem 0xfed00000-0xfed003ff]
    Mar 22 18:32:32 gauranga kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:05: [io 0x00f0]
    Mar 22 18:32:32 gauranga kernel: pnp 00:05: [irq 13]
    Mar 22 18:32:32 gauranga kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: [io 0x0060]
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: [io 0x0064]
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: [irq 1]
    Mar 22 18:32:32 gauranga kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    Mar 22 18:32:32 gauranga kernel: pnp 00:07: [irq 12]
    Mar 22 18:32:32 gauranga kernel: pnp 00:07: Plug and Play ACPI device, IDs SNY900f PNP0f13 (active)
    Mar 22 18:32:32 gauranga kernel: pnp: PnP ACPI: found 8 devices
    Mar 22 18:32:32 gauranga kernel: ACPI: ACPI bus type pnp unregistered
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [io 0x4000-0x5fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd5700000-0xd67fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd4600000-0xd56fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.2: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: PCI bridge to [bus 04-05]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [io 0x2000-0x2fff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd3600000-0xd45fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: PCI bridge to [bus 06-06]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: bridge window [mem 0xd3500000-0xd35fffff]
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1c.4: enabling device (0000 -> 0003)
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:1e.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:02: resource 0 [io 0x4000-0x5fff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:02: resource 1 [mem 0xd5700000-0xd67fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:03: resource 1 [mem 0xd4600000-0xd56fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:04: resource 0 [io 0x2000-0x2fff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:04: resource 1 [mem 0xd3600000-0xd45fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:04: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 1 [mem 0xd3500000-0xd35fffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 5 [io 0x0d00-0xffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
    Mar 22 18:32:32 gauranga kernel: pci_bus 0000:06: resource 7 [mem 0xc0000000-0xfebfffff]
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 2
    Mar 22 18:32:32 gauranga kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Mar 22 18:32:32 gauranga kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Mar 22 18:32:32 gauranga kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Mar 22 18:32:32 gauranga kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Mar 22 18:32:32 gauranga kernel: TCP: reno registered
    Mar 22 18:32:32 gauranga kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Mar 22 18:32:32 gauranga kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 1
    Mar 22 18:32:32 gauranga kernel: pci 0000:00:02.0: Boot video device
    Mar 22 18:32:32 gauranga kernel: PCI: CLS 64 bytes, default 64
    Mar 22 18:32:32 gauranga kernel: Unpacking initramfs...
    Mar 22 18:32:32 gauranga kernel: Freeing initrd memory: 3348k freed
    Mar 22 18:32:32 gauranga kernel: Simple Boot Flag value 0x5 read from CMOS RAM was invalid
    Mar 22 18:32:32 gauranga kernel: Simple Boot Flag at 0x44 set to 0x1
    Mar 22 18:32:32 gauranga kernel: apm: BIOS not found.
    Mar 22 18:32:32 gauranga kernel: audit: initializing netlink socket (disabled)
    Mar 22 18:32:32 gauranga kernel: type=2000 audit(1363957344.346:1): initialized
    Mar 22 18:32:32 gauranga kernel: highmem bounce pool size: 64 pages
    Mar 22 18:32:32 gauranga kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Mar 22 18:32:32 gauranga kernel: VFS: Disk quotas dquot_6.5.2
    Mar 22 18:32:32 gauranga kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Mar 22 18:32:32 gauranga kernel: msgmni has been set to 1702
    Mar 22 18:32:32 gauranga kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Mar 22 18:32:32 gauranga kernel: io scheduler noop registered
    Mar 22 18:32:32 gauranga kernel: io scheduler deadline registered
    Mar 22 18:32:32 gauranga kernel: io scheduler cfq registered (default)
    Mar 22 18:32:32 gauranga kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: pcieport 0000:00:1c.2: irq 41 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: vesafb: mode is 1280x800x32, linelength=5120, pages=0
    Mar 22 18:32:32 gauranga kernel: vesafb: scrolling: redraw
    Mar 22 18:32:32 gauranga kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Mar 22 18:32:32 gauranga kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 4032k, total 4032k
    Mar 22 18:32:32 gauranga kernel: Console: switching to colour frame buffer device 160x50
    Mar 22 18:32:32 gauranga kernel: fb0: VESA VGA frame buffer device
    Mar 22 18:32:32 gauranga kernel: intel_idle: does not run on family 6 model 23
    Mar 22 18:32:32 gauranga kernel: GHES: HEST is not enabled!
    Mar 22 18:32:32 gauranga kernel: isapnp: Scanning for PnP cards...
    Mar 22 18:32:32 gauranga kernel: isapnp: No Plug & Play device found
    Mar 22 18:32:32 gauranga kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Mar 22 18:32:32 gauranga kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
    Mar 22 18:32:32 gauranga kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Mar 22 18:32:32 gauranga kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Mar 22 18:32:32 gauranga kernel: mousedev: PS/2 mouse device common for all mice
    Mar 22 18:32:32 gauranga kernel: rtc_cmos 00:03: RTC can wake from S4
    Mar 22 18:32:32 gauranga kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Mar 22 18:32:32 gauranga kernel: rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Mar 22 18:32:32 gauranga kernel: cpuidle: using governor ladder
    Mar 22 18:32:32 gauranga kernel: cpuidle: using governor menu
    Mar 22 18:32:32 gauranga kernel: drop_monitor: Initializing network drop monitor service
    Mar 22 18:32:32 gauranga kernel: TCP: cubic registered
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 10
    Mar 22 18:32:32 gauranga kernel: NET: Registered protocol family 17
    Mar 22 18:32:32 gauranga kernel: Key type dns_resolver registered
    Mar 22 18:32:32 gauranga kernel: Using IPI No-Shortcut mode
    Mar 22 18:32:32 gauranga kernel: PM: Checking hibernation image partition /dev/sda6
    Mar 22 18:32:32 gauranga kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Mar 22 18:32:32 gauranga kernel: PM: Hibernation image not present or could not be loaded.
    Mar 22 18:32:32 gauranga kernel: registered taskstats version 1
    Mar 22 18:32:32 gauranga kernel: rtc_cmos 00:03: setting system clock to 2013-03-22 13:02:25 UTC (1363957345)
    Mar 22 18:32:32 gauranga kernel: Freeing unused kernel memory: 532k freed
    Mar 22 18:32:32 gauranga kernel: Write protecting the kernel text: 3900k
    Mar 22 18:32:32 gauranga kernel: Write protecting the kernel read-only data: 1136k
    Mar 22 18:32:32 gauranga systemd-udevd[39]: starting version 197
    Mar 22 18:32:32 gauranga kernel: Linux agpgart interface v0.103
    Mar 22 18:32:32 gauranga kernel: [drm] Initialized drm 1.1.0 20060810
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: detected 131072K stolen memory
    Mar 22 18:32:32 gauranga kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    Mar 22 18:32:32 gauranga kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    Mar 22 18:32:32 gauranga kernel: ACPI: Power Button [PWRB]
    Mar 22 18:32:32 gauranga kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    Mar 22 18:32:32 gauranga kernel: ACPI: Lid Switch [LID0]
    Mar 22 18:32:32 gauranga kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Mar 22 18:32:32 gauranga kernel: ACPI: Power Button [PWRF]
    Mar 22 18:32:32 gauranga kernel: checking generic (c0000000 3f0000) vs hw (c0000000 10000000)
    Mar 22 18:32:32 gauranga kernel: fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    Mar 22 18:32:32 gauranga kernel: Console: switching to colour dummy device 80x25
    Mar 22 18:32:32 gauranga kernel: i915 0000:00:02.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: i915 0000:00:02.0: irq 43 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Mar 22 18:32:32 gauranga kernel: [drm] Driver supports precise vblank timestamp query.
    Mar 22 18:32:32 gauranga kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Mar 22 18:32:32 gauranga kernel: fbcon: inteldrmfb (fb0) is primary device
    Mar 22 18:32:32 gauranga kernel: Refined TSC clocksource calibration: 2393.999 MHz.
    Mar 22 18:32:32 gauranga kernel: Switching to clocksource tsc
    Mar 22 18:32:32 gauranga kernel: Console: switching to colour frame buffer device 160x50
    Mar 22 18:32:32 gauranga kernel: fb0: inteldrmfb frame buffer device
    Mar 22 18:32:32 gauranga kernel: drm: registered panic notifier
    Mar 22 18:32:32 gauranga kernel: acpi device:02: registered as cooling_device0
    Mar 22 18:32:32 gauranga kernel: ACPI: Video Device [OVGA] (multi-head: yes rom: no post: no)
    Mar 22 18:32:32 gauranga kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    Mar 22 18:32:32 gauranga kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Mar 22 18:32:32 gauranga kernel: ACPI: bus type usb registered
    Mar 22 18:32:32 gauranga kernel: usbcore: registered new interface driver usbfs
    Mar 22 18:32:32 gauranga kernel: usbcore: registered new interface driver hub
    Mar 22 18:32:32 gauranga kernel: usbcore: registered new device driver usb
    Mar 22 18:32:32 gauranga kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: debug port 1
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: irq 19, io mem 0xd6804c00
    Mar 22 18:32:32 gauranga kernel: SCSI subsystem initialized
    Mar 22 18:32:32 gauranga kernel: libata version 3.00 loaded.
    Mar 22 18:32:32 gauranga kernel: firewire_ohci 0000:06:02.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Mar 22 18:32:32 gauranga kernel: sdhci: Secure Digital Host Controller Interface driver
    Mar 22 18:32:32 gauranga kernel: sdhci: Copyright(c) Pierre Ossman
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Mar 22 18:32:32 gauranga kernel: hub 1-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 1-0:1.0: 4 ports detected
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xd6804800
    Mar 22 18:32:32 gauranga kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Mar 22 18:32:32 gauranga kernel: hub 2-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 2-0:1.0: 6 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x000060c0
    Mar 22 18:32:32 gauranga kernel: hub 3-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 3-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x000060a0
    Mar 22 18:32:32 gauranga kernel: hub 4-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 4-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00006080
    Mar 22 18:32:32 gauranga kernel: hub 5-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 5-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00006060
    Mar 22 18:32:32 gauranga kernel: hub 6-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 6-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Mar 22 18:32:32 gauranga kernel: uhci_hcd 0000:00:1d.2: irq 16, io base 0x00006040
    Mar 22 18:32:32 gauranga kernel: hub 7-0:1.0: USB hub found
    Mar 22 18:32:32 gauranga kernel: hub 7-0:1.0: 2 ports detected
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: version 3.0
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    Mar 22 18:32:32 gauranga kernel: ahci: SSS flag set, parallel bus scan disabled
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems
    Mar 22 18:32:32 gauranga kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: scsi0 : ahci
    Mar 22 18:32:32 gauranga kernel: scsi1 : ahci
    Mar 22 18:32:32 gauranga kernel: scsi2 : ahci
    Mar 22 18:32:32 gauranga kernel: scsi3 : ahci
    Mar 22 18:32:32 gauranga kernel: ata1: SATA max UDMA/133 abar m2048@0xd6804000 port 0xd6804100 irq 44
    Mar 22 18:32:32 gauranga kernel: ata2: SATA max UDMA/133 abar m2048@0xd6804000 port 0xd6804180 irq 44
    Mar 22 18:32:32 gauranga kernel: ata3: DUMMY
    Mar 22 18:32:32 gauranga kernel: ata4: DUMMY
    Mar 22 18:32:32 gauranga kernel: firewire_ohci 0000:06:02.0: added OHCI v1.0 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: SDHCI controller found [1180:0822] (rev 22)
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: setting latency timer to 64
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: Registered led device: mmc0::
    Mar 22 18:32:32 gauranga kernel: mmc0: SDHCI controller on PCI [0000:06:02.1] using DMA
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: sdhci-pci 0000:06:02.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 22 18:32:32 gauranga kernel: usb 1-2: new high-speed USB device number 2 using ehci_hcd
    Mar 22 18:32:32 gauranga kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 22 18:32:32 gauranga kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Mar 22 18:32:32 gauranga kernel: ata1.00: ATA-8: TOSHIBA MK3252GSX, LV010A, max UDMA/100
    Mar 22 18:32:32 gauranga kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Mar 22 18:32:32 gauranga kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Mar 22 18:32:32 gauranga kernel: ata1.00: configured for UDMA/100
    Mar 22 18:32:32 gauranga kernel: scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK3252GS LV01 PQ: 0 ANSI: 5
    Mar 22 18:32:32 gauranga kernel: firewire_core 0000:06:02.0: created device fw0: GUID 0800460304dbc9e2, S400
    Mar 22 18:32:32 gauranga kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 22 18:32:32 gauranga kernel: ata2.00: ATAPI: MATSHITADVD-RAM UJ880AS, 1.20, max UDMA/33
    Mar 22 18:32:32 gauranga kernel: ata2.00: configured for UDMA/33
    Mar 22 18:32:32 gauranga kernel: scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ880AS 1.20 PQ: 0 ANSI: 5
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Write Protect is off
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Mar 22 18:32:32 gauranga kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Mar 22 18:32:32 gauranga kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Mar 22 18:32:32 gauranga kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Mar 22 18:32:32 gauranga kernel: sda: sda1 sda2 sda3 < sda5 sda6 >
    Mar 22 18:32:32 gauranga kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Mar 22 18:32:32 gauranga kernel: usb 7-1: new full-speed USB device number 2 using uhci_hcd
    Mar 22 18:32:32 gauranga kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Mar 22 18:32:32 gauranga systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Mar 22 18:32:32 gauranga systemd[1]: Inserted module 'autofs4'
    Mar 22 18:32:32 gauranga systemd[1]: Set hostname to <gauranga>.
    Mar 22 18:32:32 gauranga systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No su
    Mar 22 18:32:32 gauranga systemd[1]: Starting Collect Read-Ahead Data...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Replay Read-Ahead Data...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Remote File Systems.
    Mar 22 18:32:32 gauranga systemd[1]: Reached target Remote File Systems.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Device-mapper event daemon FIFOs.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Delayed Shutdown Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on Delayed Shutdown Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Mar 22 18:32:32 gauranga systemd[1]: Starting LVM2 metadata daemon socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on LVM2 metadata daemon socket.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Mar 22 18:32:32 gauranga systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Encrypted Volumes.
    Mar 22 18:32:32 gauranga systemd[1]: Reached target Encrypted Volumes.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Kernel Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on udev Kernel Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Control Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on udev Control Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Expecting device dev-sda6.device...
    Mar 22 18:32:32 gauranga systemd[1]: Expecting device dev-sda2.device...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Journal Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Listening on Journal Socket.
    Mar 22 18:32:32 gauranga systemd[1]: Mounting Debug File System...
    Mar 22 18:32:32 gauranga systemd-readahead[108]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Kernel Device Manager...
    Mar 22 18:32:32 gauranga systemd[1]: Mounting POSIX Message Queue File System...
    Mar 22 18:32:32 gauranga systemd[1]: Starting udev Coldplug all Devices...
    Mar 22 18:32:32 gauranga systemd[1]: Mounting Huge Pages File System...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Journal Service...
    Mar 22 18:32:32 gauranga systemd[1]: Started Journal Service.
    Mar 22 18:32:32 gauranga kernel: vboxdrv: Found 2 processor cores.
    Mar 22 18:32:32 gauranga kernel: vboxdrv: fAsync=0 offMin=0x225 offMax=0x13f8
    Mar 22 18:32:32 gauranga kernel: vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    Mar 22 18:32:32 gauranga kernel: vboxdrv: Successfully loaded version 4.2.0 (interface 0x001a0004).
    Mar 22 18:32:32 gauranga systemd-udevd[110]: starting version 197
    Mar 22 18:32:32 gauranga systemd-journal[114]: Journal started
    Mar 22 18:32:32 gauranga systemd[1]: Started Collect Read-Ahead Data.
    Mar 22 18:32:32 gauranga systemd[1]: Started Replay Read-Ahead Data.
    Mar 22 18:32:32 gauranga systemd[1]: Started File System Check on Root Device.
    Mar 22 18:32:32 gauranga systemd[1]: Starting Remount Root and Kernel File Systems...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Setup Virtual Console...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Set Up Additional Binary Formats...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Load Kernel Modules...
    Mar 22 18:32:32 gauranga systemd[1]: Starting Apply Kernel Variables...
    Mar 22 18:32:32 gauranga systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Mar 22 18:32:32 gauranga systemd-modules-load[118]: Inserted module 'vboxdrv'
    Mar 22 18:32:32 gauranga systemd[1]: Started Load Kernel Modules.
    Mar 22 18:32:33 gauranga kernel: ACPI: AC Adapter [AC] (on-line)
    Mar 22 18:32:33 gauranga kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Mar 22 18:32:33 gauranga kernel: ACPI: Thermal Zone [THRM] (51 C)
    Mar 22 18:32:34 gauranga kernel: ACPI: Battery Slot [BAT1] (battery present)
    Mar 22 18:32:34 gauranga kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
    Mar 22 18:32:34 gauranga kernel: ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \PMBA 1 (20120320/utaddress-251)
    Mar 22 18:32:34 gauranga kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mar 22 18:32:34 gauranga kernel: ACPI Warning: 0x00000500-0x0000053f SystemIO conflicts with Region \GPIO 1 (20120320/utaddress-251)
    Mar 22 18:32:34 gauranga kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mar 22 18:32:34 gauranga kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Mar 22 18:32:34 gauranga kernel: ACPI: Requesting acpi_cpufreq
    Mar 22 18:32:34 gauranga kernel: Monitor-Mwait will be used to enter C-1 state
    Mar 22 18:32:34 gauranga kernel: cfg80211: Calling CRDA to update world regulatory domain
    Mar 22 18:32:34 gauranga kernel: Monitor-Mwait will be used to enter C-2 state
    Mar 22 18:32:34 gauranga kernel: Monitor-Mwait will be used to enter C-3 state
    Mar 22 18:32:34 gauranga kernel: Marking TSC unstable due to TSC halts in idle
    Mar 22 18:32:34 gauranga kernel: ACPI: acpi_idle registered with cpuidle
    Mar 22 18:32:34 gauranga kernel: Switching to clocksource hpet
    Mar 22 18:32:34 gauranga kernel: sky2: driver version 1.30
    Mar 22 18:32:34 gauranga kernel: sky2 0000:02:00.0: Yukon-2 FE+ chip revision 0
    Mar 22 18:32:34 gauranga kernel: sky2 0000:02:00.0: irq 45 for MSI/MSI-X
    Mar 22 18:32:34 gauranga kernel: sky2 0000:02:00.0: eth0: addr 00:1d:ba:07:87:98
    Mar 22 18:32:34 gauranga kernel: iTCO_vendor_support: vendor-support=0
    Mar 22 18:32:34 gauranga kernel: sony_laptop: Sony Notebook Control Driver v0.6
    Mar 22 18:32:34 gauranga kernel: input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/SNY5001:00/input/input6
    Mar 22 18:32:34 gauranga kernel: input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/SNY5001:00/input/input7
    Mar 22 18:32:34 gauranga kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    Mar 22 18:32:34 gauranga kernel: iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    Mar 22 18:32:34 gauranga kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Mar 22 18:32:34 gauranga kernel: microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    Mar 22 18:32:34 gauranga kernel: sony_laptop: brightness ignored, must be controlled by ACPI video driver
    Mar 22 18:32:34 gauranga kernel: microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    Mar 22 18:32:34 gauranga kernel: microcode: Microcode Update Driver: v2.00 <tigran@aiva

    hi
    enable Readahead from systemd
    https://wiki.archlinux.org/index.php/Systemd#Readahead
    # systemctl enable systemd-readahead-collect systemd-readahead-replay

  • How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?

    How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?
    All I need is ONE INBOX (like Windows Mail used to do) ...
    I can see in the 'Account' column of each message which email account it's using.
    Then, I either junk or read the message, followed by delete or file to one of my created folders.
    As it is, half my page is depth is taken up by 12 lines of Account names !!!

    That still leaves SIX lines of Account names down the side. All I want is ONE INBOX ... (I can see which account each message belongs to in the 'Account' column...)

  • How to use Sunray  without VDI or VMware View Manager

    There is no VDI or VMware View Manager in my test environment. Only srss 4.2 and srwc 2.2 has been installed.
    Now i have 5 sunray client and 5 Windows XP VM. How can I let every user use their Windows XP VM in this environment and can enable USB redirection?
    In page http://wikis.sun.com/display/SRWC2dot2/Managing+USB+Device+Redirection+%28All+Topics%29
    Supported Configurations
    Configuration
    SRS 5 (SRSS 4.2, SRWC 2.2) and Sun Ray Connector Kiosk Session
    Description
    Supports connection to Windows desktop using the Kiosk session.
    My question is How to let mutipl-user use it in this config
    The following is my settings and all users now can use their own Windows XP but USB redirection cannot work
    Select Common Desktop Environment (Obsolete) in Kiosk mode add an application:
    cam_script.windows_connector,
    #!/bin/ksh
    # Script to map smartcard token to individual VM using either
    # the "User Name" or "Other Info" field of the output from
    # utuser -p <token>
    # Look at output from utuser -p ${SUN_SUNRAY_TOKEN} and grab hostname
    # % utuser -p user.1140788210-7053
    # Current Properties:
    # User Name = tester5
    # Other Info = host
    # Server Name = localhost
    # Server Port = 7007
    # Logical Token = user.1140788210-7053
    # User Created = 02/24/2006 13:36:50
    # Token Enabled?
    # Payflex.500af8ad00130100 Yes
    # Currently Logged In:
    # Current Desktop = 0003bad7566e
    # Desktop Location =
    # Logged In Since = 02/24/2006 13:36:58
    # Use "User Name" field as hostname of VM to connect to
    #VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "User Name" | awk '{ print $4 }'`
    # Use "Other Info" field as hostname of VM to connect to
    #VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
    WinHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
    # Could probably do a ping test here and pop up dialogue
    # about getting support to check the availability of the
    # machine (might event be able to use VC API to power up VM?)
    # if it doesn't respond to ping. Could use something like
    # dterror.ds, could also pop up different dialogue
    # if VMHOST is not set
    COLOUR_DEPTH=16
    # If using 24bit need registry change under Windows XP
    #COLOUR_DEPTH=24
    # Fix F11 and F12
    #/usr/openwin/bin/xmodmap -e 'keycode 75 = F11'
    #/usr/openwin/bin/xmodmap -e 'keycode 76 = F12'
    # Fix alt & print screen
    #/usr/openwin/bin/xmodmap -e 'keycode 77 = 0xff62'
    # Turn on numlock
    /usr/openwin/bin/xset led 1
    if [ "${WinHOST}" = "" ]; then
         #dterror.ds "Your Windows Machine can not be determined.\n\nPlease contact support and ask for smartcard \n\n${SUN_SUNRAY_TOKEN}\n\nto be associated to a Windows Machine" "Smartcard not configured" "ERROR"
         WinHOST="Windows_default"
    fi
    # Run Windows Connector in full screen mode at appropriate colour depth with sound redirection
    # Disable the windows pulldown header in full-screen mode
    # RDP Window Attributes options to disable are:
    # -D wallpaper
    # -D fullwindowdrag
    # -D menuanimations
    # -D theming
    # -D cursorshadow
    # -D cursorsettings
    /opt/SUNWuttsc/bin/uttsc -mb -A ${COLOUR_DEPTH} -r sound:high -u "" ${WinHOST}
    #if [ "$?" = "0" ]; then
    #     dterror.ds "Logging Out..." "Log Out" "OK"
    #else
    #     dterror.ds "Your Windows Machine ${VMHOST} is not visible on the network.\n\nIf you have just restarted it please wait a minute and try again\nIf you still have problems get help" "Windows VM is not available" "OK"     
    #fi
    # End of CAM script
    Then add IP address in other information of Token.

    Meta Kiosk would certainly do what you need and the USB pass through works.
    http://blogs.sun.com/danielc/entry/meta_kiosk_how_to_run
    I think the problem you are running into is that you are using uttsc inside a Solaris environment as an app, looks like CDE, which isn't being supported to my knowledge to avoid conflicts between the two desktops. It is designed to work out of the box with SRWC kiosk mode.
    The undocumented way to turn it on is to turn usb on by adding -r USB:on as an argument.

  • SMS Site Component Manager failed to install this component on this site system.

    Hi,
    I'm setting up the SCCM in native mode. All components are in a OK state but the component SMS_MP_CONTROL_MANAGER is in critical. When I look at the alerts there is the following description:
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    SMS Site Component Manager faild to install component SMS_MP_CONTROL_MANAGER on server SCCMTEST.
    The WebDAV server extension is either not installed or not configured properly.
    Solution: Make sure WebDAV is installed and enabled. Make sure there is an authoring rule that allow "All users" read access to "All content". Make sure the WebDAV settings "Allow anonymous property queries" and "Allow property queries with infinite depth" are set to "true" and "Allow Custom Properties" is set to false.
    <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    All requirements are setup according to the links http://technet.microsoft.com/en-us/library/cc872789.aspx and http://technet.microsoft.com/en-us/library/cc431377.aspx. The WebDAV is enabled, the settings "Allow anonymous property queries" and "Allow property queries with infinite depth" are set to "true" and "Allow Custom Properties" is set to false. I got some messages from the MPSetup.log:
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    <03-24-2009 16:14:41>  [Allow property queries with infinite depth] should be true (false)
    <03-24-2009 16:14:41>  [Allow Custom Properties] should be false (true)
    <03-24-2009 16:14:41>  [Allow anonymous property queries] should be true (false)
    <03-24-2009 16:14:41>  Allow [All users read access to All content] authoring rule should exist (exist)
    <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    What should I do? Is there any specific setting in the IIS to be setup? Which log file contain more detailed information?
    Thanks in Advance,
    Giancarlo

     Hi Torsten,
    Yes I did. Below the entries found in mpsetup.log:
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    <03-26-2009 09:09:26> ====================================================================
    <03-26-2009 09:09:26> SMSMP Setup Started....
    <03-26-2009 09:09:26> Parameters: E:\PROGRA~1\MICROS~1\bin\i386\ROLESE~1.EXE /install /siteserver:SCCMTEST SMSMP
    <03-26-2009 09:09:26> Installing Pre Reqs for SMSMP
    <03-26-2009 09:09:26>         ======== Installing Pre Reqs for Role SMSMP ========
    <03-26-2009 09:09:26> Found 1 Pre Reqs for Role SMSMP
    <03-26-2009 09:09:26> Pre Req MSXML60 found.
    <03-26-2009 09:09:26> No versions of MSXML60 are installed.  Would install new MSXML60.
    <03-26-2009 09:09:26> Enabling MSI logging.  msxml6.msi will log to E:\Program Files\Microsoft Configuration Manager\logs\msxml6MSI.log
    <03-26-2009 09:09:26> Installing E:\Program Files\Microsoft Configuration Manager\bin\i386\00000409\msxml6.msi
    <03-26-2009 09:09:27> msxml6.msi exited with return code: 0
    <03-26-2009 09:09:27> msxml6.msi Installation was successful.
    <03-26-2009 09:09:27>         ======== Completed Installion of Pre Reqs for Role SMSMP ========
    <03-26-2009 09:09:27> Installing the SMSMP
    <03-26-2009 09:09:27> Passed OS version check.
    <03-26-2009 09:09:27> IIS Service is installed.
    <03-26-2009 09:09:27> checking WebDAV configuraitons
    <03-26-2009 09:09:28>  WebDAV settings is not setup appropriately
    <03-26-2009 09:09:28>  [Allow property queries with infinite depth] should be true (false)
    <03-26-2009 09:09:28>  [Allow Custom Properties] should be false (true)
    <03-26-2009 09:09:28>  [Allow anonymous property queries] should be true (false)
    <03-26-2009 09:09:28>  Allow [All users read access to All content] authoring rule should exist (exist)
    <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

Maybe you are looking for

  • Moved Itunes folder and everything is now gone - how can I recover it?

    My C drive was low on disk space - so tonight I sent alot of the files that were on the C drive (only 14 gigs total) to my D drive (140+ gigs w/ tons of room)because I was down to something like 200 MBs. One of those folders happened to be the Itunes

  • WHY? FCP wasn't broken. SO WHY?

    I just wish I could understand the why behind FCP X. FCP is (was) the industry standard and fit broadcasters to filmmakers to production houses. It has (had) over 50% of the market share. Apple was doing something very right and we liked it. Yes, the

  • Oracle linux 6 firewall

    Hello, Does anyone know where Oracle Linux 6 stores the configuration files for the firewall rules? I run the iptables and can view them and can add in new rules using iptables but it would be much easier if i knew where iptables writes to. Thanks

  • Remote Panel of VI template

     My application launches a VI template instance dynamically, and I wish to have Remote Panel access to each of these templates. How shall I create Remote Panel HTML page for each instance on the fly? Or is there any way by which I can access by templ

  • Create JPG files from a pattern

    Hello How to create JPG files from a pattern in Photoshop CC? I created a website where I used the pattern in the background, now I need a little bit of this pattern to be inserted into the stylesheet CSS. In earlier versions of Photoshop as I knew t