[SOLVED] database file for multilib does not exist

Hey guys I ran into a problem today when I tried to install the proper packages I needed to use my wifi card. However when I tried to install it it gives me the error "database file for multilib does not exist" I can t seem to find out why I even tried chrooting into it and installing it that way with no luck. The package I tried to install was "pacman -S wireless_tools netcfg" thanks for the help guys you've been great.
Last edited by bdawg (2012-09-18 22:57:17)

bdawg wrote:
Ok so the whole output is as follows:
Warning: database file for 'multilib' does not exist
Error: failed to prepare transaction (could not find database)
And my Pacman.conf is blank
pacman.conf and Pacman.conf (with capital 'P') are two different files. Double-check this.
Are you running a 64-bit system?
Your /etc/pacman.conf should look like this: https://projects.archlinux.org/pacman.g … an.conf.in but with some repositories configured: https://wiki.archlinux.org/index.php/Pa … positories
Last edited by karol (2012-09-18 22:13:59)

Similar Messages

  • [SOLVED] ABS - nasm - install file (nasm.install) does not exist

    I was attempting to build the nasm package and I encountered the following error:
    ==> ERROR: install file (nasm.install) does not exist.
    When reviewing the PKGBUILD file there was a line in the header:
    install=nasm.install
    ArchWiki (PKGBUILD) explains the install directive
    The name of the .install script to be included in the package. pacman has the ability to store and execute a package-specific script when it installs, removes or upgrades a package. The script contains the following functions which run at different times
    I removed the install= line and everything appeared to work.  My question is... does anyone know if the install script it was expecting to find did anything special that is going to cause me grief going forward?
    Thx
    Last edited by dwardca (2013-07-06 04:43:41)

    I figured out what I did wrong.   I copied only the PKGBUILD file out of /var/abs/extra/nasm folder ..  the nasm.install was still in the folder.
    Explains why I couldn't find the answer on Google. 
    Last edited by dwardca (2013-07-06 04:44:13)

  • Ressource file LM00    99 does not exist

    Hi all,
    I am getting an error while running LM00 in internet service in tcode se80.
    The error is : "Ressource file LM00      99 does not exist"
    I have done all the settings in SICF, as given in Raja's blog:
    Running your first  ITS WebGUI application in SAP NetWeaver 04 ABAP Edition - NSP
    and activated all services but still getting an error and not able to execute the code. However other standard tcodes are executing successfully. Only this Tcode Lm00 is not running.
    I'd greatful to all of u to solve this issue.
    Thanks
    Puneet

    Hi,
    Basically my error while running standard internet service for LM00 is:-
    The URL http://server2.XXXXX.local:8000/sap/bc/gui/sap/its/lm00/ was not called due to an error.
    Note
    The following error text was processed in the system PRO : Internal Error
    The error occurred on the application server server2_PRO_00 and in the work process 0 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Module: %_CTL_OUTPUT_FLUSH of program SAPMSSYD
    Function: CALL_MESSAGE_SCREEN of program SAPLLMOB
    Form: ERROR_MESSAGE of program RLMENU
    Module: DYNAMIC_MENU_BUTTONS_TEXT of program RLMENU
    Form: CALL_SCREEN_MENU of program RLMENU
    START-OF-SELECTION of program RLMENU
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system PRO in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server server2_PRO_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server server2_PRO_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: ABHATTA -l: E -s: PRO -i: server2_PRO_00 -w: 0 -d: 20081204 -t: 103603 -v: TH_RES_FREE -e: Internal Error
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

  • Service to checkin file if it does not exist, else version the file

    Hi All,
    From java layer I use WEBDAV and use PUT command and this command creates a new file if it does not exist, and if the file exists it versions the existing file.
    I have developed a java component to unzip a folder and checkin all individual files and folders into UCM whenever a zip file is checked in.I would like similar feature in my UCM component.i.e whenever files are unzipped they should always be versioned if they exist.I use the below code,but it always creates a new file(even if file with same name exists in the same folder)
    m_binder.setEnvironment(SharedObjects.getEnvironment());
    m_binder.putLocal("dDocName","");
    m_binder.putLocal("IsAutoNumber", "true");
    m_binder.putLocal("AutoNumberPrefix", "olm_");
    m_binder.putLocal("IdcService","CHECKIN_NEW");
    m_binder.putLocal("dDocTitle",entityName);
    m_binder.putLocal("xCollectionID",parentId);
    m_binder.putLocal("dDocType", "Document");
    m_binder.putLocal("dSecurityGroup","Public");
    m_binder.putLocal("dDocAuthor","sysadmin");
    m_binder.putLocal("dCreateDate","");
    m_binder.putLocal("primaryFile", entryName);
    executeService(ws, m_binder,"sysadmin",true);
    So, I would like to know, if there is a service to achieve the same or is there a parameter I can add in m_binder.putLocal to achieve the same? OR am I suppose to query the UCM Database to check for existence of the file and if it exists I need to manually check out and check it in?
    Thanks,
    Shwetha

    Thanks Fabian and Ryan for your feedback.
    So I queried db to retrieve the ddocName and if no rows are returned my code checks in new file. But if rows are returned I checkout the file using CHECKOUT_BY_NAME and then checkin using CHECKIN_UNIVERSAL using same ddocName.
    Creating/checking in new file is successful.
    For existing files the checkout is successful.I also confirmed the file is checked out by querying documenthistory and ensuring a new row is created with dction = 'Check out'
    But post checkout when i try to re-check using CHECKIN_UNIVERSAL command, I receive the below exception
    intradoc.common.ServiceException: !csUnableToCheckIn,OLM_002103!csCheckinItemExists
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
    at intradoc.server.Service.buildServiceException(Service.java:2326)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2320)
    at intradoc.server.Service.createServiceException(Service.java:2315)
    What am I missing here?
    Code snippet:
    m_binder.setEnvironment(SharedObjects.getEnvironment());
    m_binder.putLocal("IsAutoNumber", "true");
    m_binder.putLocal("AutoNumberPrefix", "olm_");
    String docName = getDocname(ws, parentId, entityName);
    if(docName != null && docName.equals("FILENOTFOUND")) {
    System.out.println("Creating new file");
    System.out.println("parentId is "+ parentId);
    m_binder.putLocal("IdcService","CHECKIN_UNIVERSAL");
    m_binder.putLocal("dDocName","");
    m_binder.putLocal("dDocTitle",entityName);
    m_binder.putLocal("xCollectionID",parentId);
    m_binder.putLocal("dDocType", "Document");
    m_binder.putLocal("dSecurityGroup","Public");
    m_binder.putLocal("dDocAuthor","sysadmin");
    m_binder.putLocal ("doFileCopy", "1");
    m_binder.putLocal("dCreateDate","");
    m_binder.putLocal("primaryFile", entryName);
    executeService(ws, m_binder,"sysadmin",true);
    System.out.println("Created file successfully");
    }else{
    System.out.println("Check out file");
    System.out.println("parentId is "+ parentId);
    m_binder.putLocal("IdcService","CHECKOUT_BY_NAME");
    m_binder.putLocal("dDocName",docName);
    executeService(ws, m_binder,"sysadmin",true);
    System.out.println("File checked out successfully");
    System.out.println("Check in file");
    m_binder.putLocal("IdcService","CHECKIN_UNIVERSAL");
    m_binder.putLocal("dDocName",docName);
    m_binder.putLocal("dDocTitle",entityName);
    m_binder.putLocal("xCollectionID",parentId);
    m_binder.putLocal("dDocType", "Document");
    m_binder.putLocal("dSecurityGroup","Public");
    m_binder.putLocal("dDocAuthor","sysadmin");
    m_binder.putLocal ("doFileCopy", "1");
    m_binder.putLocal("dCreateDate","");
    m_binder.putLocal("primaryFile", entryName);
    executeService(ws, m_binder,"sysadmin",true);
    System.out.println("Checked in file successfully");
    public String getDocname(Workspace ws, String folderId, String originalName)
    throws DataException,ServiceException
    System.out.println("Entered getDocname");
    String val = new String("FILENOTFOUND");
    String sql = "select a.ddocname from documenthistory a, docmeta b, documents d " +
    "where a.did = b.did and a.did = d.did and d.DORIGINALNAME = '" + originalName +
    "' and b.xcollectionid = '" + folderId + "'";
    System.out.println("sql query is : " + sql);
    ResultSet rs = ws.createResultSetSQL(sql);
    if(rs == null) {
    System.out.println("Resultset for getDocname is empty");
    throw new ServiceException("Resultset for getDocname is empty");
    DataResultSet result = new DataResultSet();
    result.copy(rs);
    if(result.getNumRows() >= 1) {
    result.first();
    val = result.getStringValue(0);
    System.out.println("ddocname is :" + val);
    return val;
    else {
    System.out.println("FILENOTFOUND");
    return val;
    Thanks,
    Shwetha

  • Data folder can not be opened in finding " AirPort Time Capsule " The operation can not be completed because the original item for " data" does not exist .

    Hi
    I have a " AirPort Time Capsule " (firmware 7.7.3) When I try to open the data folder in "finder". Then I got the message  " The operation can not be completed because the original item for " data" does not exist". I have a lot of data and I can understand why I get this message?
    Anyone who can help? Thanks..
    Br. Bo

    Get a USB drive of 2TB or more.. assuming your TC is 2TB. Either preformatted Mac or plug into your Mac and format it standard Mac OS Extended Journaled in disk utility.
    Do a full archive of the TC. You do this using airport utility. Do not click the erase disk.. I marked in green.. just the archive.. that is to backup the internal disk to the USB disk. It is not fast.. take it that the process will go at around 40-50GB/hr.
    Once you complete the archive .. it is a direct image of the data on your TC.. you can then plug it into your computer directly.. and then try and open the files you lost.. if you cannot open them.. open disk utility and fix the permissions.
    http://osxdaily.com/2015/01/13/repair-disk-permissions-mac-os-x/
    Or try the methods apple recommends..
    OS X Yosemite: Set permissions for items on your Mac
    It is possible to fix things on the USB drive because it is locally mounted.. but you cannot fix it on TC which is network drive.

  • File or Folder does not exist

    I'm having a wierd problem with a png image which generates an error in my script.
    I'm building a UI using the group constructor, here is the line code I'm using to load the image:
    myImg:Image{text:'',image:'(image_folder)/image.png', alignment:['left','top']}
    The script runs with one image but not another one which is also a png of the same dimensions, bit depth etc. For some reason I get the 'file or folder does not exist' error message. If I replace the image with a known good one the script works.
    I've re-generated the image a dozen times. Still no joy.
    I'm not a total noob, though I infrequently write scripts and am completely prepared to learn I've made totally maverick error.
    Any thoughts?

    myImg:Image{text:'',image:'(image_folder)/image.png', alignment:['left','top']}
    I'm assuming that "(image_folder)" is a placeholder or variable and you are concatinating for the file path to the image? When checking file paths for images or what not, I usually try...
    alert(File.decode(File.openDialog()));
    ...to verify that my path is correct. Sometimes there's a extra slash or something I am missing.

  • HDR Toning Error 48: File or Folder Does Not Exist

    After migrating to a new computer HDR Toning is no longer available.
    I get a pop-up: Error 48: File or Folder Does Not Exist
                             Line 11  -> $. evalFile(g_StackScriptFolderPath + "StackSupport.jsx");
    What's the fix for this, if anyone knows?
    Thanks.

    Go to //Applications/Adobe Photoshop [Version]/Presets/ Scripts/Stack Scripts Only/ and see if StackSupport.jsx is there. If it is not, uninstall and reinstall Photoshop to have it added back in. If it is there, first try recreating the Photoshop Preferences (hold down Command+Option+Shift while launching Photoshop).

  • Ruler Tool- Error 48: File or folder does not exist

    I am trying to use the new RULER TOOL in CS5 (64-bit mode) running 10.6.4 and I get the following error:
    Error 48: File or folder does not exist.
    Line: 31
    ->  $.evalFile( g_StackScriptFolderPath + "Geometry.jsx");
    Any ideas?

    i'm getting the exact error using Windows XP with CS5.5
    error 48: file or folder does not exist
    line: 31
    -> $.evalFile(g_StackScriptFolderPath + "Geometry.jsx");
    HELP!!!
    someone
    hello ... anyone out there?
    how do we get support for this error?
    e

  • Endpoint Protection error: The source folder for content does not exist.

    I have a single SCCM 2012 SP1 CU4 server running on Windows Server 2012.
    I have been using this for a little more than a month for Endpoint Protection and Windows Updates.
    I just recently started seeing that my Endpoint Deployment Package has Failed.  I click on "Content Status" and select the Endpoint package (which again shows Failed).  I click on "View Status" and I get this
    message in the "Error" tab:
    The source folder for content does not exist.
    The Asset Details point to the exact location  that does not exist:
    The source directory "\\<server>\updates\endpoint\6bd81fde-3a3f-4aa9-bf70-ba007891ca68" for package "<package>" does not exist. 
    I didn't change anything related to this, and that directory path (\\server\updates\endpoint) is
    shared and is populated with a lot of other folders. 
    Is this possibly just a bad update file?  Should I manually create that sub-folder that it says is missing?
    Any help would be great!  Thanks!

    Thanks for the quick reply, Torsten.  (I often forget which logs to check for certain things).
    There are six lines (3 errors -- in italics below) in the log around the same time frame.  They read:
    The source directory \\sccm-corp\updates\endpoint\6bd81fde-3a3f-4aa9-bf70-ba007891ca68 doesn't exist or the SMS service cannot access it, Win32 last error = 2    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM  
     5920 (0x1720)
    STATMSG: ID=2306 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SCCM-Corp.pdcarea.lcl SITE=PDC PID=6008 TID=5920 GMTDATE=Tue May 27 16:54:46.962 2014 ISTR0="\\sccm-corp\updates\endpoint\6bd81fde-3a3f-4aa9-bf70-ba007891ca68" ISTR1="PDC00063"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="PDC00063"    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    Failed to take snapshot of one or more contents in package PDC00063    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    CDistributionSrcSQL::UpdateAvailableVersion PackageID=PDC00063, Version=10, Status=2302    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    STATMSG: ID=2302 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SCCM-Corp.pdcarea.lcl SITE=PDC PID=6008 TID=5920 GMTDATE=Tue May 27 16:54:46.990 2014 ISTR0="Endpoint Protection Definition Updates" ISTR1="PDC00063" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="PDC00063"    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:46 AM    5920 (0x1720)
    Failed to process package PDC00063 after 33 retries, will retry 67 more times    SMS_DISTRIBUTION_MANAGER    5/27/2014 11:54:47 AM    5920 (0x1720)

  • SMC - "The management domain file...does not exist"

    Hi All,
    Just a quickie to see if anyone has seen this and has any pointers to getting out of it...
    Solaris 10 u5 x86. Machine has got SRSS4.0 running on it, the only other modification is CUPS is running in favour of the Solaris lp stuff (got instructions for this off a BigAdmin article).
    Anyways, I use SMC to manipulate user/group stuff on the local machine. SMC launches just fine, and I can gather System Information, view logs, disk configuration, processes etc. However, when attempting to do any user/group/role stuff management, I authentication with root role, click on the relevant panel, and get this:
    "The management server cannot perform the operation requested.
    If this problem persists, refer to the Log Viewer for additional information and contact your Sun Microsystems support provider.
    The actual error reported was:
    The management domain file:/shadowfire/127 does not exist or cannot be managed on server shadowfire."
    The behaviour is consistent. Gee, it was running fine before, AFAIK...
    Any pointers to what may have come unstuck gratefully appreciated, as always :)
    Dave

    I came across the same problem late July almost same day - on a brand new M4000 server with Solaris 10. I use an X-windows client to connect in and open Common Desktop Environment as "root". Then when I invoke SMC it works for everything except trying to open User Maintenance - then I get the error above.
    I came across something quite by accident whilst I was being advised to make edits to /etc/hosts (which I dont think made a difference anyway so I wont mention them)
    If I use my X-Windows client and open Common Desktop Environment as an ordinary user (say "joe") - then invoke SMC from the menu - when asked by the SMC utility to provide a logon then (as you would) enter the root username and password, guess what ! - I could open the User Maintenance icon without the error appearing and make changes and save them.
    Funny how a less privileged user than root invoking CDE seems to provide a basis to get the option to work! I still get the error by using CDE as root
    Wanna Try it?

  • Getting 'taglib directive for "f" does not exist or TLD is not found'

    Hi,
    I'm using Eclipse 3.4 and when I open my JSF page in Eclipse, I'm getting red "x"'s next to my JSF directives. For example,
    <f:view>
    has a red "x" along the left margin and when I roll over it, it gives me the error, 'taglib directive for "f" does not exist or TLD is not found.' This is odd because I have the appropriate directives, including
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    at the top of my page. Strangely, the "<%@" portion appears in red. Does anyone know how I can get Eclipse to recognize the listed directives?
    Thanks, - Dave

    Hi, I went to the link
    http://java.sun.com/javaee/javaserverfaces/download.html
    but following the steps only got to a place where I could download JavaServer(TM) Faces Specification Maintainance Release -- jsf-1_1-mr-spec.pdf. I did not see anywhere on here where I could download the actual jsf-api.jar or jsf-impl.jar files.
    Any further clarification you can provide is appreciated, - Dave

  • Idoc INVOIC error Baseline date for payment does not exist

    Dear All,
    I am facing the following error message when processing an idoc to do an MM invoice reception (operation similar to a MIRO).
    The payment term is correctly maintained in the purchase order.
    Idoc message type INVOIC MM.
    Baseline date for payment does not exist
    Message no. M8356
    Diagnosis
    You have tried to post a document without a baseline date for payment.
    The system will not allow you to do this.
    Check the purchase order. No terms of payment have been entered in the document header or no suggestion has been defined in Customizing for the baseline date for payment for the terms of payment entered.
    If you get the error message during automatic settlement of planned delivery costs, maintain the term of payment in the master record (Payment Transactions, Financial Accounting) for the freight vendor or use the Business Add-In MRM_ERS_HDAT_MODIFY to determine the term of payment.
    Regards
    Arnaud

    Hello,
    Date for starting the calculation of the baseline date is indeed managed in the TC OME2 (document date, posting date, etc..).
    In my project, there is already some companies using payment term N60N, so it should be possible to continue using it.
    I solved this issue by putting a payment term in the vendors master data (company & purchasing views) and also in the customers views (company / sales orga) otherwise the structure of the idoc is different.
    Thanks anyway for your input.
    Keep in touch.
    Regards
    Arnaud

  • Follow-up posting flow type Credit for 870 does not exist

    Hi SAP,
    I am having a problem when try to recalculate cash flow in FO38. System popup error Message no. 62179 (Follow-up posting flow type Credit for 870 does not exist). The error details is like this:
    Diagnosis
    You have changed the data in such a way that follow-up postings have resulted.
    No follow-up posting flow type has been defined for Credit for the flow type 870. A proposed flow type for flow type 3NCH has not been defined either.
    System Response
    Processing cannot be continued without the flow type.
    Procedure
    Contact your system administrator.
    Procedure for the system administrator
    Check and correct the settings for the reference flow type for follow-up postings in Customizing as required.
    Is there any setting in configuration Txn SPRO should i do? Will give points for those who help me out this problem.
    TQ
    Regards,
    Nazrul

    Hi Nazrul,
    yes, there are reference flow types missing for follow-up postings. Follow-up postings are created if condition amounts have been changed and that affects already posted items in the cash flow. In this case follow-up postings are generated. For the follow-up postings the system uses special flow types that have to be maintained in customizing.
    SPRO - Real Estate - Conditions, Flow Types, Account Determination - Maintain Flow Types - Assign Reference Flow Types
    Relevant relationship keys are:
    2     IS-RE: Follow-up postings due to condition incr.
    32     IS-RE: Follow-up posting due to condition reduct.
    You have to assign reference flow types for these relationship keys.
    This should help.
    Regards, Franz

  • Part of Photoshop isn't functioning.  Under adjustments, when HDR toning is clicked on I get a code:  Error 48: File or folder does not exist.  Line:11  - $.evalFile(g_StackScriptFolderPath   "StackSupport.jsx");  How can it be fixed?

    The phone company was here working on something while I was gone.  They sat down at my computer (iMac) and since then HDR toning doesn't work.  Get the code:   Error 48: File or folder does not exist.    Line: 11     ->  $.evalFile(g_StacScriptFolderPatch + "StackSupport.jsx");   How can this be fixed?   

    Go to //Applications/Adobe Photoshop [Version]/Presets/ Scripts/Stack Scripts Only/ and see if StackSupport.jsx is there. If it is not, uninstall and reinstall Photoshop to have it added back in. If it is there, first try recreating the Photoshop Preferences (hold down Command+Option+Shift while launching Photoshop).

  • Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of g

    Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of great help..thanks .

    I think in your situation it would be worth trying the things listed under the event. It does have to do with FRS and it's easy to do. I've used it to fix journal errors after a server unexpectedly restarts and sysvol stops replicating.  I
    could see where it could fix your issue, and if it doesn't, you're out 5 minutes. :)
    The listed registry key does not exist
    Expand HKEY_LOCAL_MACHINE. 
    Click down the key path: 
       "System\CurrentControlSet\Services\NtFrs\Parameters" 
    Double click on the value name 
       "Enable Journal Wrap Automatic Restore" 
     

Maybe you are looking for

  • TS1398 Wifi turns off when I get away from router

    Hi all, I've had an Iphone for about 2 1/2 years now. Working real good until recently... it will only recognized a wi-fi connection when I'm close to any router. As soon as I walk away, back to 3G, and that happens everywhere there is a wi-fi. I nee

  • Best Practices for Initial Setup

    Hi, I'm going to be helping a friend setup his new Time Capsule and Airport Express for his home network. I've been following some of the threads here about the nightmare problems some people are having with speed, connectivity, reliability, etc. So

  • Every email has an attachment , why ?

    Every email in the inbox has an attachment , even if was sent as a simple message without any attachments. This attachment will be a script or italicized version of the normal message. Nothing is added to the message , the message is simply repeated

  • Displaying transaction  in IFrame

    Hi All,    Is it possible to display SAP transaction in IFrame UI control in webdynpro application, If so can some one explain me how to do that. Regards, Tarun.

  • My Apple ID is incomplete when I try to access App Store.

    When the log-in window pops up if I want to update or add an app directly from my iPad, it does not show my whole user ID email address, only part of it, and if I type my password it comes back saying incorrect user I'd or password. I have checked th