[SOLVED]makepkg/bsdtar not packing correctly

Hi, when I try to install sabnzbd-svn from the AUR, the package is not created as it should be. It fails to maintain the directory hierarchy: It should look like:
/a
/b
/c/x/y/z/...
Instead it looks like this:
/a
/b
/c/x/y/z/...
/x/...
/y/...
/z/...
Where /{xyz} contain some but not all files of the following directories.
A manual bsdtar -cf test.tar * .INSTALL .PKGINFO gives the same results. tar -cf test.tar * .INSTALL .PKGINFO works fine though. Now it is getting a little weird: tar -czf test.tar.gz * .INSTALL .PKGINFO works only sometimes. If it works bsdtar/gz works too. But plain bsdtar seems to fail everytime ...
Can anyone replicate this or is this something in my configuration?
Last edited by lzs (2009-06-30 14:42:20)

What exactly do you mean?
I build the package just fine, here[1] is the link to the output of
pacman -Qpl sabnzbd-svn-2653-1-i686.pkg.tar.gz
[1] http://ark.asengard.net/upload/sabnzbd_file_list.txt

Similar Messages

  • [SOLVED] GTK3 Themes Not Rendering Correctly in OpenBox

    So, I've been trying to find a way to fix this issue for a while now. In OpenBox, GTK3 applications do not display correctly when using a theme based on Adwaita. An example theme would be Elegant Brit. Menus tend to shift a pixel over when highlighted. Buttons display as all white, or as buttons from a different theme. Dunno what causes this, but it's rather annoying. I have the "gnome-standard-themes" packages installed, but this resolves nothing. When starting a GTK3 application, these types of errors are shown.
    (transmission-gtk:1274): Gtk-CRITICAL **: _gtk_css_section_to_string: assertion `section != NULL' failed
    ** (transmission-gtk:1274): WARNING **: Can't load fallback CSS resource: (null)Failed to import: The resource at '/org/gnome/adwaita/gtk-fallback.css' does not exist
    Here's an screnshot depicting what I'm talking about. http://i.imgur.com/ZkLiZ.png
    I apologize if there's a solution to this somewhere already posted. I've been through the Wiki trying to find the solution, but I've really found nothing useful. Also, I already have "gtk-engines" and "lib32-gtk-engines" installed.
    Last edited by Joomla12 (2012-11-05 02:26:36)

    This great discussion about GTK3 and GNOME3 development explains an awful lot. It seems we are heading for one GTK3 theme only - THE theme - as dictated by determined developers attached to certain companies who will be nameless! I almost started tinkering with tweaks to GTK3 themes and I'm now so glad I didn't waste my time.

  • [SOLVED] UK keyboard not mapped correctly.

    Hi, all.
    've just done an install and my UK/GB keyboard is not mapped correctly.
    The rest of the xconfig is fine, but whether I use "uk" or "gb", I still get a US mapping.  I have checked to make sure the relevant line isn't hashed out (#).
    When I
    tail /var/log/X.....
    , it does mention something about the US, but any mention of the US is disable (#) in the config.  Could it be that something is automatically loading it for me?
    I should also mention that I have another install of Arch that is sharing the same KVM and this doesn't exhibit the problem.
    Any help appreciated.
    Cheers,
    Chris.
    Last edited by chris_debian (2009-03-11 21:27:30)

    toad wrote:Bizarre, I don't get that. I had tons of problems until I found out that what is usually uk xorg had as gb, but everything was fine after that...
    That's what happened to me on my other box and that was fine, too.
    I'll have a look at the link that was posted.
    Thanks,
    Chris.

  • [SOLVED]Makepkg does not create package

    I downloaded the b43 firmware from the AUR (https://aur.archlinux.org/packages.php?ID=21690) and I executed makepkg -S, but there isn't any file that I can install.
    Last edited by giwrg98 (2012-04-17 14:29:04)

    iAmAhab wrote:
    /dev/zero wrote:
    I'm guessing you're going to hate this, but it's appropriate:
    RTFM
    And if that doesn't work, look up AUR on the wiki.
    I'm not familiar with this particular abbreviation
    So google: http://en.wikipedia.org/wiki/RTFM :-)
    iAmAhab wrote:
    but I'm gonna go out on a limb and guess:
    "Read The Fucking Manual" ?
    Or 'read the fine manual' / 'read the friendly manual'.
    giwrg98, if things are working now, please remember to mark the thread as solved.

  • [Solved] Nested setActionListener not working correctly.

    Hi,
    I'm having a situation where I have to load some xml and display the values on the screen. The results can be filtered by selecting a value in a selectOneChoice component. Please consider the example below, which is a reproducible scenario, just to show the 'wrong' (?) behavior.
    The ValueChange bean initialize some lists and handles the selection change of the selectOneChoice component on the .jspx page. The onValueChange method will 'filter' the data everytime a selection change. The filterItems method will clear the personItems list and add a new object to the list, depending on the selected value:
    public class ValueChange {
        private List someSelectItems;
        private String selectedValue;
        private List personItems;
        private Person person1 = new Person("1", "Larry", "Ellison");
        private Person person2 = new Person("2", "Bill", "Gates");
        private Person person3 = new Person("3", "Steve", "Jobs");
        public ValueChange() {
         System.out.println(this.getClass() + " Init");
         this.someSelectItems = new ArrayList();
         someSelectItems.add(new SelectItem("1", "Oracle"));
         someSelectItems.add(new SelectItem("2", "MicroSoft"));
         someSelectItems.add(new SelectItem("3", "Apple"));
         this.personItems = new ArrayList();
         this.personItems.add(person1);
        public List getSomeSelectItems() {
         // Fill this list.
         return someSelectItems;
        public void onValueChange(ValueChangeEvent valueChangeEvent) {
         System.out.println("Current Class: ValueChange - Current Method: onDocumentLanguageValueChange");
         if (valueChangeEvent != null) {
             String vValue = valueChangeEvent.getNewValue().toString();
             filterItems(vValue);
        public void setSelectedValue(String selectedValue) {
         this.selectedValue = selectedValue;
        public String getSelectedValue() {
         return selectedValue;
        private void filterItems(String pValue) {
         this.personItems.clear();
         if (pValue.equals("1")) {
             this.personItems.add(person1);
         } else if (pValue.equals("2")) {
             this.personItems.add(person2);
         } else if (pValue.equals("3")) {
             this.personItems.add(person3);
        public void setPersonItems(List personItems) {
         this.personItems = personItems;
        public List getPersonItems() {
         return personItems;
    }The person class is just a simple bean containing some attributes + getters and setters:
    public class Person {
        private String id;
        private String firstname;
        private String lastname;
        public Person(String pId, String pFirstname, String pLastname) {
         this.id = pId;
         this.firstname = pFirstname;
         this.lastname = pLastname;
        public void setId(String id) {
         this.id = id;
        public String getId() {
         return id;
        public void setFirstname(String firstname) {
         this.firstname = firstname;
        public String getFirstname() {
         return firstname;
        public void setLastname(String lastname) {
         this.lastname = lastname;
        public String getLastname() {
         return lastname;
    }On the start page of the example, the selectOneChoice will be rendered + the data matching to the selected item. I'm using a commandLink to open a detail page. The commandLink contains a nested af:setActionListener which should set the whole current person instance to a sessionScope variable. (But his seems to fail.]
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:head title="myPage">
            <meta http-equiv="Content-Type"
                  content="text/html; charset=windows-1252"/>
          </afh:head>
          <afh:body>
            <h:form id="myPageForm">
              <h:panelGrid>
                <af:selectOneChoice id="selectValue" autoSubmit="true" value="1"
                                    valueChangeListener="#{valueChange.onValueChange}">
                  <f:selectItems value="#{valueChange.someSelectItems}"/>
                </af:selectOneChoice>
                <af:panelList partialTriggers="selectValue">
                  <af:forEach items="#{valueChange.personItems}" var="person">
                    <af:commandLink text="#{person.firstname} (#{person.id})"
                                    action="showdetail">
                      <af:setActionListener from="#{person}"
                                            to="#{sessionScope.person}"/>
                    </af:commandLink>
                  </af:forEach>
                </af:panelList>
              </h:panelGrid>
            </h:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root>The detail page should just read the firstname of the person instance on sessionScope, but it always shows the same name.
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:head title="myDetailPage">
            <meta http-equiv="Content-Type"
                  content="text/html; charset=windows-1252"/>
          </afh:head>
          <afh:body>
            <h:form>
              <af:panelForm maxColumns="1">
                <af:outputText value="#{sessionScope.person.firstname}"/>
                <af:commandLink text="Back" action="back"/>
              </af:panelForm>
            </h:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root>
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
      <managed-bean>
        <managed-bean-name>valueChange</managed-bean-name>
        <managed-bean-class>be.contribute.valuechange.view.beans.ValueChange</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>
      <application>
        <default-render-kit-id>oracle.adf.core</default-render-kit-id>
      </application>
      <navigation-rule>
        <from-view-id>/myPage.jspx</from-view-id>
        <navigation-case>
          <from-outcome>showdetail</from-outcome>
          <to-view-id>/myDetailPage.jspx</to-view-id>
        </navigation-case>
      </navigation-rule>
      <navigation-rule>
        <from-view-id>/myDetailPage.jspx</from-view-id>
        <navigation-case>
          <from-outcome>back</from-outcome>
          <to-view-id>/myPage.jspx</to-view-id>
        </navigation-case>
      </navigation-rule>
    </faces-config>I can always send this sample application by mail, just drop a reply or send me a message (koen [dot] verhulst [at] contribute [dot] be )
    JDeveloper 10.1.3.3
    Thanks in advance,
    Koen Verhulst

    It seems that it has something to do with the fact that I set the value of the selectOneChoice to 1.
    <af:selectOneChoice id="selectValue" autoSubmit="true" value="1"
                                    valueChangeListener="#{valueChange.onValueChange}">
                  <f:selectItems value="#{valueChange.someSelectItems}"/>
    </af:selectOneChoice>I modified the value attribute to:
    value="#{valueChange.selectedValue}"Where selectedValue is an attribute in my ValueChange class, containing a default value. Getters and setters are also generated.
    private String selectedValue = "1"When I run the application again, after making these changes, I'm able to pass the correct data to the detail page. But: as soons as I select the 'default value' in the selectOneChoice, no valueChange is detected and thus my data does not gets filtered.
    Since the valueChange instance is a request-scoped bean, a value change is not detected because the current value equals the default value (question: am I right here?).
    Setting the bean to session scope let the example fully works.
    Although it works, I think it should be better to let the bean on request scope and stored a 'selected' value attribute on the sessionScope.
    Thanks,
    Koen Verhulst

  • SOLVED:Tabs is not displayed correctly?

    Gang,
    I have a very strange problem which I can't really understand why APEX behaves it way it does (well I've probably told APEX to do so, but I can't understand why).
    I have 3 Parent Tabs:
    T_PAGE1
    T_REPORTS
    T_ADMIN
    All of the Parent Tabs have one or more Standard Tabs associated to them. And each Standard Tab is associated with one or more pages.
    But the strange thing is that I have associated page 3 with a std tab which then belongs to the T_REPORTS Parent Tab. If I run the page the Parent Tabs are not displayed at all, but the Standard Tab is (and also the breadcrumb). I did assign the tabs to the page when I created the page and I have retried the same thing a couple of times with the same result.
    And if I run any other page in my application I can see the Parent Tabs and if I click on the Parent Tab (T_REPORTS) the Parent Tabs disappears and I only see the std tab.
    Any ideas or is this completely confusing for you as it is for me ???
    Cheers,
    Andy
    Message was edited by: A Tael
    I should really make myself a martini and stop thinking that I can build APEX apps. The issue was that I had assigned my T_REPORTS Tab with the wrong Parent Tab. Doh!

    Glad your first experience on the Arch forums was successful. Don't forget to edit the thread title to make it say "Solved".

  • [SOLVED] Journalctl is not formatting correctly and is not in color.

    My user is a member of adm, but when I run journalctl it just prints out the "ESC[1;39m" instead of formating it in bold or red for errors.
    example line:
    Nov 04 12:16:24 red5 kernel: ESC[1;39mLinux version 3.6.5-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Wed Oct 31 20:57:39 CET 2012ESC[0m
    If I run it as sudo journalctl it formats everything as expected. I'm using xterm and less.
    Last edited by greg5 (2012-11-06 00:39:13)

    I figured out at least a workaround, I'm not sure if this is the best way to do things, but so far it's the only thing that's worked.
    Here's my pager and less environment variables from .bashrc:
    export LESS='-j4aR'
    export PAGER="less"
    The option that fixed it is -R, here's what it says on the less man page:
    -R or --RAW-CONTROL-CHARS
    Like -r, but only ANSI "color" escape sequences are output in "raw" form. Unlike -r, the screen appearance is maintained correctly in most cases. ANSI "color" escape sequences are sequences
    of the form:
    ESC [ ... m
    where the "..." is zero or more color specification characters For the purpose of keeping track of screen appearance, ANSI color escape sequences are assumed to not move the cursor. You can
    make less think that characters other than "m" can end ANSI color escape sequences by setting the environment variable LESSANSIENDCHARS to the list of characters which can end a color escape
    sequence. And you can make less think that characters other than the standard ones may appear between the ESC and the m by setting the environment variable LESSANSIMIDCHARS to the list of
    characters which can appear.
    I'm still not sure why I need to do this on my desktop and not on any other machines.

  • [SOLVED] Chrome Profile Not Opening Correctly

    When I try to start Chrome, I get a message that says it was unable to open my profile correctly. I have been using profile-sync-daemon, but after unsuccessfully trying to fix this problem, I uninstalled psd, uninstalled chrome, deleted the ~/.config/google-chrome and ~/.config/google-chrome-backup, and restarted, still with no change at all. Is there anything else I can try?
      Thanks, ~UnsolvedCypher
    Last edited by UnsolvedCypher (2013-09-03 19:20:10)

    Here is the exact error message:
    Your profile could not be opened correctly.
    Some features may be unavailable. Please check that the profile exists and you have permission to read and write its contents.
    I can't believe I didn't think of starting from terminal, but I did after reading your suggestions. Here is the output:
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10626:0903/141023:ERROR:web_data_service_backend.cc(55)] Cannot initialize the web database: 1
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10602:0903/141023:ERROR:browser_main_loop.cc(212)] Gdk: gdk_window_set_icon_list: icons too large
    [10602:10656:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10656:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10656:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10656:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10656:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10656:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10602:0903/141023:ERROR:browser_main_loop.cc(212)] Gdk: gdk_window_set_icon_list: icons too large
    [10602:10602:0903/141023:ERROR:browser_main_loop.cc(212)] Gdk: gdk_window_set_icon_list: icons too large
    [10602:10602:0903/141023:ERROR:browser_main_loop.cc(212)] Gdk: gdk_window_set_icon_list: icons too large
    [10602:10602:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10602:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10602:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10602:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10602:0903/141023:ERROR:password_store_factory.cc(110)] Could not initialize login database.
    [10602:10602:0903/141023:ERROR:browser_main_loop.cc(212)] Gdk: gdk_window_set_icon_list: icons too large
    [10602:10602:0903/141023:ERROR:profile_sync_service.cc(1242)] History Delete Directives, Sync Error: Delete directives not supported with encryption.
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: table HostQuotaTable already exists
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10626:0903/141023:ERROR:quota_database.cc(464)] Failed to open the quota database.
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10645:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10626:0903/141023:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10657:0903/141024:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10657:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10657:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10657:0903/141024:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10657:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10657:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141024:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141025:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/141026:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10642:0903/141033:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10642:0903/141033:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10642:0903/141033:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10642:0903/141033:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10642:0903/141033:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10642:0903/141033:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142528:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142536:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142540:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142543:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142544:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142557:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142608:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142610:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142610:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142610:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142610:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142610:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142610:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142611:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142612:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 778, errno 0: disk I/O error
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: no such table: meta
    [10602:10628:0903/142628:ERROR:connection.cc(799)] sqlite error 1, errno 0: SQL logic error or missing database
    Also, I have added the result of the deletion to the original post, thanks for catching that!

  • [SOLVED]find command not working correctly new version of findutils...

    After upgrading my findutils from 4.2.33-1 to 4.4.0-1, it is not working the way it used to. I downgraded to the old one and it is working fine again. However, I am wondering why the newer version can't do what I want it to...
    Typically I run the following script to apply mp3gain to my music collection (albums and individual songs):
    #!/bin/bash
    echo Albums...
    find . -mindepth 3 -iname '*.mp3' -execdir mp3gain -k -a {} +
    echo Single tracks...
    find . -maxdepth 2 -iname '*.mp3' -exec mp3gain -k -r {} +
    On the old version, for the albums, the "find" function works as expected by examining the entire album before applying gain. With the new findutils version, the albums are being analysed song-by-song. I suppose since the new version of findutils, there is just a different method to do what I wanted before with -execdir. Does anyone know how to do it on the new version?
    Last edited by tony5429 (2008-07-19 06:29:41)

    Cool. Thanks for the suggestion. I ended up going with...
    #!/bin/bash
    echo Albums...
    for album in */*
    do
    cd "$album" > /dev/null 2>&1
    if [ $? = 0 ]
    then
    mp3gain -k -a *.mp3
    cd ..
    cd ..
    fi
    done
    echo Single tracks...
    find . -maxdepth 2 -iname '*.mp3' -exec mp3gain -k -r {} +
    exit 0

  • [solved] makepkg do not recognize vcs fragments in pkgbuild

    Just try to build a package from certain git branch and seem to discover that fragments in pkgbuild seems to be ignored. Can anyone confirm this issue?
    I tried pacman 4.2.1 and also build from git repo as of commit 3d45293. Neither of them work. Test case I tried includes mesa-git in aur (by changing only branch from "master" to "amdgpu") and https://gist.github.com/tomty89/1b386c293e43f93663b1.
    Also seems it's not limited to git but also hg (and maybe others).
    Last edited by tom.ty89 (2015-05-21 19:45:21)

    Seems I made mistake, the required fragment would be in srcdir.

  • [SOLVED] Keyboard layout not setting correctly after gnome 3.14 update

    Hey all,
    After the gnome 3.14 update my keyboard appears to be reverting to US when I want to have it set to UK layout. It was fine before the update, and I have i3 & XFCE installed and for both of those my keyboard layout is getting set to UK just fine, so it appears to be just the gnome 3.14 update that is the problem.
    Here is my contents of /etc/X11/xorg.conf.d/10-keyboard.conf:
    Section "InputClass"
    Identifier "Keyboard Defaults"
    MatchIsKeyboard "yes"
    Option "XkbLayout" "gb"
    EndSection
    Anyone have any ideas what the problem could be?
    Last edited by Morgy (2014-10-18 17:18:09)

    My situation showed an extra issue related to this change.
    After the upgrade I started getting two layouts (us,us) instead of just one (us).
    $ setxkbmap -query
    rules: evdev
    model: pc104
    layout: us,us
    variant: ,
    options: ctrl:nocaps
    That broke my variant setting, which was altgr-intl (set via /etc/X11/xorg.conf.d/10-evdev.conf). I was able to manually set that to "altgr-intl,altgr-intl" (with setxkbmap), and that worked.
    After adding an input source as described above, of "English (international AltGr dead keys)", everything started working again for my purposes, without manually running setxkbmap, but I still have the extra layout:
    $ setxkbmap -query
    rules: evdev
    model: pc104
    layout: us,us
    variant: altgr-intl,
    options: ctrl:nocaps
    Does anyone know a current method for completely disabling GNOME's keyboard management?
    (I've tried several things from Google, but nothing seems to work for the current version).

  • [SOLVED]Flash Player not functioning correctly.

    Hi all,
    I have recently updated my flash player to the 10.1 r53 using nspluginwrapper.
    when the flash movies load say on you tube, i can't pause maximize or use any controls, the movie just plays ,
    but on random videos the controls work!
    before i updated it worked fine, but before i roll back i would like to get the latest release working if i can.
    just wondering if any one knows the solution to this problem or are experiencing the same problems.
    Thanks
    Last edited by Arch_Adam (2010-08-04 19:35:39)

    Better solution: http://wiki.archlinux.org/index.php/Ins … t_register

  • Outlook web login screen not displaying correctly on Exchange 2007 service pack install

    Hello everyone,
    I believe our exchange server installed a service pack 3 update and after rebooting the server, we noticed that the Outlook web access login screen is not displaying correctly.  The page looks white with some black X's (I think that's where the
    pictures/background images used to be).  We tried to restart the ISS service with no luck.  I would appreciate any help you guys can provide.
    Thanks,
    Brian Kourdou

    Hi,
    I have seen this issue in another similar thread, that issue was solved by re-creating the OWA virtual directory.
    Please try the following steps to solve this issue.
    Open EMC, navigate to Server Configuration -> Client Access, under Outlook Web App tab, double-click owa (default web site) properties.
    Then check InternalURL, ExternalURL, Forms-Based Authentication settings ect
    Open EMS, use Get-OwaVirtualDirectory get the list of virtual directories and identify the directory which is giving the problem.
    Remove it with this command
    Remove-OwaVirtualDirectory “owa (Default Web Site)”
    Now create it again with the following command
    New-OwaVirtualDirectory -OwaVersion “Exchange2007″ -Name “owa (Default Web Site)”
    Then configure the “owa” virtual directory settings like InternalURL, ExternalURL, Forms-Based Authentications etc… & check the OWA by logging with some test users.
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • TS1717 Having trouble running iTunes version 11.0.2 on a Dell Laptop running Windows 7 Professional Service Pack 1.  Keep getting an error message "the software required for communicating with iPods and mobile phones was not installed correctly..." reinst

    Having trouble when I launch iTunes (version 11.0.2) on my Dell Laptop running Windows 7 Professional (service pack 1).  I get an error message indicating software required to communicate with iPod and mobile phones was not installed correctly.  Do you want iTunes to try to repair this for you?  I normally respond with OK and it immediately tells me "could not be repaired.  Please reinstall iTunes..."  I have done this a number of times to no avail.

    I also notice Quicktime is not getting installed at all.
    That one is normal nowadays (ever since the iTunes versions 10.5.x).
    The software required for communicating with iPods and mobile phones was not installed correctly. Do you want iTunes to try to repair this for you?
    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • [solved] NFS client will not work correctly

    I have all my $HOME on an NFS Server. So long I used suse and debian, now I want switch to arch but the nfs-client ist not working correctly:
    I start "portmap nfslock nfsd netfs" over rc.conf. When I do a "rpcinfo -p <ip-arch-system>" I got the following
    stefan:/home/stefan # rpcinfo -p 192.168.123.3
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100003    2   udp   2049  nfs
        100003    3   udp   2049  nfs
        100003    4   udp   2049  nfs
        100021    1   tcp  48988  nlockmgr
        100021    3   tcp  48988  nlockmgr
        100021    4   tcp  48988  nlockmgr
        100003    2   tcp   2049  nfs
        100003    3   tcp   2049  nfs
        100003    4   tcp   2049  nfs
        100005    3   udp    891  mountd
        100005    3   tcp    894  mountd
    As you see "status" is missing, so the statd is not running. It sould look like the result on my suse box:
    stefan:/home/stefan # rpcinfo -p 192.168.123.2
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100024    1   udp  32768  status
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100024    1   tcp  35804  status
        100021    1   tcp  35804  nlockmgr
        100021    3   tcp  35804  nlockmgr
        100021    4   tcp  35804  nlockmgr
    There is the "status" line and so the statd is running.
    How can I fix that problem, so that statd ist running on my arch box too?
    Last edited by stka (2007-06-10 15:59:48)

    The Problem ist solved.
    I use ldap for authentication. During the setup of the ldapclient I copied the nsswitch.ldap to nsswitch.conf. But the line for "hosts:" was:
    hosts:          dns ldap
    but in my dns ist no localhost entry. After I changed this line to:
    hosts:          files dns ldap
    everything was ok. The statd is now running and I can start to migrate to archlinux ;-)

Maybe you are looking for

  • Archiving object EC_PCA_ITM

    Hi, I need to archive data using archiving object EC_PCA_ITM. Now the condition is that in this archiving object, I need to restrict the data (to be archived) to company code 1030 (country US). As the company code field is not available in the select

  • How to handle IPortalComponent Session in Dynpage

    Hi Guys, I am using IPortalComponentSession object to hold the bean instances. Evey thing is working, if page is not idle for more than 20 min. If I access the page when the page is idle for more than 20 min, it is throwing Null pointer exception. Th

  • Help needed with accidentle keyboard shortcut: Solarized look to image

    Whilst working in Photoshop CS4 I have accidently pressed a shortcut on the keyboard on the PC which has created my image to look like the example below. I can't undo this and believe it to not be an affect but perhaps something to do with the channe

  • Dcmctl to stop/start cluster -- restart application server "busy"

    Hi, I am running two instances of 9iAS 9.0.2.x and 9.0.3 on two servers with a third being the infrastructure server. The 9.0.3 instances are clustered together. I'm using dcmctl to stop my cluster and start it again. We take the database offline nig

  • Not All Applications Appearing in iTunes

    Some of the apps that I have purchased appear in iTunes, but not all of them. How do I get all of them to appear?