Problem with sdk

I have installed the newewst version of java
and I can't compile anything
Ihave this message
Note: Okno.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
how can I fix this ??

I have installed the newewst version of java
and I can't compile anything
Ihave this message
Note: Okno.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.So it did compile.
how can I fix this ??
sigh
Recompile with -Xlint:deprecation for details.Look at what it says, then read the API docs.

Similar Messages

  • No problem with sdk 1.3- problem with 1.4!!!

    I am trying to make an interface using swing objects..
    The buttons are looking like images (2D) when compiling and running the program with sdk 1.4...
    although if I use 1.3 everything is ok??
    even with the new java version I still have the same problem..
    has anyone any idea how to fix this??
    thx in advance!

    /*                      BET                                 */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
      * Summary description for BET
    public class BET extends JFrame
         // Variables declaration
         private JLabel jLabel1;
         private JLabel jLabel2;
         private JLabel jLabel3;
         private JTextField jTextField1;
         private JTextField jTextField2;
         private JTextField jTextField3;
         private JTextField jTextField4;
         private JTextField jTextField6;
         private JButton jButton1;
         private JButton jButton2;
         private JPanel contentPane;
         // End of variables declaration
         public BET()
              super();
              initializeComponent();
              // TODO: Add any constructor code after initializeComponent call
              this.setVisible(true);
          * This method is called from within the constructor to initialize the form.
          * WARNING: Do NOT modify this code. The content of this method is always regenerated
          * by the Windows Form Designer. Otherwise, retrieving design might not work properly.
          * Tip: If you must revise this method, please backup this GUI file for JFrameBuilder
          * to retrieve your design properly in future, before revising this method.
         private void initializeComponent()
              jLabel1 = new JLabel();
              jLabel2 = new JLabel();
              jLabel3 = new JLabel();
              jTextField1 = new JTextField();
              jTextField2 = new JTextField();
              jTextField3 = new JTextField();
              jTextField4 = new JTextField();
              jTextField6 = new JTextField();
              jButton1 = new JButton();
              jButton2 = new JButton();
              contentPane = (JPanel)this.getContentPane();
              // jLabel1
              jLabel1.setForeground(new Color(59, 241, 227));
              jLabel1.setText("<HTML><B><U>QUESTION</B><HTML>");
              // jLabel2
              jLabel2.setForeground(new Color(50, 245, 113));
              jLabel2.setText("<HTML><B><U>CHOICE</B><HTML>");
              // jLabel3
              jLabel3.setForeground(new Color(50, 245, 113));
              jLabel3.setText("<HTML><B><U>POINTS</B><HTML>");
              // jTextField1
              jTextField1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField1_actionPerformed(e);
              // jTextField2
              jTextField2.setText("YES");
              jTextField2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField2_actionPerformed(e);
              // jTextField3
              jTextField3.setText("10");
              jTextField3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField3_actionPerformed(e);
              // jTextField4
              jTextField4.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField4_actionPerformed(e);
              // jTextField6
              jTextField6.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField6_actionPerformed(e);
              // jButton1
              jButton1.setBackground(new Color(117, 158, 145));
              jButton1.setText("OK");
              jButton1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton1_actionPerformed(e);
              // jButton2
              jButton2.setBackground(new Color(117, 158, 145));
              jButton2.setText("CANCEL");
              jButton2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton2_actionPerformed(e);
              // contentPane
              contentPane.setLayout(null);
              contentPane.setBackground(new Color(67, 97, 83));
              addComponent(contentPane, jLabel1, 172,8,60,18);
              addComponent(contentPane, jLabel2, 73,78,60,18);
              addComponent(contentPane, jLabel3, 211,76,60,18);
              addComponent(contentPane, jTextField1, 9,27,403,28);
              addComponent(contentPane, jTextField2, 24,101,134,22);
              addComponent(contentPane, jTextField3, 203,101,51,22);
              addComponent(contentPane, jTextField4, 21,151,137,22);
              addComponent(contentPane, jTextField6, 18,200,140,22);
              addComponent(contentPane, jButton1, 299,188,80,70);
              addComponent(contentPane, jButton2, 299,90,80,70);
              // BET
              this.setTitle("BET");
              this.setLocation(new Point(-2, 1));
              this.setSize(new Dimension(424, 316));
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTextField1_actionPerformed(ActionEvent e)
              System.out.println("\njTextField1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField2_actionPerformed(ActionEvent e)
              System.out.println("\njTextField2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField3_actionPerformed(ActionEvent e)
              System.out.println("\njTextField3_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField4_actionPerformed(ActionEvent e)
              System.out.println("\njTextField4_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField6_actionPerformed(ActionEvent e)
              System.out.println("\njTextField6_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton1_actionPerformed(ActionEvent e)
              System.out.println("\njButton1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton2_actionPerformed(ActionEvent e)
              System.out.println("\njButton2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
    //============================= Testing ================================//
    //=                                                                    =//
    //= The following main method is just for testing this class you built.=//
    //= After testing,you may simply delete it.                            =//
    //======================================================================//
         public static void main(String[] args)
              JFrame.setDefaultLookAndFeelDecorated(true);
              JDialog.setDefaultLookAndFeelDecorated(true);
              try
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              catch (Exception ex)
                   System.out.println("Failed loading L&F: ");
                   System.out.println(ex);
              new BET();
    //= End of Testing =
    This is my code.. the problem is that when i use sdk 1.3 everything is fine... I tried to use 1.4 and now 5 and I have a problem with the appearance of buttons... I have some comments in my code. is just a form with some textfields and labels and the 2 buttons!
    thx in advance

  • Problem with SDK 4.0

    Hello Friends,
    Today i downloaded and installed new sdk 4.0 and i could not see any option to run application with earlier version like simulator 3.0, simulator 3.1, simulator 3.1.2 etc.
    Do you know that how can i get all the option with new sdk 4.0 and if i develop application using new sdk 4.0 then will it be run on earlier version.
    Plz reply.
    Many Thanks.

    The problem is that I cannot see any deployment target other than 3.2 or 4.0...
    Am I looking in the wrong place? I have digged around in the project settings and cannot find anything else than 3.2 or 4.0.
    ??? I will take another look tonight when I get back to my Mac gain.

  • Runtime problems with sdk sample.

    Hi,
    has anyone had any problems when running the sdk sample (instantclient 10.1.0.4)
    compiled with MS Visual C++ Express version? I called make.bat and everything
    compiled and linked without any worries. When I run the program it crashed. While
    debugging I got the following info:
    First-chance exception at 0x7c81eb33 in occi.exe: Microsoft C++ exception: oracle::occi::SQLException at memory location 0x0012fb74..
    Unhandled exception at 0x7c81eb33 in occi.exe: Microsoft C++ exception: oracle::occi::SQLException at memory location 0x0012fb74..
    This error occurs when trying to call ::createEnvironment().

    I gave up with the occidml example and restarted with
    the occiobj example. And guess what happened. It
    worked. I can´t beleive it.
    So I really don´t know what the difference of these
    two example is as the only difference so far (as I
    saw in the constructor of the two classes) is an extra
    call in the occiobj-example. Well the parameters
    are also different.
    Occidml-example constructor:
    occidml (string user, string passwd, string db)
    env = Environment::createEnvironment (Environment::DEFAULT);
    conn = env->createConnection (user, passwd, db);
    Occiobj-example constructor:
    occiobj (string user, string passwd, string db)
    env = Environment::createEnvironment (Environment::OBJECT);
    occiobjm (env);
    con = env->createConnection (user, passwd, db);
    If I have time again I will give the occidml another try. By far
    I get along with the occiobj-example.
    Thanks for all the people who helped me (or intended to).
    Greetings Roman

  • Problem with SDK Initial Setup

    Hi,
    I have been following the SDK setup for Sentinel, when doing the
    Collector Initial build as specified in the online documentation, I get
    a windows that pops up when doing the page break and replay of the Raw
    Data.
    "Function ImportClass must be called with a class; had "[JavaPackage
    esecurity.css.comp.evtsrcmgt.collector.util.AgentI nfo]" instead.
    Has anyone got any ideas on how I can get this fixed or around this.
    Cheers,
    Jonathan.
    jwgoldstein
    jwgoldstein's Profile: http://forums.novell.com/member.php?userid=92699
    View this thread: http://forums.novell.com/showthread.php?t=451025

    Hmmm.....
    I can't say I've ever seen anything like this. It's a little hard to
    tell if there's a real problem here or some sort of corruption, as your
    post has some weird extra spaces in it but I don't know if those are
    really present in the error or whether there was some sort of copy/paste
    issue.
    In any case, when the Collector initializes it imports a bunch of Java
    classes so that they can be used directly from the JS code. This stuff
    starts on line 57 of 'collector.js', at least in the current SDK
    version, and should look like:
    importClass(
    Packages.esecurity.ccs.comp.evtsrcmgt.collector.ut il.AgentInfo );
    importClass(
    Packages.esecurity.ccs.comp.evtsrcmgt.collector.ut il.BaseEngine );
    importClass(
    Packages.esecurity.ccs.comp.evtsrcmgt.collector.ut il.BSFEngine );
    Your post above has an extra space in 'AgentI nfo', which I can't
    explain. If it's present in your collector.js (which is copied from
    sdk/6.1/Collector/common at build time), then it seems like you have
    some corruption in your SDK.
    It might be helpful to have you explain exactly how you got your SDK -
    did you download the ZIP, are you using SVN, that sort of thing - and
    whether you've done anything to the SDK template code itself.
    FYI, we're close to a beta for the 2011.1 version of the SDK which will
    greatly improve the installation process, so if you can wait a few weeks
    that might solve your problem.
    DCorlette
    DCorlette's Profile: http://forums.novell.com/member.php?userid=4437
    View this thread: http://forums.novell.com/showthread.php?t=451025

  • Combox EventListener problem with SDK 3.5

    I am trying to build a custom combobox component and making that editable at the time of open and non-editable after close. Below is my code that is working fine SDK 3.2 but with SDK3.5 it is now. I mean with SDK3.5 when i click open it closes itself automatically..
    public class LookUpComboBox extends ComboBox
            public function LookUpComboBox()
                super();
                addEventListener(Event.OPEN,startLookUp);
                addEventListener(Event.CLOSE,stopLookUp);
            private function startLookUp(e:Event):void
                editable = true;
            private function stopLookUp(e:Event):void
                editable  = false;
    Can someone please help me out on this?

    In your addEventListener(), substitute "DropdownEvent.OPEN" & "DropdownEvent.CLOSE", and see if that helps.

  • [iphone] Problem with sdk 3.0 - tab bar

    Hi,
    I'm getting the following error when running my project:
    'Directly modifying a tab bar managed by a tab bar controller is not allowed.'
    In version 2.2.1 I can run the app, but in 3.0 I can't. Can someone help me?
    thanks,
    pitteri
    Message was edited by: pitteri

    I haven't worked with 3.0 yet, so can't speak from direct experience, but you might be reporting a bug fix. The 2.x doc says:
    Although a tab bar controller uses a tab bar in its implementation, you should never need to, nor should you, access the tab bar directly.
    So I'd consider the possibility that 3.0 has just tightened up an access point that wasn't meant to be there. I'd look for any code that's been talking to the tab bar and see if there's a workaround. If you don't think you have any such code, post any code that might be involved and maybe someone here can help.

  • Event problem with SDK 2005

    Hi,
    I want to catch the et_form_unload event of my form to validate if I want to block the form from closing.
    The problem is : we should use the et_FROM_UNLOAD event but if I set bubbleevent to false the form close anyway. (event if beforeaction = true)
    But if I use et_FORM_CLOSE everything works fine except that the et_FORM_CLOSE event is "deprecated in UI API 2004" and in 2 realeses my addon wil not work.
    Any hints ?

    Hi,
    I have seen the comment about et_FORM_CLOSE in the UI API Help for 2004 version...
    But in 2005 SP01 it is already there and it is not anymore marked as deprecated.
    There is even a comment about it in the list of changes. Pay attention this comment refers to <b>2005 SP01</b> version:
    <i><b>Topic</b>
    Added before event to close event. Ignore the bubble event setting in the after event.
    <b>Description</b>
    In this event SAP Business One will throw also before event and not only after event. Due to the fact the SAP Business One now is sending before event the bubble event setting in the after event will be ignore and the user will need to set the bubble setting like in the other type of event in the before.
    <b>Impact for Add-Ons</b>
    In previous versions only 'after' event was sent and the bubble flag was used. From 2005 version SAP Business One will ignore the bubble flag in after event. SAP Business One will send before event as well as after event and will use the bubble flag only in before event.
    <b>Possible Solution</b>
    1. check all place in the code on which close event were used and verify that behavior is kept
    2. check that this event handled only once (not 2 for the before and after)</i>
    I think it will not be deprecated, but to be sure please create a message for support to have it confirmed.
    Hope it helps
    Trinidad.

  • 4.1.1 SDK Problems with missing xpacket tags in sidecar XMP files

    The current 4.1.1 SDK has problems with sidecar XMP files that don't have the xpacket headers and trailers, i.e:
    <?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?>
    <?xpacket end='w'?>
    is missing. Now, unfortunately Adobe Bridge CS2/CS3 does not export these xpackets in sidecar XMP files.
    The standard, http://www.aiim.org/documents/standards/xmpspecification.pdf, is also very vague about it all:
    ● Write external metadata as though it were embedded and then had the XMP Packets
    extracted and catenated by a postprocessor.
    The grammar is strange(past tense had) and the spec implies that the xpacket should be extracted and again catenated... Someone should review this document and clearly state if xpacket statements should be in sidecar files or not. I suspect myself that they should be there, but the standard is very vague.
    Anyway, there are two places in the SDK code where changes might be needed:
    XMPFiles::Initialize has XMP_Asserts in case the xpacket header/trailer is missing, but the underlying assert is only active in debug builds.
    XMPScanner::PacketMachine::FindNextPacket () also has in its truth table the assumption that the xpackets exist.
    There could be even other places in the code that assumes that the xpacket tags are present in all files, which includes text XMP sidecar files.
    Anyway.
    a) Shouldn't bridge export the xpacket tags? Same with any other application?
    b) If the spec is vague, then the SDK should not assume that the xpacket tags are present.
    Any comments? Has someone already fixed this issue as I suspect a lot of apps using the the XMP SDK would break concerning reading XMP sidecar files? Thx, Kent

    I was able to work around the problem by creating a mapped view of the .xmp file (this creates an array in memory backed by the file on disk, so there's no need to read the file into a separate internal buffer), and constructing the SXMPMeta object directly from the buffer. (The ctor for that class calls ParseFromBuffer, so this is the same thing as was suggested by other messages in this thread.)
    It seems that Adobe needs to do one of these things:
    (1) say that Bridge CS3 has a bug, and agree that Bridge CS3 should include a proper xpacket header when writing xmp sidecar files
    (2) say that the XMP Toolkit has a bug, and that the SDK should be able to parse sidecar files without an xpacket header, and agree to fix the toolkit
    (3) say that Bridge CS3 and the XMP Toolkit behave as expected, but then provide a sequence of steps by which users of the XMP Toolkit are expected to read xmp sidecar files written by Bridge CS3
    Does Bridge CS4 write an xpacket header to the xmp sidecar files?
    Maybe what I could do is create a custom file handler for .xmp sidecar files, so I could use the SXMPFiles for everything, instead of having to special-case .xmp files.
    My needs are pretty modest though, and it might be just as simple to use the MS DOM-based XML parser for load the xmp sidecar file. I bet I could get the data I need (only the "Rating" for now) using a simple XPath expression.
    -Matt

  • Performance problem with CR SDK

    Hi,
    I'am currently on a customer site and I have the following problem :
    The client have a performance problem with a J2EE application wich call a Crystal report with th CR SDK. To reproduce the problem on the local machine (the CR server), I have developped a little jsp page wich used the Crystal SDK to open a Crystal report on the server (this report is based on a XML data source), setting the new data source (with a new xml data flow) and refresh the report in PDF format.
    The problem is that the 2 first sequences take about 5 seconde each (5 sec for the opening report and 5 seconds for the setting data source). Then the total process take about 15 seconds to open and refresh the document that is very long for a little document.
    The document is a 600Ko file, the xml source is a 80Ko file.
    My jsp page is directly deployed on the tomcat of the Crystal Report Server (CRXIR2 without Service Pack).
    The Filestore and the MySQL database are on the CR server.
    The server is a 4 quadripro (16 proc) with 16Go of RAM and is totally dedicated to Crystal Report. For the moment, there is no activity on the server (it is also used for the test).
    The mains jsp orders are the followings :
    IEnterpriseSession es = CrystalEnterprise.getSessionMgr().logon("administrator", "", "EDITBI:6400", "secEnterprise");
        IInfoStore infoStore = (IInfoStore) es.getService("", "InfoStore");
        IInfoObjects infoObjects = infoStore.query("SELECT * FROM CI_INFOOBJECTS WHERE SI_NAME='CPA_EV' AND SI_INSTANCE=0 ");
        IInfoObject report = (IInfoObject) infoObjects.get(0);
    IReportAppFactory reportAppFactory = (IReportAppFactory)es.getService("RASReportFactory");
    ReportClientDocument reportClientDoc = reportAppFactory.openDocument(report.getID(), 0, null);
    IXMLDataSet xmlDataSet = new XMLDataSet();
    xmlDataSet.setXMLData(new ByteArray(ligne_data_xml));
    xmlDataSet.setXMLSchema(new ByteArray(ligne_schema_xml));
    DatabaseController db = reportClientDoc.getDatabaseController();
    db.setDataSource(xmlDataSet, "", "");
    ByteArrayInputStream bt = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
    My question is : does this method is the good one to do this ?
    Thank's in advance for your help
    Best regards
    Emmanuel

    Hi,
    My problem is not resolved and I have'nt news from the support.
    If you have any idea/info, don't forget me
    Thank's in advance
    Emmanuel

  • Problems with the connection of my SDK component

    When we try to connect our Java SDK application it takes in the logon 5secs with a trusted security, Actually when we connect with LDAP in our Infoview it takes 50ms.
    Actually we detect the problem is in the com.crystaldecisions.sdk.occa.security.internal._LogonEx4Proxy.class, method UserLogonEx4 it takes 4.8 segs
    I post the code, i comment the ldap connection (I try to open a web intelligence)
    try
                                  //Open the session
                                  System.out.println(new java.util.Date());
                                  final ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
                                  //enterpriseSession = sessionMgr.logon(userName, userPass, CMS, auth);
                                  //Trusted.
                                  ITrustedPrincipal trustedPrincipal = sessionMgr.createTrustedPrincipal(userName,CMS,"BOproduccion");
                                  enterpriseSession = sessionMgr.logon(trustedPrincipal);
                                  System.out.println(new java.util.Date());
    Edited by: Dennis Chavez on Mar 5, 2010 5:51 PM

    I have the same problem with you.
    You should read Note 1539463 - Creating system from par is not possible in 730.
    I have tried to import nw7.0x par (......gw) to nw7.3, and error when deploy it.
    So you can try to create system in Portal 7.0x, and then import it to NW7.3.
    Why you want to connect to Exchange 2007? If you try to make sso with exchange tranport, I'm not sure it could happen now.
    All the documents talk about Portal 7.0, exchange 2003, windows 2003. That's totally different.
    Create system for Exchange in Portal, you don't enter any technical info there.  So it is useless if  you don't go any further.
    And Note note 922040 is closed by SAP which is about Exchange transport.
    I have sent OSS message to SAP, but no response after servaral weeks.
    You can try to make SSO between portal and owa(outlook web access) with  SSO22KerbMap ISAPI module

  • IPhone SDK question. Problems with Addressbook and Addresses.

    I know the api is closed as of beta but I have serious problems adding street, zip and city terms to the multivalue address property. I am doing an application for release around the new model of iphone and any information about how to use the address property would be great. I can say, phone numbers I can add as many as I like as of now its only addresses I have problems with, and sadly I can't find information anywhere, including the SDK documentation how to write these properties to a record.
    I hope any of you can help me or give me a number I can call for help directly from apple.
    Thank you in advance.
    /Klaus

    I still wonder about this, but I got a new issue and that is adding a "default" photo to the address record I am creating.
    I try load my application icon from the application resources to add it to the addressbook record.
    NSString* imageName = [[[NSBundle mainBundle] pathForResource:@"Icon.png" ofType:nil]];
    NSData *iconData = [[NSData alloc] initWithContentsOfFile:imageName];
    ABPersonSetImageData(person, [[iconData bytes]], nil);
    Ugh the iconData gets allocated and initedWithContentsOfFile imageName. And yes it loads. Offtopic, how to mark segments as code so no fancy functions strip text and whitespace from my code exampes on the forum?
    But get bad access when I try add the image to the record. I know there was some articles on blogs about this last week, but seems like they been pulled off now.

  • IOS 8 + landscape mode + AIR SDK 16 & 17 = problem with lost context

    It's seems that the "landscape" orientation make a 100% reproductible beug on my apps when I return to it after calling the camera or "picture explorer" (with a native extension or with AS3, this is the same problem).
    The problem is huge !! : no more texture present on the app, the photo taked with cam is partially visible, sometime a black square blink, no more interaction seems possible.
    I only reproduce this beug in landscape orientation, with ios8 and Air Sdk 17.0.0.124 or Air Sdk 16 on iphone 6.
    No problem with portrait orientation or Air Sdk = 15 or with a different version of ios.
    I've modified the last "Demo_Mobile" example include in starling, put the app in landscape mode and added a simple call to CameraUI, I still have the same problem.
    Any idea ?
    P.S :
    I'm also interested to know if someone else can or can't reproduce the beug on iphone6 with the starling example in landscape mode or
    can simply call the camera in landscape mode without problem on iphone 6 with the SDK 16 or 17.

    Hi,
    I faced the same problem using iAd iOS Extension (Adobe and Milkman Games ANEs).
    When a user clicks on one of the banner ads, a fullscreen pop-up ad is shown, and after closing this screen, the size of my app (a Starling app) is reduced by one third, I get a blinking rectangle on the top of the screen and a white rectangle on the vacuum remaining third to right.
    AIRSDK 16.x.x
    AIRSDK 17.0.0.123
    iOS 8.1
    Best regards,

  • RSL Problems with DataVisualization Components and Flex 3.4 SDK

    After discovering that the 3.4.1 SDK included with Flash Builder Beta 2 seems to be incomplete (missing the data visualization components and some of the signed swz files).
    I've attempted to install the latest official build SDK into Flash Builder 4 and I'm running into a problem with the RSLs for datavisualization.swz.  I did have to locate the datavisualization components on adobe.com an coppied them into the apporpiate directories.
    Error #2046: The loaded file did not have a valid signature.
    Failed to load RSL http://...com/flex/rsls/datavisualization_3.4.0.9271.swz
    Failing over to RSL http://...com/flex/rsls/datavisualization_3.4.0.9271.swf
    The app run fine but it isn't caching the RSLs.  Is this a known problem with attempting to use an older build of the SDK with Flash Builder or is there something else going on?  I previously was building this project with Flex 3.2 but I figured while I was at it to upgraded to the latest official 3.4 SDK.

    So I've added the suggested lines to the flex-config.xml and it doesn't help.  I had to alter the path to the swf and swz slightly to get it to match the pre-existing entry for the framework.swz so I have the following rsl entries in my config now:
      <runtime-shared-library-path>
          <path-element>libs/framework.swc</path-element>
          <rsl-url>framework_3.4.0.9271.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>framework_3.4.0.9271.swf</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
      <runtime-shared-library-path>
          <path-element>libs/datavisualization.swc</path-element>
          <rsl-url>datavisualization_3.4.0.9271.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>datavisualization_3.4.0.9271.swf</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
    If I have everything set to be merged into code or have the "Use local debug runtime shared libraries when debugging" checked then the message doesn't appear.  But the minute I attempt to load the swz from same directory as the app or crossdomain like previously I'm getting thie same basic message even with manually coping the swz to the output directory or having the checkbox for "Copy library to deployment path" box checked.
    Error #2046: The loaded file did not have a valid signature.
    Failed to load RSL datavisualization_3.4.0.9271.swz
    Failing over to RSL datavisualization_3.4.0.9271.swf
    I've verified that all the copies of the swz are exactly the same and that no corruption is taking place as all the copies of the swz have the same md5 of 8b3138326f85d4b5b1aae9866f3909c0.  I figured that 3.4 has been out long enough it would be a known issue is there was a problem with how the swz is signed and I'm unable to locate any such beug reports.  I can't be the 1st person to try loading 3.4's datavisualization components as an RSLs.
    The corresponding section of of .actionscriptProperties file for the RSL is currently this
    <libraryPathEntry index="4" kind="3" linkType="4" path="${PROJECT_FRAMEWORKS}/libs/datavisualization.swc" useDefaultLinkType="true">
       <crossDomainRsls>
         <crossDomainRslEntry autoExtract="true" policyFileUrl="" rslUrl="datavisualization_3.4.0.9271.swz"/>
         <crossDomainRslEntry autoExtract="true" policyFileUrl="" rslUrl="datavisualization_3.4.0.9271.swf"/>
       </crossDomainRsls>
    </libraryPathEntry>

  • [Solved] Problem with upgrading polkit or filesystem

    Ok so first off they do "upgrade" but the problem has me worried that something is wrong.
    A week or so ago after converting to systemd I tried getting rid of ConsoleKit and installing polkit 0.107 from the [testing] repo but it caused pacman to get stuck at "(1/1) upgrading polkit"  So I tried that a couple of times but I could never get pacman to finish and get past that.  I had to control + c to get out of that then type exit in the console (no text was visible that I typed however but typing exit + enter worked for closing it).  So I then opened a new terminal and downgraded polkit back to 0.105 and waited for polkit to get pushed from testing to see if it would fix my issue.  Fast forward to today and I go to upgrade my system.  Among the 83 updates or so was polkit and filesystem.  What do you know it gets stuck at "(15/83) upgrading polkit".  Fuck so I control + c, open new terminal and then do the upgrade again and it continues to update but this time it gets stuck doing the same thing for filesystem.  I control + c, open new terminal and continue the upgrade until it finishes, which it does this time, and I reboot.
    I tried re-installing polkit again and filesystem again but they continue to get stuck.  I cannot "complete" the upgrade even though they show the appropriate version when I check.
    Terminal
    [507] shauder@arch-desktop [~] $ sudo pacman -S polkit
    warning: polkit-0.107-4 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): polkit-0.107-4
    Total Installed Size: 1.77 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n]
    (1/1) checking package integrity [########################################################] 100%
    (1/1) loading package files [########################################################] 100%
    (1/1) checking for file conflicts [########################################################] 100%
    (1/1) checking available disk space [########################################################] 100%
    (1/1) upgrading polkit
    /var/log/pacman.log
    [2012-07-18 18:27] installed filesystem (2012.6-4)
    [2012-07-18 18:27] installed findutils (4.4.2-4)
    [2012-07-18 18:27] installed gawk (4.0.1-1)
    [2012-07-18 18:27] installed gettext (0.18.1.1-4)
    [2012-07-18 18:27] installed grep (2.13-2)
    [2012-07-18 18:27] installed sed (4.2.1-4)
    [2012-07-18 18:27] installed grub (0.97-21)
    [2012-07-18 18:27] installed gzip (1.5-1)
    [2012-07-18 18:27] installed gdbm (1.10-1)
    [2012-07-18 18:27] installed perl (5.16.0-2)
    [2012-07-18 18:27] installed openssl (1.0.1.c-1)
    [2012-07-18 18:27] installed libsasl (2.1.23-9)
    [2012-07-18 18:27] installed libldap (2.4.31-4)
    [2012-07-18 18:27] installed keyutils (1.5.5-3)
    [2012-07-18 18:27] installed krb5 (1.10.2-2)
    [2012-07-18 18:27] installed heirloom-mailx (12.5-3)
    [2012-07-18 18:27] installed inetutils (1.9.1-2)
    [2012-07-18 18:27] installed iproute2 (3.4.0-2)
    [2012-07-18 18:27] installed sysvinit (2.88-6)
    [2012-07-18 18:27] installed initscripts (2012.06.3-2)
    [2012-07-18 18:27] installed sysfsutils (2.1.0-8)
    [2012-07-18 18:27] >> Traceroute is now provided by core/traceroute
    [2012-07-18 18:27] installed iputils (20101006-4)
    [2012-07-18 18:27] installed jfsutils (1.1.15-3)
    [2012-07-18 18:27] installed less (444-3)
    [2012-07-18 18:27] installed licenses (2.9-1)
    [2012-07-18 18:27] installed linux-firmware (20120625-1)
    [2012-07-18 18:27] installed mkinitcpio-busybox (1.20.1-1)
    [2012-07-18 18:27] installed expat (2.1.0-1)
    [2012-07-18 18:27] installed libarchive (3.0.4-1)
    [2012-07-18 18:27] installed mkinitcpio (0.9.2-2)
    [2012-07-18 18:27] >>> Updating module dependencies. Please wait ...
    [2012-07-18 18:27] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-07-18 18:27] ==> Building image from preset: 'default'
    [2012-07-18 18:27] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-18 18:27] ==> Starting build: 3.4.5-1-ARCH
    [2012-07-18 18:27] -> Running build hook: [base]
    [2012-07-18 18:27] -> Running build hook: [udev]
    [2012-07-18 18:27] -> Running build hook: [autodetect]
    [2012-07-18 18:27] -> Running build hook: [pata]
    [2012-07-18 18:27] -> Running build hook: [scsi]
    [2012-07-18 18:27] -> Running build hook: [sata]
    [2012-07-18 18:27] -> Running build hook: [filesystems]
    [2012-07-18 18:27] -> Running build hook: [usbinput]
    [2012-07-18 18:27] -> Running build hook: [fsck]
    [2012-07-18 18:27] ==> Generating module dependencies
    [2012-07-18 18:27] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-07-18 18:27] bsdcpio: Failed to set default locale
    [2012-07-18 18:27] ==> Image generation successful
    [2012-07-18 18:27] ==> Building image from preset: 'fallback'
    [2012-07-18 18:27] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-18 18:27] ==> Starting build: 3.4.5-1-ARCH
    [2012-07-18 18:27] -> Running build hook: [base]
    [2012-07-18 18:27] -> Running build hook: [udev]
    [2012-07-18 18:27] -> Running build hook: [pata]
    [2012-07-18 18:27] -> Running build hook: [scsi]
    [2012-07-18 18:27] -> Running build hook: [sata]
    [2012-07-18 18:27] -> Running build hook: [filesystems]
    [2012-07-18 18:27] -> Running build hook: [usbinput]
    [2012-07-18 18:27] -> Running build hook: [fsck]
    [2012-07-18 18:27] ==> Generating module dependencies
    [2012-07-18 18:27] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-07-18 18:27] bsdcpio: Failed to set default locale
    [2012-07-18 18:27] ==> Image generation successful
    [2012-07-18 18:27] installed linux (3.4.5-1)
    [2012-07-18 18:27] installed logrotate (3.8.1-2)
    [2012-07-18 18:27] installed lvm2 (2.02.96-3)
    [2012-07-18 18:27] installed texinfo (4.13a-7)
    [2012-07-18 18:27] installed groff (1.21-2)
    [2012-07-18 18:27] installed libpipeline (1.2.1-1)
    [2012-07-18 18:27] it's recommended to create an initial
    [2012-07-18 18:27] database running as root:
    [2012-07-18 18:27] "/usr/bin/mandb --quiet"
    [2012-07-18 18:27] installed man-db (2.6.2-1)
    [2012-07-18 18:27] installed man-pages (3.41-1)
    [2012-07-18 18:27] installed mdadm (3.2.5-2)
    [2012-07-18 18:27] installed nano (2.2.6-2)
    [2012-07-18 18:27] installed ca-certificates (20120623-1)
    [2012-07-18 18:27] installed libssh2 (1.4.2-1)
    [2012-07-18 18:27] installed curl (7.26.0-1)
    [2012-07-18 18:27] installed pth (2.0.7-4)
    [2012-07-18 18:27] installed libksba (1.2.0-2)
    [2012-07-18 18:27] installed libassuan (2.0.3-1)
    [2012-07-18 18:27] installed pinentry (0.8.1-4)
    [2012-07-18 18:27] installed dirmngr (1.1.0-4)
    [2012-07-18 18:27] installed gnupg (2.0.19-2)
    [2012-07-18 18:27] installed gpgme (1.3.1-4)
    [2012-07-18 18:27] installed pacman-mirrorlist (20120626-1)
    [2012-07-18 18:27] installed archlinux-keyring (20120622-1)
    [2012-07-18 18:27] >>> Run `pacman-key --init; pacman-key --populate archlinux`
    [2012-07-18 18:27] >>> to import the data required by pacman for package verification.
    [2012-07-18 18:27] >>> See: https://www.archlinux.org/news/having-pacman-verify-packages
    [2012-07-18 18:27] installed pacman (4.0.3-3)
    [2012-07-18 18:27] installed pciutils (3.1.10-1)
    [2012-07-18 18:27] installed pcmciautils (018-4)
    [2012-07-18 18:27] installed libnl (3.2.11-1)
    [2012-07-18 18:27] installed libusbx (1.0.12-2)
    [2012-07-18 18:27] installed libpcap (1.3.0-1)
    [2012-07-18 18:27] installed ppp (2.4.5-3)
    [2012-07-18 18:27] installed procps-ng (3.3.3-3)
    [2012-07-18 18:27] installed psmisc (22.19-1)
    [2012-07-18 18:27] installed reiserfsprogs (3.6.21-4)
    [2012-07-18 18:27] installed shadow (4.1.5.1-1)
    [2012-07-18 18:27] installed eventlog (0.2.12-3)
    [2012-07-18 18:27] installed syslog-ng (3.3.5-2)
    [2012-07-18 18:27] installed tar (1.26-2)
    [2012-07-18 18:27] installed usbutils (006-1)
    [2012-07-18 18:27] installed vi (1:050325-2)
    [2012-07-18 18:27] installed wget (1.13.4-1)
    [2012-07-18 18:27] installed which (2.20-5)
    [2012-07-18 18:27] installed dbus-core (1.6.2-2)
    [2012-07-18 18:27] installed wpa_supplicant (1.0-1)
    [2012-07-18 18:27] installed xfsprogs (3.1.8-2)
    [2012-07-18 18:27] installed m4 (1.4.16-2)
    [2012-07-18 18:27] installed autoconf (2.69-1)
    [2012-07-18 18:27] installed automake (1.12.2-1)
    [2012-07-18 18:27] installed binutils (2.22-9)
    [2012-07-18 18:27] installed bison (2.5.1-1)
    [2012-07-18 18:27] installed fakeroot (1.18.4-1)
    [2012-07-18 18:27] installed flex (2.5.35-5)
    [2012-07-18 18:27] installed mpfr (3.1.1-1)
    [2012-07-18 18:27] installed libmpc (0.9-2)
    [2012-07-18 18:27] installed isl (0.10-1)
    [2012-07-18 18:27] installed cloog (0.17.0-2)
    [2012-07-18 18:27] installed ppl (1.0-1)
    [2012-07-18 18:27] installed gcc (4.7.1-4)
    [2012-07-18 18:27] installed libltdl (2.4.2-6)
    [2012-07-18 18:27] installed libtool (2.4.2-6)
    [2012-07-18 18:27] installed make (3.82-4)
    [2012-07-18 18:27] installed patch (2.6.1-3)
    [2012-07-18 18:27] installed pkg-config (0.27-1)
    [2012-07-18 18:37] Running 'pacman -Syy'
    [2012-07-18 18:37] synchronizing package lists
    [2012-07-18 18:38] Running 'pacman -Syy'
    [2012-07-18 18:38] synchronizing package lists
    [2012-07-18 18:39] Running 'pacman -S sudo'
    [2012-07-18 18:43] Running 'pacman -S sudo'
    [2012-07-18 18:44] Running 'pacman -S sudo'
    [2012-07-18 18:44] installed sudo (1.8.5.p2-1)
    [2012-07-18 18:45] Running 'pacman -S alsa-utils'
    [2012-07-18 18:46] installed alsa-lib (1.0.25-1)
    [2012-07-18 18:46] installed dialog (1.1_20120706-1)
    [2012-07-18 18:46] installed libogg (1.3.0-1)
    [2012-07-18 18:46] installed flac (1.2.1-3)
    [2012-07-18 18:46] installed libvorbis (1.3.3-1)
    [2012-07-18 18:46] installed libsndfile (1.0.25-2)
    [2012-07-18 18:46] installed libsamplerate (0.1.8-1)
    [2012-07-18 18:46] installed alsa-utils (1.0.25-3)
    [2012-07-18 18:46] Running 'pacman -S alsa-plugins'
    [2012-07-18 18:46] installed alsa-plugins (1.0.25-2)
    [2012-07-18 18:48] Running 'pacman -S xorg-server xorg-xinit xorg-server-utils'
    [2012-07-18 18:48] installed xproto (7.0.23-1)
    [2012-07-18 18:48] installed libxdmcp (1.1.1-1)
    [2012-07-18 18:48] installed freetype2 (2.4.10-1)
    [2012-07-18 18:48] installed libfontenc (1.1.1-1)
    [2012-07-18 18:48] installed fontsproto (2.1.2-1)
    [2012-07-18 18:48] installed libxfont (1.4.5-1)
    [2012-07-18 18:48] installed libpciaccess (0.13.1-1)
    [2012-07-18 18:48] installed libdrm (2.4.37-1)
    [2012-07-18 18:48] installed pixman (0.26.2-1)
    [2012-07-18 18:48] installed libxau (1.0.7-1)
    [2012-07-18 18:48] installed xcb-proto (1.7.1-1)
    [2012-07-18 18:48] installed libxcb (1.8.1-1)
    [2012-07-18 18:48] installed kbproto (1.0.6-1)
    [2012-07-18 18:48] installed libx11 (1.5.0-1)
    [2012-07-18 18:48] installed libxkbfile (1.0.8-1)
    [2012-07-18 18:48] installed xorg-xkbcomp (1.2.4-1)
    [2012-07-18 18:48] installed xkeyboard-config (2.6-1)
    [2012-07-18 18:48] installed xorg-setxkbmap (1.3.0-1)
    [2012-07-18 18:48] installed xorg-fonts-encodings (1.0.4-3)
    [2012-07-18 18:48] installed xorg-fonts-alias (1.0.2-2)
    [2012-07-18 18:48] installed xorg-bdftopcf (1.0.3-2)
    [2012-07-18 18:48] installed xorg-mkfontscale (1.1.0-1)
    [2012-07-18 18:48] installed xorg-mkfontdir (1.0.7-1)
    [2012-07-18 18:48] installed xorg-font-util (1.3.0-1)
    [2012-07-18 18:48] installed xorg-font-utils (7.6-3)
    [2012-07-18 18:48] updating font cache... done.
    [2012-07-18 18:48] installed fontconfig (2.8.0-2)
    [2012-07-18 18:49] Updating font cache... done.
    [2012-07-18 18:49] installed xorg-fonts-misc (1.0.1-2)
    [2012-07-18 18:49] installed xorg-server-common (1.12.3-1)
    [2012-07-18 18:49] installed xf86-input-evdev (2.7.0-2)
    [2012-07-18 18:49] installed xorg-server (1.12.3-1)
    [2012-07-18 18:49] installed xextproto (7.2.1-1)
    [2012-07-18 18:49] installed libxext (1.3.1-1)
    [2012-07-18 18:49] installed libice (1.0.8-1)
    [2012-07-18 18:49] installed libsm (1.2.1-1)
    [2012-07-18 18:49] installed libxt (1.1.3-1)
    [2012-07-18 18:49] installed libxmu (1.1.1-1)
    [2012-07-18 18:49] installed xorg-xauth (1.0.7-1)
    [2012-07-18 18:49] installed xorg-xinit (1.3.2-1)
    [2012-07-18 18:49] installed xorg-iceauth (1.0.5-1)
    [2012-07-18 18:49] installed xorg-sessreg (1.0.7-1)
    [2012-07-18 18:49] installed xorg-xcmsdb (1.0.4-1)
    [2012-07-18 18:49] installed renderproto (0.11.1-2)
    [2012-07-18 18:49] installed libxrender (0.9.7-1)
    [2012-07-18 18:49] installed randrproto (1.3.2-2)
    [2012-07-18 18:49] installed libxrandr (1.3.2-2)
    [2012-07-18 18:49] installed xorg-xbacklight (1.1.2-3)
    [2012-07-18 18:49] installed xf86vidmodeproto (2.3.1-2)
    [2012-07-18 18:49] installed libxxf86vm (1.1.2-1)
    [2012-07-18 18:49] installed xorg-xgamma (1.0.5-1)
    [2012-07-18 18:49] installed xorg-xhost (1.0.5-1)
    [2012-07-18 18:49] installed xorg-xrandr (1.3.5-1)
    [2012-07-18 18:49] installed inputproto (2.2-1)
    [2012-07-18 18:49] installed libxi (1.6.1-1)
    [2012-07-18 18:49] installed xineramaproto (1.2.1-2)
    [2012-07-18 18:49] installed libxinerama (1.1.2-1)
    [2012-07-18 18:49] installed xorg-xinput (1.6.0-1)
    [2012-07-18 18:49] installed xorg-xmodmap (1.0.7-1)
    [2012-07-18 18:49] installed mcpp (2.7.2-4)
    [2012-07-18 18:49] installed xorg-xrdb (1.0.9-2)
    [2012-07-18 18:49] installed xorg-xrefresh (1.0.4-3)
    [2012-07-18 18:49] installed xorg-xset (1.2.2-1)
    [2012-07-18 18:49] installed fixesproto (5.0-2)
    [2012-07-18 18:49] installed libxfixes (5.0-2)
    [2012-07-18 18:49] installed libxcursor (1.1.13-1)
    [2012-07-18 18:49] installed xorg-xsetroot (1.1.0-3)
    [2012-07-18 18:49] installed xorg-server-utils (7.6-3)
    [2012-07-18 18:50] Running 'pacman -S nvidia nvidia-utils'
    [2012-07-18 18:50] Running 'pacman -S nvidia nvidia-utils lib32-nvidia-utils'
    [2012-07-18 18:51] installed videoproto (2.3.1-2)
    [2012-07-18 18:51] installed libxv (1.0.7-1)
    [2012-07-18 18:51] installed libxvmc (1.0.7-1)
    [2012-07-18 18:51] installed nvidia-utils (302.17-1)
    [2012-07-18 18:51] In order to use nvidia module, reboot the system.
    [2012-07-18 18:51] installed nvidia (302.17-3)
    [2012-07-18 18:51] installed lib32-glibc (2.16.0-2)
    [2012-07-18 18:51] installed lib32-libxdmcp (1.1.1-1)
    [2012-07-18 18:51] installed lib32-libxau (1.0.7-1)
    [2012-07-18 18:51] installed lib32-libxcb (1.8.1-2)
    [2012-07-18 18:51] installed lib32-libx11 (1.5.0-1)
    [2012-07-18 18:51] installed lib32-libxext (1.3.1-1)
    [2012-07-18 18:51] installed lib32-libxv (1.0.7-1)
    [2012-07-18 18:51] installed lib32-libxvmc (1.0.7-1)
    [2012-07-18 18:51] installed lib32-zlib (1.2.7-1)
    [2012-07-18 18:51] installed lib32-gcc-libs (4.7.1-4.1)
    [2012-07-18 18:51] installed lib32-nvidia-utils (302.17-1)
    [2012-07-18 18:55] Running 'pacman -S xorg-twm xorg-xclock xterm'
    [2012-07-18 18:55] installed xorg-twm (1.0.7-1)
    [2012-07-18 18:55] installed libxpm (3.5.10-1)
    [2012-07-18 18:55] installed libxaw (1.0.11-1)
    [2012-07-18 18:55] installed libxft (2.3.1-1)
    [2012-07-18 18:55] installed xorg-xclock (1.0.6-1)
    [2012-07-18 18:55] installed xorg-luit (1.1.1-1)
    [2012-07-18 18:55] installed xbitmaps (1.1.1-2)
    [2012-07-18 18:55] installed xterm (281-1)
    [2012-07-18 18:55] Running 'pacman -S dbus'
    [2012-07-18 18:55] installed dbus (1.6.2-1)
    [2012-07-18 18:56] Running 'pacman -S ttf-dejavu'
    [2012-07-18 18:56] installed ttf-dejavu (2.33-3)
    [2012-07-18 18:57] Running 'pacman -S awesome'
    [2012-07-18 18:57] installed libpng (1.5.11-1)
    [2012-07-18 18:57] installed cairo (1.12.2-2)
    [2012-07-18 18:57] installed libjpeg-turbo (1.2.1-1)
    [2012-07-18 18:57] installed libtiff (4.0.2-1)
    [2012-07-18 18:57] installed giflib (4.1.6-5)
    [2012-07-18 18:57] installed libid3tag (0.15.1b-7)
    [2012-07-18 18:57] installed imlib2 (1.4.5-2)
    [2012-07-18 18:57] installed libev (4.11-1)
    [2012-07-18 18:57] installed libxdg-basedir (1.2.0-1)
    [2012-07-18 18:57] installed lua (5.1.5-2)
    [2012-07-18 18:57] installed libdatrie (0.2.5-1)
    [2012-07-18 18:57] installed libthai (0.1.17-1)
    [2012-07-18 18:57] installed pango (1.30.1-1)
    [2012-07-18 18:57] installed xcb-util (0.3.9-1)
    [2012-07-18 18:57] installed startup-notification (0.12-3)
    [2012-07-18 18:57] installed xcb-util-image (0.3.9-1)
    [2012-07-18 18:57] installed xcb-util-keysyms (0.3.9-1)
    [2012-07-18 18:57] installed xcb-util-wm (0.3.9-1)
    [2012-07-18 18:57] installed xorg-xmessage (1.0.3-2)
    [2012-07-18 18:57] installed awesome (3.4.13-1)
    [2012-07-18 18:58] Running 'pacman -S rlwrap feh'
    [2012-07-18 18:58] installed rlwrap (0.37-2)
    [2012-07-18 18:58] installed giblib (1.2.4-5)
    [2012-07-18 18:58] installed libexif (0.6.20-2)
    [2012-07-18 18:58] installed feh (2.5-1)
    [2012-07-18 18:59] Running 'pacman -S packer'
    [2012-07-18 18:59] Running 'pacman -S lightdm'
    [2012-07-18 19:01] Running 'pacman -S fakeroot'
    [2012-07-18 19:01] upgraded fakeroot (1.18.4-1 -> 1.18.4-1)
    [2012-07-18 19:08] Running 'pacman -S git'
    [2012-07-18 19:08] installed perl-error (0.17018-1)
    [2012-07-18 19:08] installed git (1.7.11.2-1)
    [2012-07-18 19:08] Running 'pacman -S jshon'
    [2012-07-18 19:08] installed jansson (2.3-1)
    [2012-07-18 19:08] installed jshon (20111222-1)
    [2012-07-18 19:08] Running 'pacman -U packer-20120718-1-any.pkg.tar.xz'
    [2012-07-18 19:08] installed packer (20120718-1)
    [2012-07-18 19:10] Running 'pacman --noconfirm --asdeps -S -- accountsservice dbus-glib gobject-introspection intltool itstool libxklavier'
    [2012-07-18 19:10] installed polkit (0.105-1)
    [2012-07-18 19:10] installed accountsservice (0.6.22-1)
    [2012-07-18 19:10] installed dbus-glib (0.100-1)
    [2012-07-18 19:10] installed sqlite (3.7.13-1)
    [2012-07-18 19:10] installed python2 (2.7.3-2)
    [2012-07-18 19:10] installed gobject-introspection (1.32.1-2)
    [2012-07-18 19:10] installed perl-xml-parser (2.41-3)
    [2012-07-18 19:10] installed intltool (0.50.2-1)
    [2012-07-18 19:10] installed libxml2 (2.7.8-2)
    [2012-07-18 19:10] installed itstool (1.1.2-1)
    [2012-07-18 19:10] installed iso-codes (3.34-1)
    [2012-07-18 19:10] installed libxklavier (5.2.1-2)
    [2012-07-18 19:13] Running 'pacman -U lightdm-1.3.1-4-x86_64.pkg.tar.xz'
    [2012-07-18 19:14] You need to install lightdm-gtk-greeter to run the default and most stable greeter
    [2012-07-18 19:14] installed lightdm (1.3.1-4)
    [2012-07-18 19:14] Running 'pacman --noconfirm --asdeps -S -- archlinux-wallpaper bzr gnome-common gnome-doc-utils gtk-doc gtk-engines libwebkit vala'
    [2012-07-18 19:15] ==> Wallpapers have been installed to /usr/share/archlinux/wallpaper
    [2012-07-18 19:15] installed archlinux-wallpaper (1.4-1)
    [2012-07-18 19:15] installed bzr (2.5.1-1)
    [2012-07-18 19:15] installed gnome-common (3.4.0.1-2)
    [2012-07-18 19:15] installed libxslt (1.1.26-3)
    [2012-07-18 19:15] installed docbook-xml (4.5-5)
    [2012-07-18 19:15] installed rarian (0.8.1-2)
    [2012-07-18 19:15] installed gnome-doc-utils (0.20.10-1)
    [2012-07-18 19:15] installed docbook-xsl (1.77.1-2)
    [2012-07-18 19:15] installed gtk-doc (1.18-1)
    [2012-07-18 19:15] installed atk (2.4.0-1)
    [2012-07-18 19:15] installed compositeproto (0.4.2-2)
    [2012-07-18 19:15] installed libxcomposite (0.4.3-2)
    [2012-07-18 19:15] installed damageproto (1.2.1-2)
    [2012-07-18 19:15] installed libxdamage (1.1.3-2)
    [2012-07-18 19:15] installed shared-mime-info (1.0-1)
    [2012-07-18 19:15] installed libtasn1 (2.13-1)
    [2012-07-18 19:15] installed nettle (2.5-1)
    [2012-07-18 19:15] installed p11-kit (0.12-1)
    [2012-07-18 19:15] installed gnutls (3.0.21-1)
    [2012-07-18 19:15] installed libdaemon (0.14-2)
    [2012-07-18 19:15] ==> The following daemons may be added to DAEMONS in /etc/rc.conf:
    [2012-07-18 19:15] ==> avahi-daemon: the mdns responder, you probably want this.
    [2012-07-18 19:15] ==> dbus needs to be running when you start it.
    [2012-07-18 19:15] ==> avahi-dnsconfd: daemon used for peer-to-peer automatic dns
    [2012-07-18 19:15] ==> configuration on dhcp-less networks.
    [2012-07-18 19:15]
    [2012-07-18 19:15] ==> To use some of the client applications you will have to install python.
    [2012-07-18 19:15] ==> In addition, pygtk is required for the graphical ones and
    [2012-07-18 19:15] ==> twisted for avahi-bookmarks.
    [2012-07-18 19:15] installed avahi (0.6.31-3)
    [2012-07-18 19:15] installed libcups (1.5.3-5)
    [2012-07-18 19:15] installed gdk-pixbuf2 (2.26.1-1)
    [2012-07-18 19:15] installed gtk-update-icon-cache (2.24.10-3)
    [2012-07-18 19:15] installed gtk2 (2.24.10-3)
    [2012-07-18 19:15] installed gtk-engines (2.21.0-1)
    [2012-07-18 19:15] installed icu (49.1.2-1)
    [2012-07-18 19:15] installed gstreamer0.10 (0.10.36-1)
    [2012-07-18 19:15] installed orc (0.4.16-1)
    [2012-07-18 19:15] installed gstreamer0.10-base (0.10.36-1)
    [2012-07-18 19:15] installed libproxy (0.4.7-2)
    [2012-07-18 19:15] installed gsettings-desktop-schemas (3.4.2-1)
    [2012-07-18 19:15] installed glib-networking (2.32.3-1)
    [2012-07-18 19:15] installed libsoup (2.38.1-1)
    [2012-07-18 19:15] ==> aspell comes with no default dictionary
    [2012-07-18 19:15] installed aspell (0.60.6.1-1)
    [2012-07-18 19:15] installed hunspell (1.3.2-1)
    [2012-07-18 19:15] installed hspell (1.1-2)
    [2012-07-18 19:15] installed enchant (1.6.0-4)
    [2012-07-18 19:15] installed geoclue (0.12.0-5)
    [2012-07-18 19:15] installed libwebkit (1.8.1-1)
    [2012-07-18 19:15] installed vala (0.16.1-1)
    [2012-07-18 19:16] Running 'pacman -U lightdm-webkit-greeter-bzr-13-3-x86_64.pkg.tar.xz'
    [2012-07-18 19:16] Running 'pacman -U lightdm-webkit-greeter-0.1.2-3-x86_64.pkg.tar.xz'
    [2012-07-18 19:16] installed lightdm-webkit-greeter (0.1.2-3)
    [2012-07-18 19:47] Running 'pacman -R lightdm'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice dbus-glib libxklavier'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice enchant geoclue dbus-glib libxklavier'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice libwebkite enchant geoclue dbus-glib libxklavier'
    [2012-07-18 19:48] Running 'pacman -R lightdm-webkit-greeter lightdm accountsservice libwebkit enchant geoclue dbus-glib libxklavier'
    [2012-07-18 19:49] removed lightdm-webkit-greeter (0.1.2-3)
    [2012-07-18 19:49] removed libwebkit (1.8.1-1)
    [2012-07-18 19:49] removed geoclue (0.12.0-5)
    [2012-07-18 19:49] removed enchant (1.6.0-4)
    [2012-07-18 19:49] userdel: user lightdm is currently used by process 657
    [2012-07-18 19:49] groupdel: cannot remove the primary group of user 'lightdm'
    [2012-07-18 19:49] removed lightdm (1.3.1-4)
    [2012-07-18 19:49] removed libxklavier (5.2.1-2)
    [2012-07-18 19:49] removed dbus-glib (0.100-1)
    [2012-07-18 19:49] removed accountsservice (0.6.22-1)
    [2012-07-18 19:50] Running 'pacman -S chromium'
    [2012-07-18 19:50] installed dbus-glib (0.100-1)
    [2012-07-18 19:50] installed nspr (4.9.1-1)
    [2012-07-18 19:50] installed nss (3.13.5-1)
    [2012-07-18 19:50] installed xdg-utils (1.1.0-2.20120520)
    [2012-07-18 19:50] installed libevent (2.0.19-1)
    [2012-07-18 19:50] installed scrnsaverproto (1.2.2-1)
    [2012-07-18 19:50] installed libxss (1.2.2-1)
    [2012-07-18 19:50] installed desktop-file-utils (0.20-1)
    [2012-07-18 19:50] installed hicolor-icon-theme (0.12-2)
    [2012-07-18 19:50] installed chromium (20.0.1132.57-1)
    [2012-07-18 19:50] Running 'pacman -Sy abs'
    [2012-07-18 19:50] synchronizing package lists
    [2012-07-18 19:51] installed rsync (3.0.9-3)
    [2012-07-18 19:51] installed abs (2.4.3-2)
    [2012-07-18 19:52] Running 'pacman -S openjdk6 perl git gnupg flex bison gperf zip unzip wxgtk squashfs-tools ncurses libpng zlib libusb libusb-compat readline'
    [2012-07-18 19:53] installed ca-certificates-java (20120608-1)
    [2012-07-18 19:53] installed recordproto (1.14.2-1)
    [2012-07-18 19:53] installed libxtst (1.2.1-1)
    [2012-07-18 19:53] upgraded zlib (1.2.7-1 -> 1.2.7-1)
    [2012-07-18 19:53] upgraded libpng (1.5.11-1 -> 1.5.11-1)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/AC_Ra?z_Certic?mara_S.A..pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/AC_Ra?z_Certic?mara_S.A..pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/Certinomis_-_Autorit?_Racine.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/Certinomis_-_Autorit?_Racine.pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/T?B?TAK_UEKAE_K?k_Sertifika_Hizmet_Sa?lay?c?s?_-_S?r?m_3.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/T?B?TAK_UEKAE_K?k_Sertifika_Hizmet_Sa?lay?c?s?_-_S?r?m_3.pem (No such file or directory)
    [2012-07-18 19:53] Warning: there was a problem reading the certificate file /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa?lay?c?s?.pem. Message:
    [2012-07-18 19:53] /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sa?lay?c?s?.pem (No such file or directory)
    [2012-07-18 19:53] done.
    [2012-07-18 19:53] when you use a non-reparenting window manager
    [2012-07-18 19:53] set _JAVA_AWT_WM_NONREPARENTING=1 in
    [2012-07-18 19:53] /etc/profile.d/openjdk6.sh
    [2012-07-18 19:53] installed openjdk6 (6.b24_1.11.3-1)
    [2012-07-18 19:53] upgraded perl (5.16.0-2 -> 5.16.0-2)
    [2012-07-18 19:53] upgraded git (1.7.11.2-1 -> 1.7.11.2-1)
    [2012-07-18 19:53] upgraded ncurses (5.9-3 -> 5.9-3)
    [2012-07-18 19:53] upgraded readline (6.2.003-2 -> 6.2.003-2)
    [2012-07-18 19:53] upgraded gnupg (2.0.19-2 -> 2.0.19-2)
    [2012-07-18 19:53] upgraded flex (2.5.35-5 -> 2.5.35-5)
    [2012-07-18 19:53] upgraded bison (2.5.1-1 -> 2.5.1-1)
    [2012-07-18 19:53] installed gperf (3.0.4-4)
    [2012-07-18 19:53] installed zip (3.0-3)
    [2012-07-18 19:53] installed unzip (6.0-6)
    [2012-07-18 19:53] installed wxgtk (2.8.12.1-3)
    [2012-07-18 19:53] installed lzo2 (2.06-1)
    [2012-07-18 19:53] installed squashfs-tools (4.2-2)
    [2012-07-18 19:53] upgraded libusbx (1.0.12-2 -> 1.0.12-2)
    [2012-07-18 19:53] installed libusb-compat (0.1.4-2)
    [2012-07-18 19:53] Running 'pacman -S -- esdl schedtool'
    [2012-07-18 19:54] installed erlang (R15B01-1)
    [2012-07-18 19:54] installed sdl (1.2.15-1)
    [2012-07-18 19:54] installed dri2proto (2.6-1)
    [2012-07-18 19:54] installed glproto (1.4.15-1)
    [2012-07-18 19:54] installed mesa (8.0.4-1)
    [2012-07-18 19:54] installed esdl (2:1.2-1)
    [2012-07-18 19:54] installed schedtool (1.3.0-2)
    [2012-07-18 19:55] Running 'pacman -U pngcrush-1.7.31-1-x86_64.pkg.tar.xz'
    [2012-07-18 19:55] installed pngcrush (1.7.31-1)
    [2012-07-18 19:55] Running 'pacman -U repo-1.17-1-x86_64.pkg.tar.xz'
    [2012-07-18 19:55] installed repo (1.17-1)
    [2012-07-18 19:59] Running 'pacman -S terminator'
    [2012-07-18 19:59] installed vte-common (0.32.2-1)
    [2012-07-18 19:59] installed vte (0.28.2-3)
    [2012-07-18 19:59] installed libglade (2.6.4-3)
    [2012-07-18 19:59] installed python2-cairo (1.10.0-1)
    [2012-07-18 19:59] installed pygobject2-devel (2.28.6-6)
    [2012-07-18 19:59] installed python2-gobject2 (2.28.6-6)
    [2012-07-18 19:59] installed pygtk (2.24.0-3)
    [2012-07-18 19:59] installed terminator (0.96-1)
    [2012-07-18 20:00] Running 'pacman -Sy gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-libusb lib32-libusb-compat lib32-readline lib32-glibc lib32-zlib'
    [2012-07-18 20:00] synchronizing package lists
    [2012-07-18 20:00] Running 'pacman -Sy gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-libusb-compat lib32-readline lib32-glibc lib32-zlib'
    [2012-07-18 20:00] synchronizing package lists
    [2012-07-18 20:00] Running 'pacman -Sy gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-readline lib32-glibc lib32-zlib'
    [2012-07-18 20:00] synchronizing package lists
    [2012-07-18 20:01] removed gcc-libs (4.7.1-4)
    [2012-07-18 20:01] removed binutils (2.22-9)
    [2012-07-18 20:01] removed gcc (4.7.1-4)
    [2012-07-18 20:01] removed libtool (2.4.2-6)
    [2012-07-18 20:01] installed gcc-libs-multilib (4.7.1-4.1)
    [2012-07-18 20:01] installed binutils-multilib (2.22-8)
    [2012-07-18 20:01] installed gcc-multilib (4.7.1-4.1)
    [2012-07-18 20:01] upgraded lib32-glibc (2.16.0-2 -> 2.16.0-2)
    [2012-07-18 20:01] installed lib32-libltdl (2.4.2-6)
    [2012-07-18 20:01] installed libtool-multilib (2.4.2-6)
    [2012-07-18 20:01] installed lib32-ncurses (5.9-1)
    [2012-07-18 20:01] installed lib32-readline (6.2.003-1)
    [2012-07-18 20:01] upgraded lib32-zlib (1.2.7-1 -> 1.2.7-1)
    [2012-07-18 20:07] Running 'pacman -S ssh'
    [2012-07-18 20:10] Running 'pacman -S ssh-keygen'
    [2012-07-18 20:10] Running 'pacman -S openssh'
    [2012-07-18 20:10] installed libedit (20120311_3.0-1)
    [2012-07-18 20:10] installed dnssec-anchors (20120422-1)
    [2012-07-18 20:10] installed ldns (1.6.13-1)
    [2012-07-18 20:10] installed openssh (6.0p1-3)
    [2012-07-18 20:11] Running 'pacman -S pbcopy'
    [2012-07-18 20:11] Running 'pacman -S copy'
    [2012-07-18 20:13] Running 'pacman -S gedit'
    [2012-07-18 20:13] installed lcms2 (2.3-2)
    [2012-07-18 20:13] installed libgusb (0.1.3-1)
    [2012-07-18 20:13] installed gd (2.0.36RC1-5)
    [2012-07-18 20:13] installed libgphoto2 (2.4.14-1)
    [2012-07-18 20:13] installed libieee1284 (0.2.11-4)
    [2012-07-18 20:13] installed v4l-utils (0.8.8-1)
    [2012-07-18 20:13] installed net-snmp (5.7.1-3)
    [2012-07-18 20:13] NOTE
    [2012-07-18 20:13] ----
    [2012-07-18 20:13] Add your user to group 'scanner' to use scanner devices.
    [2012-07-18 20:13] installed sane (1.0.22-9)
    [2012-07-18 20:13] installed shared-color-profiles (0.1.5-1)
    [2012-07-18 20:13] installed colord (0.1.21-2)
    [2012-07-18 20:13] installed gtk3 (3.4.3-1)
    [2012-07-18 20:13] installed gtksourceview3 (3.4.2-1)
    [2012-07-18 20:13] installed libpeas (1.4.0-2)
    [2012-07-18 20:13] installed enchant (1.6.0-4)
    [2012-07-18 20:13] installed pygobject-devel (3.2.2-1)
    [2012-07-18 20:13] installed python2-gobject (3.2.2-1)
    [2012-07-18 20:13] installed dconf (0.12.1-2)
    [2012-07-18 20:13] installed gedit (3.4.2-1)
    [2012-07-18 20:15] Running 'pacman -S python'
    [2012-07-18 20:16] installed python (3.2.3-3)
    [2012-07-18 20:26] Running 'pacman -S xclip'
    [2012-07-18 20:26] installed xclip (0.12-3)
    [2012-07-18 20:37] Running 'pacman --noconfirm --asdeps -S -- lib32-alsa-lib lib32-libstdc++5 lib32-openal lib32-sdl swt'
    [2012-07-18 20:37] installed lib32-alsa-lib (1.0.25-1)
    [2012-07-18 20:37] installed lib32-libstdc++5 (3.3.6-6)
    [2012-07-18 20:37] installed openal (1.14-1)
    [2012-07-18 20:37] installed lib32-openal (1.14-1)
    [2012-07-18 20:37] installed lib32-libxrender (0.9.7-1)
    [2012-07-18 20:37] installed lib32-sdl (1.2.15-2)
    [2012-07-18 20:37] installed swt (3.7.2-1)
    [2012-07-18 20:45] Running 'pacman --asdeps -U android-sdk-r20-2-x86_64.pkg.tar.xz'
    [2012-07-18 20:50] You need to source /etc/profile or relogin to add the Android SDK tools to your path.
    [2012-07-18 20:50] The android group has been removed, install android packages as root.
    [2012-07-18 20:50] installed android-sdk (r20-2)
    [2012-07-18 20:51] Running 'pacman -U android-sdk-r20-2-x86_64.pkg.tar.xz'
    [2012-07-18 20:54] You need to source /etc/profile or relogin to add the Android SDK tools to your path.
    [2012-07-18 20:54] The android group has been removed, install android packages as root.
    [2012-07-18 20:54] upgraded android-sdk (r20-2 -> r20-2)
    [2012-07-18 20:59] Running 'pacman -U android-sdk-platform-tools-r12-1-any.pkg.tar.xz'
    [2012-07-18 20:59] installed android-sdk-platform-tools (r12-1)
    [2012-07-18 21:10] Running 'pacman -S perl-switch'
    [2012-07-18 21:10] installed perl-switch (2.16-1)
    [2012-07-21 03:29] Running 'pacman -S flashplugin'
    [2012-07-21 03:29] relogin or source /etc/profile.d/mozilla-common.sh
    [2012-07-21 03:29] installed mozilla-common (1.4-3)
    [2012-07-21 03:29] >>
    [2012-07-21 03:29] >> If you have an NVIDIA card that supports libvdpau or Broadcom Crystal HD chips,
    [2012-07-21 03:29] >> uncomment EnableLinuxHWVideoDecode=1 from /etc/adobe/mms.cfg.
    [2012-07-21 03:29] >> If you run into problems, please contact nVidia or Broadcom along with your system config info / driver version.
    [2012-07-21 03:29] >>
    [2012-07-21 03:29] installed flashplugin (11.2.202.236-1)
    [2012-07-21 03:32] Running 'pacman -S libvdpau'
    [2012-07-21 03:32] installed libvdpau (0.4.1-2)
    [2012-07-21 14:53] Running 'pacman -S gedit-common'
    [2012-07-21 14:55] Running 'pacman -S gtk-theme-switch2'
    [2012-07-21 14:56] installed gtk-theme-switch2 (2.1.0-2)
    [2012-07-21 15:00] Running 'pacman -S gtk-icons'
    [2012-07-21 15:04] Running 'pacman -R gtk-theme-switch2 gedit dconf desktop-file-utils enchant gsettings-desktop-schemas gtksourceview3 iso-codes libpeas libsm python2-gobject'
    [2012-07-21 15:06] Running 'pacman -R gtk-theme-switch2 gedit dconf enchant gtksourceview3 iso-codes libpeas python2-gobject'
    [2012-07-21 15:06] removed gedit (3.4.2-1)
    [2012-07-21 15:06] removed python2-gobject (3.2.2-1)
    [2012-07-21 15:06] removed libpeas (1.4.0-2)
    [2012-07-21 15:06] removed iso-codes (3.34-1)
    [2012-07-21 15:06] removed gtksourceview3 (3.4.2-1)
    [2012-07-21 15:06] removed enchant (1.6.0-4)
    [2012-07-21 15:06] removed dconf (0.12.1-2)
    [2012-07-21 15:06] removed gtk-theme-switch2 (2.1.0-2)
    [2012-07-21 15:06] Running 'pacman -R glib-networking gsettings-desktop-schemas'
    [2012-07-21 15:06] Running 'pacman -R libsoup glib-networking gsettings-desktop-schemas'
    [2012-07-21 15:06] removed libsoup (2.38.1-1)
    [2012-07-21 15:06] removed glib-networking (2.32.3-1)
    [2012-07-21 15:06] removed gsettings-desktop-schemas (3.4.2-1)
    [2012-07-21 15:07] Running 'pacman -R wxgtk'
    [2012-07-21 15:07] removed wxgtk (2.8.12.1-3)
    [2012-07-21 15:07] Running 'pacman -R libxt libsm'
    [2012-07-21 15:11] Running 'pacman -S ranger'
    [2012-07-21 15:11] installed ranger (1.5.4-1)
    [2012-07-21 15:32] Running 'pacman -S irssi'
    [2012-07-21 15:32] installed irssi (0.8.15-6)
    [2012-07-24 20:20] Running 'pacman -U sublime-text-2.0.1-1-x86_64.pkg.tar.xz'
    [2012-07-24 20:20] installed sublime-text (2.0.1-1)
    [2012-07-24 23:41] Running 'pacman -U dropbox-1.4.11-1-x86_64.pkg.tar.xz'
    [2012-07-24 23:41] installed dropbox (1.4.11-1)
    [2012-07-24 23:41] Running 'pacman -U dropbox-daemon-0.8-8-any.pkg.tar.xz'
    [2012-07-24 23:41] >> Configure the Dropbox daemon script by editing /etc/conf.d/dropboxd.conf
    [2012-07-24 23:41] installed dropbox-daemon (0.8-8)
    [2012-07-24 23:48] Running 'pacman -U dropbox-cli-1-12-x86_64.pkg.tar.xz'
    [2012-07-24 23:48] installed dropbox-cli (1-12)
    [2012-07-24 23:49] Running 'pacman -S nautilus'
    [2012-07-24 23:56] Running 'pacman -S ranger'
    [2012-07-24 23:57] upgraded ranger (1.5.4-1 -> 1.5.4-1)
    [2012-07-25 00:23] Running 'pacman --noconfirm --asdeps -S -- gconf qt qtwebkit'
    [2012-07-25 00:23] Running 'pacman --noconfirm --asdeps -S -- gconf qt qtwebkit'
    [2012-07-25 00:23] Running 'pacman -Sy'
    [2012-07-25 00:23] synchronizing package lists
    [2012-07-25 00:24] Running 'pacman --noconfirm --asdeps -S -- gconf qt qtwebkit'
    [2012-07-25 00:25] installed gconf (3.2.5-2)
    [2012-07-25 00:25] installed libmng (1.0.10-4)
    [2012-07-25 00:25] installed qt (4.8.2-3)
    [2012-07-25 00:25] installed qtwebkit (2.2.2-1)
    [2012-07-25 00:27] Running 'pacman --asdeps -U openssl098-0.9.8.x-1-x86_64.pkg.tar.xz'
    [2012-07-25 00:27] installed openssl098 (0.9.8.x-1)
    [2012-07-25 00:28] Running 'pacman --asdeps -U libpng12-1.2.49-1-x86_64.pkg.tar.xz'
    [2012-07-25 00:28] installed libpng12 (1.2.49-1)
    [2012-07-25 00:30] Running 'pacman -U spotify-0.8.4.103-1-x86_64.pkg.tar.xz'
    [2012-07-25 00:31] installed spotify (0.8.4.103-1)
    [2012-07-29 16:57] Running 'pacman --noconfirm --asdeps -S -- ffmpeg libmediainfo mencoder mplayer'
    [2012-07-29 16:58] Running 'pacman --noconfirm --asdeps -S -- ffmpeg libmediainfo mencoder mplayer'
    [2012-07-29 16:58] Running 'pacman -Syy'
    [2012-07-29 16:58] synchronizing package lists
    [2012-07-29 17:00] Running 'pacman --noconfirm --asdeps -S -- ffmpeg libmediainfo mencoder mplayer'
    [2012-07-29 17:00] installed gsm (1.0.13-7)
    [2012-07-29 17:00] installed lame (3.99.5-1)
    [2012-07-29 17:00] installed libasyncns (0.8-4)
    [2012-07-29 17:00] installed json-c (0.9-1)
    [2012-07-29 17:00] installed libpulse (2.1-1)
    [2012-07-29 17:00] installed libtheora (1.1.1-2)
    [2012-07-29 17:00] installed libglapi (8.0.4-2)
    [2012-07-29 17:00] installed khrplatform-devel (8.0.4-2)
    [2012-07-29 17:00] installed libegl (8.0.4-2)
    [2012-07-29 17:00] installed libva (1.1.0-1)
    [2012-07-29 17:00] installed libvpx (1.1.0-1)
    [2012-07-29 17:00] installed opencore-amr (0.1.3-1)
    [2012-07-29 17:00] installed openjpeg (1.5.0-1)
    [2012-07-29 17:00] installed rtmpdump (2.4-1)
    [2012-07-29 17:00] installed schroedinger (1.0.11-1)
    [2012-07-29 17:00] installed speex (1.2rc1-2)
    [2012-07-29 17:00] installed x264 (20120705-1)
    [2012-07-29 17:00] installed xvidcore (1.3.2-1)
    [2012-07-29 17:00] installed ffmpeg (1:0.11.1-1)
    [2012-07-29 17:00] installed libmms (0.6.2-1)
    [2012-07-29 17:00] installed libzen (0.4.26-1)
    [2012-07-29 17:00] installed libmediainfo (0.7.58-1)
    [2012-07-29 17:00] installed recode (3.6-7)
    [2012-07-29 17:00] installed enca (1.13-2)
    [2012-07-29 17:00] installed a52dec (0.7.4-6)
    [2012-07-29 17:00] installed libdca (0.0.5-3)
    [2012-07-29 17:00] installed talloc (2.0.7-1)
    [2012-07-29 17:00] installed libwbclient (3.6.6-1)
    [2012-07-29 17:00] installed libcap-ng (0.6.6-1)
    [2012-07-29 17:00] installed cifs-utils (5.5-1)
    [2012-07-29 17:00] installed tdb (1.2.9-2)
    [2012-07-29 17:00] installed smbclient (3.6.6-1)
    [2012-07-29 17:00] installed libmad (0.15.1b-6)
    [2012-07-29 17:00] installed fribidi (0.19.2-2)
    [2012-07-29 17:00] installed libmp4v2 (2.0.0-2)
    [2012-07-29 17:00] installed faac (1.28-4)
    [2012-07-29 17:00] installed faad2 (2.7-3)
    [2012-07-29 17:00] installed mpg123 (1.14.4-1)
    [2012-07-29 17:00] installed libass (0.10.0-3)
    [2012-07-29 17:00] installed libbluray (0.2.2-1)
    [2012-07-29 17:00] installed libcddb (1.3.2-3)
    [2012-07-29 17:00] installed libcdio (0.83-1)
    [2012-07-29 17:00] installed mencoder (35014-1)
    [2012-07-29 17:00] installed libftdi (0.20-1)
    [2012-07-29 17:00] installed libirman (0.4.5-3)
    [2012-07-29 17:00] installed lirc-utils (1:0.9.0-22)
    [2012-07-29 17:00] installed gpm (1.20.6-10)
    [2012-07-29 17:00] installed aalib (1.4rc5-9)
    [2012-07-29 17:00] installed jack (0.121.3-6)
    [2012-07-29 17:00] installed libcaca (0.99.beta18-1)
    [2012-07-29 17:00] installed xf86dgaproto (2.1-2)
    [2012-07-29 17:00] installed libxxf86dga (1.1.3-1)
    [2012-07-29 17:00] installed mplayer (35014-1)
    [2012-07-29 17:00] Running 'pacman -U pms-1.60.0-1-x86_64.pkg.tar.xz'
    [2012-07-29 17:00] installed pms (1.60.0-1)
    [2012-07-29 17:20] Running 'pacman -S netstat'
    [2012-07-29 17:31] Running 'pacman -S ntfs-3g'
    [2012-07-29 17:31] installed fuse (2.9.0-1)
    [2012-07-29 17:31] installed ntfs-3g (2012.1.15-3)
    [2012-07-29 17:45] Running 'pacman -S tsmuxer'
    [2012-07-29 17:45] Running 'pacman -S tsMuxeR'
    [2012-07-29 17:45] Running 'pacman --noconfirm --asdeps -S -- lib32-freetype2'
    [2012-07-29 17:45] installed lib32-bzip2 (1.0.6-1)
    [2012-07-29 17:45] installed lib32-freetype2 (2.4.10-1)
    [2012-07-29 17:48] Running 'pacman -U tsmuxer-1.10.6-12-x86_64.pkg.tar.xz'
    [2012-07-29 17:48] The tsmuxer package is licensed software.
    [2012-07-29 17:48] You MUST read and agree to the license stored in
    [2012-07-29 17:48] /opt/tsmuxer/LICENSE before using it.
    [2012-07-29 17:48] installed tsmuxer (1.10.6-12)
    [2012-07-29 18:23] Running 'pacman -S icedtea-web-java7'
    [2012-07-29 18:23] Running 'pacman -S icedtea-web-java6'
    [2012-07-29 18:24] Running 'pacman -S openjre'
    [2012-07-29 18:25] Running 'pacman -S jre'
    [2012-07-29 18:25] Running 'pacman -S icetea-plugin'
    [2012-07-29 18:27] Running 'pacman -S icedtea-web'
    [2012-07-29 18:27] installed icedtea-web (1.2-1)
    [2012-07-29 18:35] Running 'pacman -S ccache'
    [2012-07-29 18:35] installed ccache (3.1.7-1)
    [2012-07-29 18:50] Running 'pacman -S rtorrent'
    [2012-07-29 18:50] installed libsigc++ (2.2.10-2)
    [2012-07-29 18:50] installed libtorrent (0.13.2-2)
    [2012-07-29 18:50] installed xmlrpc-c (1:1.31.02-2)
    [2012-07-29 18:50] installed rtorrent (0.9.2-2)
    [2012-07-29 18:52] Running 'pacman -S rutorrent'
    [2012-07-29 18:52] Running 'pacman --noconfirm --asdeps -S -- php'
    [2012-07-29 18:52] installed php (5.4.5-1)
    [2012-07-29 18:52] Running 'pacman -U rutorrent-3.4-2-any.pkg.tar.xz'
    [2012-07-29 18:53] installed rutorrent (3.4-2)
    [2012-07-29 18:53] Running 'pacman -R rtorrent'
    [2012-07-29 18:53] removed rtorrent (0.9.2-2)
    [2012-07-29 18:53] Running 'pacman -S rtorrent-svn'
    [2012-07-29 18:54] Running 'pacman -S rtorrent'
    [2012-07-29 18:54] installed rtorrent (0.9.2-2)
    [2012-07-29 18:54] Running 'pacman -S apache php-apache php-cgi mod-scgi php-xsl rutorrent-plugins php-geoip screen'
    [2012-07-29 18:55] Running 'pacman -S apache php-apache php-cgi php-xsl rutorrent-plugins php-geoip screen'
    [2012-07-29 18:55] Running 'pacman -S apache php-apache php-cgi php-xsl php-geoip screen'
    [2012-07-29 18:55] installed apr (1.4.6-1)
    [2012-07-29 18:55] installed unixodbc (2.3.1-1)
    [2012-07-29 18:55] installed apr-util (1.4.1-1)
    [2012-07-29 18:55] installed apache (2.2.22-4)
    [2012-07-29 18:55] installed php-apache (5.4.5-1)
    [2012-07-29 18:55] installed php-cgi (5.4.5-1)
    [2012-07-29 18:55] installed php-xsl (5.4.5-1)
    [2012-07-29 18:55] installed geoip-database (20120706-1)
    [2012-07-29 18:55] installed geoip (1.4.8-2)
    [2012-07-29 18:55] installed php-geoip (1.0.8-2)
    [2012-07-29 18:55] installed screen (4.0.3-13)
    [2012-07-29 19:03] Running 'pacman -U mod_scgi-1.14-1-x86_64.pkg.tar.xz'
    [2012-07-29 19:03] installed mod_scgi (1.14-1)
    [2012-07-29 19:03] Running 'pacman -U rutorrent-plugins-3.4-2-any.pkg.tar.xz'
    [2012-07-29 19:03] installed rutorrent-plugins (3.4-2)
    [2012-07-29 19:04] Running 'pacman -U rutorrent-3.4-2-any.pkg.tar.xz'
    [2012-07-29 19:04] upgraded rutorrent (3.4-2 -> 3.4-2)
    [2012-07-29 19:46] Running 'pacman -S unrar unzip'
    [2012-07-29 19:46] installed unrar (4.2.4-1)
    [2012-07-29 19:46] upgraded unzip (6.0-6 -> 6.0-6)
    [2012-07-29 20:00] Running 'pacman -S php-apache mysql'
    [2012-07-29 20:02] upgraded php-apache (5.4.5-1 -> 5.4.5-1)
    [2012-07-29 20:02] installed libmysqlclient (5.5.25.a-1)
    [2012-07-29 20:02] installed mysql-clients (5.5.25.a-1)
    [2012-07-29 20:02] Installing MySQL system tables...
    [2012-07-29 20:02] OK
    [2012-07-29 20:02] Filling help tables...
    [2012-07-29 20:02] OK
    [2012-07-29 20:02]
    [2012-07-29 20:02] To start mysqld at boot time you have to copy
    [2012-07-29 20:02] support-files/mysql.server to the right place for your system
    [2012-07-29 20:02]
    [2012-07-29 20:02] PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
    [2012-07-29 20:02] To do so, start the server, then issue the following commands:
    [2012-07-29 20:02]
    [2012-07-29 20:02] /usr/bin/mysqladmin -u root password 'new-password'
    [2012-07-29 20:02] /usr/bin/mysqladmin -u root -h arch-shauder password 'new-password'
    [2012-07-29 20:02]
    [2012-07-29 20:02] Alternatively you can run:
    [2012-07-29 20:02] /usr/bin/mysql_secure_installation
    [2012-07-29 20:02]
    [2012-07-29 20:02] which will also give you the option of removing the test
    [2012-07-29 20:02] databases and anonymous user created by default. This is
    [2012-07-29 20:02] strongly recommended for production servers.
    [2012-07-29 20:02]
    [2012-07-29 20:02] See the manual for more instructions.
    [2012-07-29 20:02]
    [2012-07-29 20:02] You can start the MySQL daemon with:
    [2012-07-29 20:02] cd /usr ; /usr/bin/mysqld_safe &
    [2012-07-29 20:02]
    [2012-07-29 20:02] You can test the MySQL daemon with mysql-test-run.pl
    [2012-07-29 20:02] cd /usr/mysql-test ; perl mysql-test-run.pl
    [2012-07-29 20:02]
    [2012-07-29 20:02] Please report any problems with the /usr/scripts/mysqlbug script!
    [2012-07-29 20:02]
    [2012-07-29 20:02] installed mysql (5.5.25.a-1)
    [2012-07-29 20:49] Running 'pacman -Syyu'
    [2012-07-29 20:49] synchronizing package lists
    [2012-07-29 20:50] starting full system upgrade
    [2012-07-29 20:52] upgraded readline (6.2.003-2 -> 6.2.004-1)
    [2012-07-29 20:52] upgraded bash (4.2.036-1 -> 4.2.037-1)
    [2012-07-29 20:52] upgraded bison (2.5.1-1 -> 2.6-1)
    [2012-07-29 20:52] upgraded lib32-gcc-libs (4.7.1-4.1 -> 4.7.1-5)
    [2012-07-29 20:52] upgraded gcc-libs-multilib (4.7.1-4.1 -> 4.7.1-5)
    [2012-07-29 20:52] upgraded gnutls (3.0.21-1 -> 3.0.21-2)
    [2012-07-29 20:52] upgraded libpng (1.5.11-1 -> 1.5.12-1)
    [2012-07-29 20:52] upgraded libcups (1.5.3-5 -> 1.5.4-1)
    [2012-07-29 20:52] upgraded gtk-update-icon-cache (2.24.10-3 -> 2.24.11-2)
    [2012-07-29 20:52] upgraded gtk2 (2.24.10-3 -> 2.24.11-2)
    [2012-07-29 20:52] upgraded chromium (20.0.1132.57-1 -> 20.0.1132.57-2)
    [2012-07-29 20:52] warning: /etc/protocols installed as /etc/protocols.pacnew
    [2012-07-29 20:52] warning: /etc/services installed as /etc/services.pacnew
    [2012-07-29 20:52] upgraded iana-etc (2.30-2 -> 2.30-3)
    [2012-07-29 20:52] upgraded filesystem (2012.6-4 -> 2012.7-1)
    [2012-07-29 20:52] upgraded libsystemd (186-2 -> 187-2)
    [2012-07-29 20:52] upgraded glib2 (2.32.3-1 -> 2.32.4-1)
    [2012-07-29 20:52] upgraded systemd-tools (186-2 -> 187-2)
    [2012-07-29 20:52] upgraded dbus-core (1.6.2-2 -> 1.6.4-1)
    [2012-07-29 20:52] upgraded dbus (1.6.2-1 -> 1.6.4-1)
    [2012-07-29 20:52] upgraded flex (2.5.35-5 -> 2.5.36-1)
    [2012-07-29 20:52] upgraded gcc-multilib (4.7.1-4.1 -> 4.7.1-5)
    [2012-07-29 20:52] upgraded git (1.7.11.2-1 -> 1.7.11.3-1)
    [2012-07-29 20:52] upgraded glproto (1.4.15-1 -> 1.4.16-1)
    [2012-07-29 20:52] upgraded gtk3 (3.4.3-1 -> 3.4.4-1)
    [2012-07-29 20:52] upgraded icu (49.1.2-1 -> 49.1.2-2)
    [2012-07-29 20:52] warning: /etc/rc.conf installed as /etc/rc.conf.pacnew
    [2012-07-29 20:52] upgraded initscripts (2012.06.3-2 -> 2012.07.5-1)
    [2012-07-29 20:52] upgraded lib32-readline (6.2.003-1 -> 6.2.004-1)
    [2012-07-29 20:52] >>> Updating module dependencies. Please wait ...
    [2012-07-29 20:52] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-07-29 20:52] ==> Building image from preset: 'default'
    [2012-07-29 20:52] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-29 20:52] ==> Starting build: 3.4.6-1-ARCH
    [2012-07-29 20:52] -> Running build hook: [base]
    [2012-07-29 20:52] -> Running build hook: [udev]
    [2012-07-29 20:52] -> Running build hook: [autodetect]
    [2012-07-29 20:52] -> Running build hook: [pata]
    [2012-07-29 20:52] -> Running build hook: [scsi]
    [2012-07-29 20:52] -> Running build hook: [sata]
    [2012-07-29 20:52] -> Running build hook: [filesystems]
    [2012-07-29 20:52] -> Running build hook: [usbinput]
    [2012-07-29 20:52] -> Running build hook: [fsck]
    [2012-07-29 20:52] ==> Generating module dependencies
    [2012-07-29 20:52] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-07-29 20:52] ==> Image generation successful
    [2012-07-29 20:52] ==> Building image from preset: 'fallback'
    [2012-07-29 20:52] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-29 20:52] ==> Starting build: 3.4.6-1-ARCH
    [2012-07-29 20:52] -> Running build hook: [base]
    [2012-07-29 20:52] -> Running build hook: [udev]
    [2012-07-29 20:52] -> Running build hook: [pata]
    [2012-07-29 20:52] -> Running build hook: [scsi]
    [2012-07-29 20:52] -> Running build hook: [sata]
    [2012-07-29 20:52] -> Running build hook: [filesystems]
    [2012-07-29 20:52] -> Running build hook: [usbinput]
    [2012-07-29 20:52] -> Running build hook: [fsck]
    [2012-07-29 20:52] ==> Generating module dependencies
    [2012-07-29 20:52] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-07-29 20:52] ==> Image generation successful
    [2012-07-29 20:52] upgraded linux (3.4.5-1 -> 3.4.6-1)
    [2012-07-29 20:52] upgraded linux-api-headers (3.4.4-1 -> 3.4.6-1)
    [2012-07-29 20:52] upgraded mesa (8.0.4-1 -> 8.0.4-2)
    [2012-07-29 20:52] upgraded nvidia (302.17-3 -> 302.17-4)
    [2012-07-29 20:52] upgraded tzdata (2012c-1 -> 2012d-1)
    [2012-07-29 20:52] upgraded xf86-input-evdev (2.7.0-2 -> 2.7.1-1)
    [2012-08-03 12:40] Running 'pacman -S filezilla'
    [2012-08-03 12:40] installed wxgtk (2.8.12.1-3)
    [2012-08-03 12:40] installed libidn (1.25-1)
    [2012-08-03 12:40] installed filezilla (3.5.3-1)
    [2012-08-06 13:55] Running 'pacman -R openjdk'
    [2012-08-06 13:55] Running 'pacman -R openjdk6'
    [2012-08-06 13:55] Running 'pacman -R icedtea-web'
    [2012-08-06 13:55] removed icedtea-web (1.2-1)
    [2012-08-06 13:56] Running 'pacman -S jdk'
    [2012-08-06 13:57] Running 'pacman --asdeps -U jre-7.5-2-x86_64.pkg.tar.xz'
    [2012-08-06 13:58] removed openjdk6 (6.b24_1.11.3-1)
    [2012-08-06 13:58]
    [2012-08-06 13:58] The jre package is licensed software.
    [2012-08-06 13:58] You MUST read and agree to the license stored in
    [2012-08-06 13:58] /usr/share/licenses/jre/LICENSE before using it.
    [2012-08-06 13:58] Please relogin to include jre in your PATH.
    [2012-08-06 13:58]
    [2012-08-06 13:58] installed jre (7.5-2)
    [2012-08-06 14:01] Running 'pacman -U jdk-7.5-2-x86_64.pkg.tar.xz'
    [2012-08-06 14:01]
    [2012-08-06 14:01] The jdk package is licensed software.
    [2012-08-06 14:01] You MUST read and agree to the license stored in
    [2012-08-06 14:01] /usr/share/licenses/jdk/LICENSE before using it.
    [2012-08-06 14:01] Please relogin to include jdk in your PATH.
    [2012-08-06 14:01]
    [2012-08-06 14:01] installed jdk (7.5-2)
    [2012-08-06 14:14] Running 'pacman --asdeps -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:15] Running 'pacman -R jdk jre'
    [2012-08-06 14:16] Running 'pacman -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:17] Running 'pacman -Rdd jdk jre'
    [2012-08-06 14:17] removed jdk (7.5-2)
    [2012-08-06 14:17] removed jre (7.5-2)
    [2012-08-06 14:19] Running 'pacman --asdeps -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:19] The jre package is licensed software.
    [2012-08-06 14:19] You MUST read and agree to the license stored in
    [2012-08-06 14:19] /opt/java/jre/LICENSE before using it.
    [2012-08-06 14:19] Please relogin to include jre in your PATH.
    [2012-08-06 14:19] installed jre6 (6u33-b04)
    [2012-08-06 14:21] Running 'pacman -U jdk6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:21] The jdk package is licensed software.
    [2012-08-06 14:21] You MUST read and agree to the license stored in
    [2012-08-06 14:21] /opt/java/LICENSE before using it.
    [2012-08-06 14:21] Please relogin to include jdk in your PATH
    [2012-08-06 14:21] installed jdk6 (6u33-b04)
    [2012-08-06 14:23] Running 'pacman -U jre6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 14:54] upgraded jre6 (6u33-b04 -> 6u33-b04)
    [2012-08-06 17:23] Running 'pacman -S gimp'
    [2012-08-06 17:23] installed lcms (1.19-2)
    [2012-08-06 17:23] Updating font cache... done.
    [2012-08-06 17:23] installed gsfonts (1.0.7pre44-3)
    [2012-08-06 17:23] installed libwmf (0.2.8.4-9)
    [2012-08-06 17:23] installed libcroco (0.6.5-1)
    [2012-08-06 17:23] installed librsvg (2.36.1-1)
    [2012-08-06 17:23] installed babl (0.1.10-1)
    [2012-08-06 17:23] installed gegl (0.2.0-2)
    [2012-08-06 17:23] installed freeglut (2.8.0-1)
    [2012-08-06 17:23] installed jasper (1.900.1-7)
    [2012-08-06 17:23] installed gimp (2.8.0-2)
    [2012-08-06 18:25] Running 'pacman -Sy'
    [2012-08-06 18:25] synchronizing package lists
    [2012-08-06 18:25] Running 'pacman -S yaourt'
    [2012-08-06 18:28] Running 'pacman -Sy'
    [2012-08-06 18:28] synchronizing package lists
    [2012-08-06 18:28] Running 'pacman -S lib32-gcc-libs lib32-glibc lib32-libx11 lib32-libxau lib32-libxcb lib32-libxdmcp lib32-libxext lib32-libxrender lib32-alsa-lib lib32-libstdc++5 lib32-libxv lib32-ncurses lib32-openal lib32-sdl lib32-zlib swt'
    [2012-08-06 18:29] Running 'pacman -Sy'
    [2012-08-06 18:29] synchronizing package lists
    [2012-08-06 18:29] Running 'pacman -S lib32-gcc-libs lib32-glibc lib32-libx11 lib32-libxau lib32-libxcb lib32-libxdmcp lib32-libxext lib32-libxrender lib32-alsa-lib lib32-libstdc++5 lib32-libxv lib32-ncurses lib32-openal lib32-sdl lib32-zlib swt'
    [2012-08-06 18:32] Running 'pacman --noconfirm --asdeps -S -- yajl'
    [2012-08-06 21:50] Running 'pacman -U jdk6-6u33-b04-x86_64.pkg.tar.xz'
    [2012-08-06 21:51] Running 'pacman -Rdd jdk6 jre6'
    [2012-08-06 21:51] removed jdk6 (6u33-b04)
    [2012-08-06 21:51] removed jre6 (6u33-b04)
    [2012-08-06 21:54] Running 'pacman -U sun-java6-6u32-1-x86_64.pkg.tar.xz'
    [2012-08-06 21:54] The sun-java6 package is licensed software.
    [2012-08-06 21:54] You MUST read and agree to the license stored in
    [2012-08-06 21:54] /opt/sun-java6/LICENSE before using it.
    [2012-08-06 21:54]
    [2012-08-06 21:54] Use '. /opt/sun-java6/envsetup.sh' to setup environment.
    [2012-08-06 21:54] installed sun-java6 (6u32-1)
    [2012-08-06 21:59] Running 'pacman -Syu'
    [2012-08-06 21:59] synchronizing package lists
    [2012-08-06 21:59] starting full system upgrade
    [2012-08-06 22:00] Running 'pacman -Sy'
    [2012-08-06 22:00] synchronizing package lists
    [2012-08-06 22:00] Running 'pacman -S yaourt'
    [2012-08-06 22:00] installed yajl (2.0.4-1)
    [2012-08-06 22:00] installed package-query (1.0.1-1)
    [2012-08-06 22:00] installed yaourt (1.1-1)
    [2012-08-06 22:00] Running 'pacman -S extra/schedtool community/esdl'
    [2012-08-06 22:00] upgraded schedtool (1.3.0-2 -> 1.3.0-2)
    [2012-08-06 22:00] upgraded esdl (2:1.2-1 -> 2:1.2-1)
    [2012-08-06 22:00] Running 'pacman -S extra/schedtool community/esdl'
    [2012-08-06 22:00] upgraded schedtool (1.3.0-2 -> 1.3.0-2)
    [2012-08-06 22:00] upgraded esdl (2:1.2-1 -> 2:1.2-1)
    [2012-08-06 22:00] Running 'pacman -S --asdeps --needed extra/jdk7-openjdk'
    [2012-08-06 22:01] installed java-rhino (1.7R3-3)
    [2012-08-06 22:01] installed jre7-openjdk-headless (7.u5_2.2.1-1)
    [2012-08-06 22:01] when you use a non-reparenting window manager
    [2012-08-06 22:01] set _JAVA_AWT_WM_NONREPARENTING=1 in
    [2012-08-06 22:01] /etc/profile.d/jre.sh
    [2012-08-06 22:01] installed jre7-openjdk (7.u5_2.2.1-1)
    [2012-08-06 22:01] installed jdk7-openjdk (7.u5_2.2.1-1)
    [2012-08-06 22:02] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.kJz/android-apktool-1.4.9-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:02] installed android-apktool (1.4.9-1)
    [2012-08-06 22:04] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.ubB/android-sdk-r20.0.1-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:05] You need to source /etc/profile or relogin to add the Android SDK tools to your path.
    [2012-08-06 22:05] The android group has been removed, install android packages as root.
    [2012-08-06 22:05] upgraded android-sdk (r20-2 -> r20.0.1-1)
    [2012-08-06 22:08] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.g9s/android-sdk-platform-tools-r14-1-any.pkg.tar.xz'
    [2012-08-06 22:08] upgraded android-sdk-platform-tools (r12-1 -> r14-1)
    [2012-08-06 22:08] Running 'pacman -S --asdeps --needed extra/libmtp'
    [2012-08-06 22:08] installed libmtp (1.1.3-1)
    [2012-08-06 22:08] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.0Uc/android-udev-1.3-4-any.pkg.tar.xz'
    [2012-08-06 22:08] ===> In order to use adb, you have to be in the 'adbusers' group
    [2012-08-06 22:08] ===> For that, use: gpasswd -a USERNAME adbusers
    [2012-08-06 22:08] installed android-udev (1.3-4)
    [2012-08-06 22:08] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.n8w/fastboot-20110628-2-any.pkg.tar.xz'
    [2012-08-06 22:08] installed fastboot (20110628-2)
    [2012-08-06 22:09] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.aCT/pngcrush-1.7.35-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:09] upgraded pngcrush (1.7.31-1 -> 1.7.35-1)
    [2012-08-06 22:09] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.ZNg/repo-git-20120806-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:10] Running 'pacman -S abs base-devel perl git gnupg flex bison gperf zip unzip sdl wxgtk squashfs-tools ncurses libpng zlib libusb libusb-compat readline alsa-lib openal'
    [2012-08-06 22:11] Running 'pacman -S lib32-gcc-libs lib32-glibc lib32-libx11 lib32-libxau lib32-libxcb lib32-libxdmcp lib32-libxext lib32-libxrender lib32-alsa-lib lib32-libstdc++5 lib32-libxv lib32-ncurses lib32-openal lib32-sdl lib32-zlib swt'
    [2012-08-06 22:11] upgraded lib32-glibc (2.16.0-2 -> 2.16.0-2)
    [2012-08-06 22:11] upgraded lib32-gcc-libs (4.7.1-5 -> 4.7.1-5)
    [2012-08-06 22:11] upgraded lib32-libxdmcp (1.1.1-1 -> 1.1.1-1)
    [2012-08-06 22:11] upgraded lib32-libxau (1.0.7-1 -> 1.0.7-1)
    [2012-08-06 22:11] upgraded lib32-libxcb (1.8.1-2 -> 1.8.1-2)
    [2012-08-06 22:11] upgraded lib32-libx11 (1.5.0-1 -> 1.5.0-1)
    [2012-08-06 22:11] upgraded lib32-libxext (1.3.1-1 -> 1.3.1-1)
    [2012-08-06 22:11] upgraded lib32-libxrender (0.9.7-1 -> 0.9.7-1)
    [2012-08-06 22:11] upgraded lib32-alsa-lib (1.0.25-1 -> 1.0.25-1)
    [2012-08-06 22:11] upgraded lib32-libstdc++5 (3.3.6-6 -> 3.3.6-6)
    [2012-08-06 22:11] upgraded lib32-libxv (1.0.7-1 -> 1.0.7-1)
    [2012-08-06 22:11] upgraded lib32-ncurses (5.9-1 -> 5.9-1)
    [2012-08-06 22:11] upgraded lib32-openal (1.14-1 -> 1.14-1)
    [2012-08-06 22:11] upgraded lib32-sdl (1.2.15-2 -> 1.2.15-2)
    [2012-08-06 22:11] upgraded lib32-zlib (1.2.7-1 -> 1.2.7-1)
    [2012-08-06 22:11] upgraded swt (3.7.2-1 -> 3.7.2-1)
    [2012-08-06 22:11] Running 'pacman -S gcc-multilib gcc-libs-multilib binutils-multilib libtool-multilib lib32-readline lib32-glibc lib32-zlib'
    [2012-08-06 22:12] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.u2K/lib32-libusb-1.0.9-1-x86_64.pkg.tar.xz'
    [2012-08-06 22:12] installed lib32-libusb (1.0.9-1)
    [2012-08-06 22:12] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.ENc/lib32-libusb-compat-0.1.4-2-x86_64.pkg.tar.xz'
    [2012-08-06 22:12] installed lib32-libusb-compat (0.1.4-2)
    [2012-08-06 22:16] Running 'pacman -S ps3mediaserver'
    [2012-08-06 22:17] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.WIi/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-06 22:17] upgraded pms (1.60.0-1 -> 1.60.0-2)
    [2012-08-06 22:18] Running 'pacman -Syu'
    [2012-08-06 22:18] synchronizing package lists
    [2012-08-06 22:18] starting full system upgrade
    [2012-08-06 22:18] Running 'pacman -Syu'
    [2012-08-06 22:18] synchronizing package lists
    [2012-08-06 22:18] starting full system upgrade
    [2012-08-06 22:20] upgraded bison (2.6-1 -> 2.6.2-1)
    [2012-08-06 22:20] upgraded chromium (20.0.1132.57-2 -> 21.0.1180.57-1)
    [2012-08-06 22:20] upgraded libldap (2.4.31-4 -> 2.4.32-1)
    [2012-08-06 22:20] upgraded krb5 (1.10.2-2 -> 1.10.2-3)
    [2012-08-06 22:20] upgraded cifs-utils (5.5-1 -> 5.6-2)
    [2012-08-06 22:20] upgraded cryptsetup (1.4.3-1 -> 1.5.0-1)
    [2012-08-06 22:20] upgraded curl (7.26.0-1 -> 7.27.0-1)
    [2012-08-06 22:20] upgraded flex (2.5.36-1 -> 2.5.37-1)
    [2012-08-06 22:20] upgraded fuse (2.9.0-1 -> 2.9.1-1)
    [2012-08-06 22:20] upgraded git (1.7.11.3-1 -> 1.7.11.4-1)
    [2012-08-06 22:20] upgraded gnutls (3.0.21-2 -> 3.0.22-1)
    [2012-08-06 22:20] upgraded hwids (20120711-1 -> 20120730-1)
    [2012-08-06 22:20] upgraded nvidia-utils (302.17-1 -> 304.32-1)
    [2012-08-06 22:20] upgraded lib32-nvidia-utils (302.17-1 -> 304.32-1)
    [2012-08-06 22:20] upgraded libcups (1.5.4-1 -> 1.6.1-2)
    [2012-08-06 22:20] upgraded libmysqlclient (5.5.25.a-1 -> 5.5.27-1)
    [2012-08-06 22:20] upgraded libsystemd (187-2 -> 187-4)
    [2012-08-06 22:20] upgraded libthai (0.1.17-1 -> 0.1.18-1)
    [2012-08-06 22:20] upgraded systemd-tools (187-2 -> 187-4)
    [2012-08-06 22:20] upgraded mkinitcpio (0.9.2-2 -> 0.10-1)
    [2012-08-06 22:20] >>> Updating module dependencies. Please wait ...
    [2012-08-06 22:20] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-08-06 22:20] ==> Building image from preset: 'default'
    [2012-08-06 22:20] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-08-06 22:20] ==> Starting build: 3.4.7-1-ARCH
    [2012-08-06 22:20] -> Running build hook: [base]
    [2012-08-06 22:20] -> Running build hook: [udev]
    [2012-08-06 22:20] -> Running build hook: [autodetect]
    [2012-08-06 22:20] -> Running build hook: [pata]
    [2012-08-06 22:20] -> Running build hook: [scsi]
    [2012-08-06 22:20] -> Running build hook: [sata]
    [2012-08-06 22:20] -> Running build hook: [filesystems]
    [2012-08-06 22:20] -> Running build hook: [usbinput]
    [2012-08-06 22:20] -> Running build hook: [fsck]
    [2012-08-06 22:20] ==> Generating module dependencies
    [2012-08-06 22:20] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-08-06 22:20] ==> Image generation successful
    [2012-08-06 22:20] ==> Building image from preset: 'fallback'
    [2012-08-06 22:20] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-08-06 22:20] ==> Starting build: 3.4.7-1-ARCH
    [2012-08-06 22:20] -> Running build hook: [base]
    [2012-08-06 22:20] -> Running build hook: [udev]
    [2012-08-06 22:20] -> Running build hook: [pata]
    [2012-08-06 22:20] -> Running build hook: [scsi]
    [2012-08-06 22:20] -> Running build hook: [sata]
    [2012-08-06 22:20] -> Running build hook: [filesystems]
    [2012-08-06 22:20] -> Running build hook: [usbinput]
    [2012-08-06 22:20] -> Running build hook: [fsck]
    [2012-08-06 22:20] ==> Generating module dependencies
    [2012-08-06 22:20] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-08-06 22:20] ==> Image generation successful
    [2012-08-06 22:20] upgraded linux (3.4.6-1 -> 3.4.7-1)
    [2012-08-06 22:20] upgraded mysql-clients (5.5.25.a-1 -> 5.5.27-1)
    [2012-08-06 22:20] upgraded mysql (5.5.25.a-1 -> 5.5.27-1)
    [2012-08-06 22:20] upgraded nspr (4.9.1-1 -> 4.9.2-1)
    [2012-08-06 22:20] upgraded nvidia (302.17-4 -> 304.32-1)
    [2012-08-06 22:20] upgraded tzdata (2012d-1 -> 2012e-1)
    [2012-08-06 22:20] upgraded xf86-input-evdev (2.7.1-1 -> 2.7.2-1)
    [2012-08-06 22:23] Running 'pacman -S openjdk'
    [2012-08-06 22:23] Running 'pacman -S jdk7-openjdk'
    [2012-08-06 22:24] upgraded jdk7-openjdk (7.u5_2.2.1-1 -> 7.u5_2.2.1-1)
    [2012-08-06 22:24] Running 'pacman -S jre7-openjdk'
    [2012-08-06 22:24] upgraded jre7-openjdk (7.u5_2.2.1-1 -> 7.u5_2.2.1-1)
    [2012-08-06 22:25] Running 'pacman -R pms'
    [2012-08-06 22:25] warning: /opt/pms/PMS.conf saved as /opt/pms/PMS.conf.pacsave
    [2012-08-06 22:25] removed pms (1.60.0-2)
    [2012-08-06 22:26] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.QTF/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-06 22:26] installed pms (1.60.0-2)
    [2012-08-06 22:26] Running 'pacman -S vlc'
    [2012-08-06 22:26] installed libdvbpsi (0.2.2-1)
    [2012-08-06 22:26] installed sdl_image (1.2.12-2)
    [2012-08-06 22:26] installed libdvdread (4.2.0-1)
    [2012-08-06 22:26] installed libdvdnav (4.2.0-2)
    [2012-08-06 22:26] installed libkate (0.4.1-3)
    [2012-08-06 22:26] installed libtiger (0.3.4-3)
    [2012-08-06 22:26] installed libebml (1.2.2-2)
    [2012-08-06 22:26] installed libmatroska (1.3.0-2)
    [2012-08-06 22:26] installed zvbi (0.2.33-4)
    [2012-08-06 22:26] installed taglib (1.7.2-2)
    [2012-08-06 22:26] installed libmpcdec (1.2.6-3)
    [2012-08-06 22:26] installed libupnp (1.6.17-1)
    [2012-08-06 22:26] installed libshout (1:2.3.0-1)
    [2012-08-06 22:26] installed libmpeg2 (0.5.1-3)
    [2012-08-06 22:26] installed libmodplug (0.8.8.4-1)
    [2012-08-06 22:26] installed ttf-freefont (20120503-1)
    [2012-08-06 22:26] installed vlc (2.0.3-2)
    [2012-08-06 22:26] Running 'pacman -S lib32-gcc-libs lib32-glibc'
    [2012-08-06 22:26] upgraded lib32-glibc (2.16.0-2 -> 2.16.0-2)
    [2012-08-06 22:26] upgraded lib32-gcc-libs (4.7.1-5 -> 4.7.1-5)
    [2012-08-07 11:44] Running 'pacman --noconfirm --asdeps -S -- pacman-color'
    [2012-08-07 11:44] installed pacman-color (4.0.3-1)
    [2012-08-07 11:44] Running 'pacman -U packer-color-20120807-1-any.pkg.tar.xz'
    [2012-08-07 11:44] installed packer-color (20120807-1)
    [2012-08-07 11:50] Running 'pacman-color -S packer'
    [2012-08-07 15:50] Running 'pacman -Syyu'
    [2012-08-07 15:50] synchronizing package lists
    [2012-08-07 15:50] starting full system upgrade
    [2012-08-07 15:50] upgraded libwbclient (3.6.6-1 -> 3.6.7-1)
    [2012-08-07 15:51] upgraded smbclient (3.6.6-1 -> 3.6.7-1)
    [2012-08-07 15:51] Running 'pacman -Sy'
    [2012-08-07 15:51] synchronizing package lists
    [2012-08-07 15:51] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.77j/rutorrent-plugins-3.4-3-any.pkg.tar.xz'
    [2012-08-07 15:51] upgraded rutorrent-plugins (3.4-2 -> 3.4-3)
    [2012-08-07 15:51] Running 'pacman -Sy'
    [2012-08-07 15:51] synchronizing package lists
    [2012-08-07 16:02] Running 'pacman-color -S crontab'
    [2012-08-07 16:02] Running 'pacman-color -S cronjob'
    [2012-08-07 16:02] Running 'pacman-color -S cron'
    [2012-08-07 16:02] upgraded cronie (1.4.8-2 -> 1.4.8-2)
    [2012-08-07 16:04] Running 'pacman-color -S cronie'
    [2012-08-07 16:05] Running 'pacman-color -S esmtp procmail'
    [2012-08-07 16:05] installed libesmtp (1.0.6-2)
    [2012-08-07 16:05] installed esmtp (1.2-4)
    [2012-08-07 16:05] installed procmail (3.22-5)
    [2012-08-08 12:10] Running 'pacman -Sy'
    [2012-08-08 12:10] synchronizing package lists
    [2012-08-08 12:12] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.82R/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-08 12:12] upgraded pms (1.60.0-2 -> 1.60.0-2)
    [2012-08-08 18:02] Running 'pacman -R pms'
    [2012-08-08 18:02] removed pms (1.60.0-2)
    [2012-08-08 18:02] Running 'pacman -Sy'
    [2012-08-08 18:02] synchronizing package lists
    [2012-08-08 18:03] Running 'pacman -U /tmp/yaourt-tmp-shauder/PKGDEST.BkP/pms-1.60.0-2-x86_64.pkg.tar.xz'
    [2012-08-08 18:03] installed pms (1.60.0-2)
    [2012-08-08 18:17] Running 'pacman -S extra/icedtea-web'
    [2012-08-08 18:17] Running 'pacman -S extra/icedtea-web-java7'
    [2012-08-08 18:18] installed icedtea-web-java7 (1.2.1-2)
    [2012-08-08 18:36] Running 'pacman -R pms'
    [2012-08-08 1

    shadowlurker wrote:
    It's problem in pam configuration files. You need to create files useradd, userdel, groupadd and groupdel in /etc/pam.d/ directory with following content:
    auth sufficient pam_rootok.so
    auth required pam_unix.so
    account required pam_unix.so
    session required pam_unix.so
    password required pam_permit.so
    You da man! I also had to add grpconv and chage to get filesystem working but all seems well now thanks!
    Doug piston had me try something that I think will help anyone else who has this problem.  Try re-installing pambase and shadow.  It generated back most of any I was missing.
    Last edited by shauder (2012-11-03 00:55:19)

Maybe you are looking for