Anybody,help me. yaourt problem setting dbpath .

when i  use yaourt ,
yaourt -S ibus-table-wubi
==> WARNING: problem in pkgbuild.sh library
problem setting dbpath '/usr/local/var/lib/pacman/' (could not find or read directory)
problem setting dbpath '/usr/local/var/lib/pacman/' (could not find or read directory)
problem setting dbpath '/usr/local/var/lib/pacman/' (could not find or read directory)
help me ...

Your problem started when you decided that compiling and installing pacman from a source tarball was a good idea. Fix that first.
Last edited by falconindy (2011-10-14 14:17:03)

Similar Messages

  • Can anybody help? Permission problems. Can't write to folder(s)

    I recently created a partition on my new SSD hard drive and copied my backup files from TIME MACHINE with Carbon Copy Cloner.
    Now the problem is that I can't create new folders inside the new partition without putting in my password.
    I basically can only READ and not WRITE without each time reconfirming my password. This means I can't use Lightroom. LR says it can't use the catalogue because it can't be modified.
    I've tried the Command + I (get info) and tried changing the permissions to READ AND WRITE (apply to enclosed items) and I've tried Disk Utility. Strangly enough, the partition I'm having problems with WON'T ALLOW ME TO VERIFY OR REPAIR PERMISSIONS!!! IT'S GREYED OUT!
    Another thing I've tried is restarting my computer while holding down Command + R to reboot in Disk Utility mode...my computer just starts up normally and doesn't do any of that. rrrrrrrr.....
    Please help. I'm in a pickle here.
    Thanks in advance...

    is your domain set correctly in the idmapd.conf on the server and the client machine? I also normally don't set the user name and user group and just use the default that it comes with.
    Also, where are your nfs shares exported from the server?
    Also did you read this from the wiki
    autofs wiki wrote:Each host name needs to be resolveable, e.g. the name an IP address in /etc/hosts or via DNS and please make sure you have at least nfs-common installed and working.

  • Can anybody help solve my problem with compilation?

    In win XP i try to compile program.
    javac Lematizator.java
    Lematozator.java:85: cannot find symbol
    symbol : class PodstatneMeno
    location : class slovnik.Lematizator
    static ArrayList<PodstatneMeno> zoznamPodstatnychMienZoSlovnika = new ArrayList<PodstatneMeno><>;
    ^
    There are more errors this is just example, how can i repair it?
    This is code:
    package slovnik;
    import java.io.BufferedReader;
    import java.io.FileReader;
    //import java.io.PrintStream;
    import java.util.ArrayList;
    import java.util.Vector;
    public class Lematizator
         static String suborSPredlohami = "predlohy.txt";
    //     static String slovnik = "slova.txt";
         static String zoznamPodstatnychMien = "podstatneMena.txt";
         static ArrayList<PodstatneMeno> predlohy = new ArrayList<PodstatneMeno>();
         static ArrayList<PodstatneMeno> zoznamPodstatnychMienZoSlovnika = new ArrayList<PodstatneMeno>();
         static ArrayList<PodstatneMeno> mozneTvarySlova = new ArrayList<PodstatneMeno>();
    //     static ArrayList<String> slovaZoSlovnika;
    //     static String slovo = "slovách";
         static String slovo = "slová";
    //     static String slovo = "mestách";
    //     static String slovo = "cestách";
         public static void main(String[] args)
              String slovo0 = "slovo";
              String slovo1 = "";
              String slovo2 = "";
              String slovo3 = "";
              String slovo4 = "";
              if (args.length>0)
                   slovo0 = args[0];
              if (args.length>1)
                   slovo1 = args[1];
              if (args.length>2)
                   slovo2 = args[2];
              if (args.length>3)
                   slovo3 = args[3];
              if (args.length>4)
                   slovo4 = args[4];
              System.out.println(slovo0);
              System.out.println(slovo1);
              System.out.println(slovo2);
              System.out.println(slovo3);
              System.out.println(slovo4);
              System.out.println();
              System.out.println(Lematizator.najdiVsetkyZakladneTvary(slovo0));
              System.out.println(Lematizator.najdiVsetkyZakladneTvary(slovo1));
              System.out.println(Lematizator.najdiVsetkyZakladneTvary(slovo2));
              System.out.println(Lematizator.najdiVsetkyZakladneTvary(slovo3));
              System.out.println(Lematizator.najdiVsetkyZakladneTvary(slovo4));
              public static String najdiZakladnyTvar (String slovo)
                   ArrayList<PodstatneMeno> zt = najdiZakladneTvary(slovo, false);
              if (zt.size() > 0)
                   return zt.get(0).getTvar();
              else
                   return null;
         public static ArrayList<String> najdiVsetkyZakladneTvary (String slovo)
              ArrayList<String> z = new ArrayList<String>();
              ArrayList<PodstatneMeno> zt = najdiZakladneTvary(slovo, true);
              for (int i = 0; i < zt.size(); i++)
                             String t = zt.get(i).getTvar();
                   boolean nebolo = true;
                   for (int j = 0; j < z.size(); j++)
                        if (t.equals(z.get(j)))
                             nebolo = false;
                   if (nebolo)
                        z.add(t);
                        return z;
              public static ArrayList<PodstatneMeno> najdiZakladneTvary (String slovo, boolean vsetky)
                   ArrayList<PodstatneMeno> vystup = new ArrayList<PodstatneMeno>();
              if (predlohy.size() == 0)
                   predlohy = Lematizator.nacitajPredlohy(suborSPredlohami);
              if (zoznamPodstatnychMienZoSlovnika.size() == 0)
                   zoznamPodstatnychMienZoSlovnika = Lematizator.nacitajZoznamPodstatnychMien(zoznamPodstatnychMien);
              mozneTvarySlova = Lematizator.najdiMozneTvarySlova(slovo);
              for (int i=0; i < mozneTvarySlova.size(); i++)
                             PodstatneMeno pm = mozneTvarySlova.get(i);
                   if (pm.jeVZoznamePodstatnychMien(zoznamPodstatnychMienZoSlovnika))
                                       vystup.add(pm);
                        if (!vsetky)
                             return vystup;
                             return vystup;
         static ArrayList<PodstatneMeno> nacitajPredlohy(String suborSPredlohami)
                   ArrayList<PodstatneMeno> vystup = new ArrayList<PodstatneMeno>();
              try
                             PodstatneMeno zt = null;
                   String nemennaCast = "";
                   String skratkaRod = "";
                   String skratkaCislo = "";
                   String skratkaPad = "";
                   String koncovka = "";
                   BufferedReader br = new BufferedReader(new FileReader(suborSPredlohami));
                   String riadok;
                   while ((riadok = br.readLine()) != null)
                                       if (riadok.equals("koniec"))
                                                 br.close();
                             return vystup;
                                            if (riadok.startsWith("="))
                             zt = null;
                        if (!(riadok.startsWith("-") || riadok.startsWith("=")))
                                                 riadok = (riadok+" ").replaceAll("\t",":");
                             String[] cs = riadok.split(":");
                             if (!cs[0].trim().equals(""))
                                  nemennaCast = cs[0].trim();
                             if (!cs[1].trim().equals(""))
                                  skratkaRod = cs[1].trim();
                             if (!cs[2].trim().equals(""))
                                  skratkaCislo = cs[2].trim();
                             if (!cs[3].trim().equals(""))
                                  skratkaPad = cs[3].trim();
                             koncovka = cs[4].trim();
                             PodstatneMeno p = new PodstatneMeno(nemennaCast,koncovka,skratkaRod,skratkaCislo,skratkaPad);
                             if (zt == null)
                                  zt = p;
                             p.setZakladnyTvar(zt);
                             p.setPredloha (p);
                             vystup.add(p);
                                  br.close();
                        catch (Exception e)
                             e.printStackTrace();
                        return vystup;
              static ArrayList<PodstatneMeno> najdiMozneTvarySlova (String slovo)
                   ArrayList<PodstatneMeno> vystup = new ArrayList<PodstatneMeno>();
              for (int i=0; i< predlohy.size(); i++)
                             PodstatneMeno predloha = predlohy.get(i);
                   if (slovo.endsWith(predloha.getKoncovka()))
                                       String jadro = slovo.substring(0,slovo.length()-predloha.getKoncovka().length());
                        PodstatneMeno zPredloha = predloha.getZakladnyTvar();
                        PodstatneMeno zt = new PodstatneMeno(jadro, zPredloha.getKoncovka(), zPredloha.getRod(), zPredloha.getCislo(), zPredloha.getPad(), null, zPredloha);
    //System.out.println(zt);
                        vystup.add(zt);
                        return vystup;
              static ArrayList<PodstatneMeno> nacitajZoznamPodstatnychMien (String subor)
                   ArrayList<PodstatneMeno> vystup = new ArrayList<PodstatneMeno>();
              try
                             BufferedReader br = new BufferedReader(new FileReader(subor));
                   String riadok;
                   while ((riadok = br.readLine()) != null)
                                       riadok = (riadok+" ").replaceAll("\t",":");
                        String[] cs = riadok.split(":");
                        PodstatneMeno pm = new PodstatneMeno(cs[1].trim(), cs[0].trim());
                        vystup.add(pm);
                             catch (Exception e)
                             e.printStackTrace();
                   return vystup;
                        return vystup;     Thanks
    Edited by: 855126 on Apr 27, 2011 11:22 AM
    Edited by: EJP on 28/04/2011 21:39: added code tags. Please use them.

    Please put your code within tags to make it more readable, and then someone will be more willing to offer advice.
    As to your error, the message is telling you exactly what the problem is.  Your code can't find the class PodstatneMeno.  My first question would be, "Is PodstatneMeno in the same package as Lematizator?"  If it's not, then you need to import it in your Lematizator class.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Hi, can anybody help with a problem I am having. I cannot get my Imac blue tooth to be discoverable.

    My blue tooth does not show the second line down?

    Hi Carolyn
    what I meant was I cannot get discoverable on as in the second line.
    the

  • Have a ipod 4th gen can receive mail but can't send mail anybody have the same problem?

    i have a 4th gen ipod touch, i can't send emails but i can receive them can anybody help fix this problem?

    You have an error or omission in the entries for the outgoing server.  Somtimes it is easier to delete the account on the iPod and recreate it rather than trying to find the error.  If you give us you provider and type of account (POP3, IMAP, Exchange) we may be able to provide more detailed information.

  • I can't install PC. Errow A12E5. I try to do it 2 month. Could anybody help me????

    2 month ago I bought the adobe photoshop. but first I should install creative cloud. and since that time I can't do it. Every time the system was with errow. I couldn't find answers on the web-site, and when I tried to do it - the web-side sent me to different pages. Imagin, that all this time I payed for this product!!!! Now I am really angry, cause I even can't stop my payment.
    Could anybody help with this problem?

    Please read https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Whatever i try my macbookpro reverts back to GMT time, two hours ahead of spain where i live. manual setting helps but synchronizing iPad puts it always at GMT can anybody help

    whatever i try my MacbookPro reverts back to GMT which is two hours ahead from where i live in spain. manual time setting helps for MacBookPro but in synchronization of iPad it uses again GMT. Can anybody help me with this problem? Thank you

    No, the app does not have to completely restart. It gets shifted in its open state into storage. Similar to how a computer uses the hard disk when it has insufficient memory.
    What complicates things is that sometimes memory does not get returned for reuse when you close an app. Thus yo should periodically double click the Home button and "delete" unnecessary apps from the multitasking dock and power off and then back on the iPod.

  • I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer.?

    I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer in case it wipes everything .

    I have the exact same problem. I have not changed anything. This is probably a bug or something that has gone bad with Mac OS X (10.7.2). I have not found any solution for this on the web.
    MacBook Pro, Mac OS X (10.7.2).

  • Problems setting up my TC. Have just bought new iMac(OS 10.6.8) and  TC. I set it up. iMac cannot find it. I have tried direct connection with an ethernet cable to Mac or my wireless router but nothing. Just a flashing orange light. Help for a simpleton p

    Problems setting up my TC. Have just bought new iMac(OS 10.6.8) and  TC. I tried to set it up. iMac cannot find it. I have tried direct connection with an ethernet cable to Mac or direct to my wireless router but nothing. Just a flashing orange light. Help for a simpleton please. Have tried reseting TC, but to no avail.

    Just updated from 10.6.7 ---> 10.6.8 and had the same issue. Despite having done a clean install from 10.6 and got everything back off my TC, now Time Machine can't find it!
    Green light is on, ethernet cable conected, network CP says its conected but nothing. Airport Utility can't find it. Hit reset button, Orange flashing light but still no show in Airport Utility.
    But I know its there, as rebooting from 10.6 SL disk shows the backups are still ok?
    Hmm, ideas anyone?
    SBB

  • Problems setting up C8180 software Ps_A10_02_NET_FULL_WIN_WW_130_140uu (311.96mb) HELP!

    Problems setting up C8180 software Ps_A10_02_NET_FULL_WIN_WW_130_140uu (311.96mb) HELP!

    Hello a2fay,
    I see that this is your first visit to the HP Forums.  Let me please take a moment to say "Welcome".
    To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I see that you are having some issue with installing the printer on to your computer.  So I can better assist you, what is the operating system you are using on your computer. 
    Which Windows Operating System am I running?
    One step that you can try is to run the HP Printer Install Wizard for Windows.
    If you do not have time today to write me back, I hope you have a great Thursday.
    Cheers,
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • TS2755 Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help of how to set up messages on each

    Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help on how to set up messages on each device separately and to start using messages app on each device independently. Thanks

    search google for "iphone remove picture from contact"

  • TS3988 My icloud account is not verifying it says check my mail witch I have done and I get a message say your iPhone for has been used to set up and Icloud account but still can not use the icloud can anybody help me.

    My icloud account is not verifying it says check my mail witch I have done and I get a message say your iPhone for has been used to set up and Icloud account but still can not use the icloud can anybody help me.

    Be sure you are checking the email account that you used to set up the Apple ID you used to create the iCloud account.  Also, be sure to check your spam/junk folder as well as your inbox.  The email you should receive looks like the image below.  When you get it, click the Verify Now link.
    If it still isn't there, try going to https://appleid.apple.com, click Manage your Apple ID, sign in, click on Name, ID and Email addresses on the left, then to the right look for a link to resend the verification email.

  • When I set up my iPhone, I accidentally put in an apple ID that doesn't exist. Therefor, I don't know the password and can't delete my account from iCloud. Can anybody help?

    When I set up my iPhone, I accidentally put in an apple ID that doesn't exist. Therefor, I don't know the password and can't delete my account from iCloud. I was trying to sync my contacts to my iPad and now it's not possible without iCloud on my phone. Can anybody help?

    Have you tried changing the admin password in System Preferences > Users & Groups > Password   ??
    The Apple ID that is associated with your admin password is noted there.
    message edited by:  cs

  • On iOS 7 when I try to set a new wallpaper why can't I scale and move my photo? Anybody else having this problem?, On iOS 7 when I try to set a new wallpaper why can't I scale and move my photo? Anybody else having this problem?

    On iOS 7 when I try to set a new wallpaper why can't I scale and move my photo? Why does it chop off the heads? Anybody else having this problem?

    Hi CollBA,
    See More Like This to the right. This issue has been discussed several times on this forum.
    Cheers,
    GB

  • Hi can anybody help please. I am having terrible problems trying to use my Nikon D7100 to tether. I have downloaded the latest Lightroom updates and also checked my firmware which is also the latest avaiable and still Lightroom wont detect my camera!

    Hi can anybody help please. I am having terrible problems trying to use my Nikon D7100 to tether. I have downloaded the latest Lightroom updates and also checked my firmware which is also the latest avaiable and still Lightroom wont detect my camera!. When I use a friends Canon camera it works every time!

    Hi Keith thanks for your reply I have Lightroom 5.7.1 64 bit and my Nikon's firmware is version 1.02

Maybe you are looking for

  • How to determine which CDockablePane in a group is currently active in Visual Studio 2013

    I understand that to activate a pane, I can do the following: dockablePane->ShowPane(TRUE, FALSE, TRUE); But, in a group of panes, how can I tell which pane is currently active? For instance, let's say there are 3 groups of panes on the screen.  The

  • Problem with dual monitor 30" and 20"

    waaa... i've switched plugs and all that.. my 30" is acting as a second monitor no matter what i do... i want the 30" as my main display... my dock and menus are on my 20" is there a way to switch them? or do they not support dual monitor with a 30"

  • Outer join on more than 2 tables

    I have difficulties joining more than 2 tables with Oracle 8.1.7. How can I solve this problem? SQL> select 2 G.NOM_GARE, F.VOIE 3 FROM FIN_POSTE F, TYPE_GARE G, 4 ( SELECT MATRICULE, RED_CPT1 FROM REDDITION, 5 ( SELECT SUM( PRIX_TOTAL ) CR, MATRICUL

  • SAP Report UDV

    Hi Experts, i have a big big issues. I have created three different reports and linked their values to a user defined values in SAP business one. if i update a first report with a UDV when i am running another report i have created the fields picks t

  • Why i cant write my apple id while installing final cut prox updates? it's unclickable

    It's showing this error and i cant click at APPLE ID space to write my ID. Please HELP...