Powerpill -Sy fails but pacman -Sy works

Hi, guys,
I recently got in trouble with pacman and powerpill after we are forced behind a proxy by the uni. I have exported the several proxy env vars, then a strange problem comes out, I could use
pacman -Sy
to sync my pkg db, but I could not with
powerpill -Sy
, it always fails with the error msgs
error: failed retrieving file 'core.db.tar.gz' from ftp.archlinux.org : Transient resolver failure
, so on through every mirror. Anyone could help me with the prob? Thanks.

If the option is commented in the config and not passed on the command line, it always invokes pacman to update the database (when "-y"|"--refresh" are passed).
if ($self->get_value('Rebase'))
$self->maybe_lock_and_rebase(($ys>1));
else
my $cmd = $self->get_value('PacmanBin') . ' -S' . ('y' x $ys);
$cmd = '/usr/bin/sudo '.$cmd if $ENV{'USER'} ne 'root' and -x '/usr/bin/sudo';
system $cmd;
Maybe it seemed like nothing happened because the database was already in sync. Regardless of how it updates the database, powerpill continues with the download before passing control to pacman to complete the operation, if there's anything left to do.
I'm not sure why it worked as expected with the Rebase option but not without. Powerpill uses the Perl's LWP::Simple module to check and retrieve the databases. The module probably detects the proxy settings on its own. I don't know why it wouldn't work when using pacman if you're able to sync the databases directly with pacman. It might be due to missing variables in the environment of the system call to pacman. *shrugs*

Similar Messages

  • 920 camera AF fail but video AF work

    In some situations, my 920 cannot auto focus, where the focus frame misses at last. And it happens when the weather is nice/ day time/ all settings are auto/ the object are colourful and contrasty with surrounding/ and the lens is clean and I know the button can half press to focus.
    what is wierd is that the camera AF fail, but the VIDEO FOCUS works quite well.( links are  photo(all fail, upload 1, all the same), and video. all files just resized).
    photophoto is attached video is uploaded to skydrive)
    https://skydrive.live.com/redir?resid=B88C8441906DD4BA!108&authkey=!AMWxcv4FDbwH3VI
    video
    https://skydrive.live.com/redir?resid=B88C8441906DD4BA!109&authkey=!AJVEty4SEgVjtNQ
    according to this, I think the hardware should be fine?
    Attachments:
    WP_20130418_003_nEO_IMG.jpg ‏104 KB
    WP_20130418_003_nEO_IMG.jpg ‏104 KB

    help me please!

  • PDF print problems Preview Fails but Adobe Reader works?

    Hello All,
    I'm having issues printing pdf documents, it appears to be a Font problem, that is when I print from Apple's Preview 7.0 the document prints, but the spacing of characters is wrong, some symbols are missing etc.  When I print from Adobe Reader 11.0.07 the documents look normal.
    More Details:  All pdfs generated using Latex fail this way, so it might be an issue there.  PDFs generated from iWork's Pages 5 print fine UNLESS I copy the Latex images into them then they print incorrectly again.
    I suspect the issue is with Apple's Preview missing a font, although I'm not sure that's it nor how to fix it.  Adobe prints without any issues at all.
    I am using OS 10.9.4 on a 2009 iMac.  I am printing to a HP Laserjet M4555 over Bonjour Service.
    Thank you for reading,
    DrD

    Hello Eric,
    Unfortunately this has not solved the problem.  I ended up disabling them all and ultimately deleting the duplicates.  Adobe works so that is my work around for now, although I prefer Preview.
    I appreciate your help,
    DrD

  • Airport fails - but Dlink Router works!  Why?

    My ISP is struggling to get a static IP working for me. I am having the same connection problem with two different Apple routers:
    1.) When the laptop is configured to the static IP address, it works fine.
    2.) When the Airport(s) are configured to the same static IP address, and the laptop is connected DHCP to the Airport, cannot load pages.
    3.) When the antique Dlink DI-624 is configured to the same static IP address, and the laptop is connected DHCP to the Dlink, it works fine.
    4.) And - just to make it more difficult - when the Airport is allowed to obtain a WAN address using DHCP, it works properly!
    So using the exact same static IP configurations, the Dlink works and two different Airport routers fail. The Apple router only works if set to DHCP.
    What is the difference between the Dlink and the Airport? What can I adjust on the Airport to get it to work properly as Dlink does with no special adjustments?
    This has me and the ISP stumped. Any help will be appreciated!

    Thanks for the suggestion but that is not the solution.
    The "modem" is actually an antenna and can function in router or bridge mode. At present my antenna/modem is set back to router mode and the Extreme is in Bridge. However, the Extreme is part of the three router set - all Apple - that establishes a secure network to computers and a video phone. The Dlink cannot duplicate that configuration.
    The three Apple set used to work. Something changed on the ISP end and neither I nor the ISP can figure it out.
    I need some extreme gear head who knows the internal workings of the Dlink and the Extreme to tell me what the internal routing-NAT-DHCP difference is between the Dlink and the Extreme so I can adjust or configure the Extreme to function properly.
    (jk)

  • Release Build FAIL (but debug build works perfectly)

    Hi to all.
    I've a serious problem with making a release build of my project.
    Here the error screenshot:
    The debug build works perfectly
    I searched in the all hard drives for a "bin-release" folder, but it does not exists.
    How i can make a release build?

    Solved!
    Simply i added the following node to <linkedResources> on .project file:
            <link>
                <name>bin-release</name>
                <type>2</type>
                <location>my-realese-directory-path</location>
            </link>
    And the release build gone sucessfully
    Thanks!

  • Autostart of network-service fails, but manual start works fine

    I followed a guide to set up a network connection. The steps were to create a network config (/etc/config.d/network)
    interface=eth0
    address=192.168.1.2
    netmask=24
    broadcast=192.168.1.255
    gateway=192.168.1.1
    then a service description (/etc/systemd/system/network.service)
    [Unit]
    Description=Network startup
    Wants=network.target
    Before=network.target
    [Service]
    Type=oneshot
    RemainAfterExit=yes
    EnvironmentFile=/etc/conf.d/network
    ExecStart=/sbin/ip link set dev ${interface} up
    ExecStart=/sbin/ip addr add ${address}/${netmask} broadcast ${broadcast} dev ${interface}
    ExecStart=/sbin/ip route add default via ${gateway}
    ExecStop=/sbin/ip addr flush dev ${interface}
    ExecStop=/sbin/ip link set dev ${interface} down
    [Install]
    WantedBy=multi-user.target
    and then enable the service using systemctl enable network.
    After the rebooting calling systemctl states the service as failed. If I start it manually using systemctl start network everything works fine.
    How do I get it to work with autostart? Thanks in advance.
    Last edited by devrandom (2013-08-03 12:22:55)

    With 'a guide' I presume you referred to this guide
    The guide states
    To set static IP on enp3s0 interface you will need to create /etc/conf.d/network@enp3s0 config file and run:
    # systemctl enable [email protected]
    where enp3s0 has to be changed into your own interface name.
    Note that the EnvironmentFile has to change to /etc/conf.d/network@<interface>.

  • "Intsallation failed" but application functioning

    Hi;
    On a new computer I installed CS2. (I like some things in that suite, like ImageReady). It asks me to activate, which doesnt work ("Activation server unavailable" which doesnt really surprise). 2nd time it says my 30 day trial has expired when I try to activate. So I cant use it. I explain this because it may be related to my CC problem.
    I installed CS5 (I write courses and still have some CS5 students).
    Both CS2 and 5 are on my own Adobe account. They are installed on D (big HD).
    Then I installed the CC Application Manager, on the account of the company I work for. All CC stuff on C (SSD).
    I installed PS. At the end it said "Installation failed", but PS 2014 works fine.
    I need to install a lot more, MU, ID, AI... and also (other students) the CS6 versions.
    I see on C in /Program Files (x86)/ an /Adobe/Adobe Creative Cloud/ folder, while in /Program Files/ I have /Adobe/Adobe Photoshop CC 2014/ (all this managed by the Application Manager).
    How shall I proceed?
    Thanks,
    Maarten

    for cs2, Error: "Activation Server Unavailable" | CS2, Acrobat 7, Audition 3

  • My vreative cloud downloaded and so did PS but now its saying there is an error...update failed and im retrying it but its not working what do i  do?

    my creative cloud downloaded and so did PS but now its saying there is an error...update failed and im retrying it but its not working what do i  do?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you've already tried a complete uninstall and reinstall try opening iTunes in safe mode (hold down CTRL+SHIFT as you start iTunes) then going to Edit > Preferences > Storeand turning off Show iTunes in the Cloud purchases. You may find iTunes will now start normally.
    tt2

  • Follwing query fails on one database, but the same works on other Database

    Hi,
    The following SQL fails on one database with ORA-01722 but the same works on other database.
    SQL> SELECT i.version, d.name, i.instance_name, i.host_name
    FROM v$instance i, v$database d, v$parameter p 2
    3 WHERE p.name = 'instance_number'
    4 AND DECODE(p.value, 0, 1, p.value) = i.instance_number;
    AND DECODE(p.value, 0, 1, p.value) = i.instance_number
    ERROR at line 4:
    ORA-01722: invalid number
    both databases are at same version (10.2.0.1) both are on same machine.
    Initailly I suspected NLS settings, I am surprised to see NLS settings are also same on both the databases.
    Any thoughts why is it happening

    Thanks for the reply
    Yes, i know that i am comparing varchar against number.
    bu there is no way that the database where the query is working has correct types on both sides as the tables are standard oracle dictionary tables.
    Yes, i tried this earlier, it works
    AND DECODE(p.value, '0', '1', p.value) = to_char(i.instance_number)
    it is very weired to see that error, i feel it something else that causing the trouble.

  • Why can't I get my mail, I get a message "connection to server failed" but I can get on all other web sites.  It worked fine until about a month ago.

    WHY CAN'T I GET MY MAIL, I GET A MESSAGE 'CONNECTION TO SERVER FAILED" BUT I CAN GET ON ALL OTHER WEB SITES.  IT WORKED FINE UNTIL ABOUT A MONTH AGO.  I CANCELLED MY ACCOUNT, PUT MY INFO IN AGAIN AND STILL GET THE MESSAGE "CONNECTION TO SERVER FAILED"  HELP PLEASE!

    have you tried removing and readding the e-mail account? sometimes settings get corrupted or changed on the server end...something computers can sometimes handle better than the mail interface.

  • I've read a lot of comments/suggestions about camera issues that it turns black when opening the phone camera but nothing is worked for me. I'm so frustrate on my iPhone 5s im using it like for a month, I thought its more better than Samsung but I failed.

    I've read a lot of comments/suggestions about camera issues that it turns black when opening the phone camera but nothing is worked for me. I'm so frustrate on my iPhone 5s im using it like for a month, I thought its more better than Samsung but I failed. Please help!!! I hope apple has something to do about this. Thanks.

    I would have had the phone looked at long before a month of problems.
    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support. You phone is under warranty and someone at an Apple store can help you.

  • HT1937 Hi my email is not working it says" Cannot gel mail...The connection to the server failed" but my network is working ok is the only application failing...how can I solve the problem?

    Hi, my mail applicatin is not working properly. It says cannot get main...the connection to the server failed but everything else is working ok. How can I solve this problem?

    The connectivity test indicated that there was a problem with the user's ActiveSync folder, typically fixed by checking the box "Allow inheritable permissions ...".
    Since it already was checked and even by removing the inherited permissions and then re-inheriting them didn't do the trick, I ended up just deleting the whole thing and then made a new duplicate account and blank mailbox.  That was pretty drastic
    but it fixed the problem.  After restoring his mailbox contents from backup, the user is now a happy camper.
    The connectivity test tool was helpful because the external URL was blank so I filled in the URL.  But ActiveSync was working fine for everybody without the URL before although I don't know why it did work without it.
    The other funny thing is on one of my iPads I am able to synch my mailbox and also the user's mailbox but on another iPad it just wouldn't synchronize when it worked before I added the external URL.  The iPads have the same OS version so I
    just don't understand it.  Oh well.
    Thanks for your help.  That was a good tip!
    WC

  • NETWORK marked [FAIL] but works...

    Hi everyone,
    Recently, during boot, network is marked as failed but everyhting works properly... This only happens with wireless connection (ipw2100), ethernet is marked [DONE] and works too 
    Thanks in advance for any advice...
    Cheers

    I'm not sure if I completely understand your post, but if you have multiple network interfaces and one fails, then network shows fail even if others were successful. There's a bug report filed about it, but it's been quite a while without being fixed...
    And if that doesn't answer your question then ignore me.

  • Acrobat X1, Purchased upgrade, failed as no valid product to upgrade from existed (my mistake but want my money back!). So purchased Acobat X1 std, install seemed OK, but does not work as I continue to get the upgrade screen saying no valid product to upg

    Acrobat X1, Purchased upgrade, failed as no valid product to upgrade from existed (my mistake but want my money back!). So purchased Acobat X1 std, install seemed OK, but does not work as I continue to get the upgrade screen saying no valid product to upgrade from? So now I have spent lots $$ and nothing working. Why is this so complicated? what do I need to do?

    Hi Rave,
    Thanks for this; my issue is that I have now supposedly purchased a retail version of Acrobat X1 (i.e just spent more $$, after the upgrade attempt  to Acrobat X1 failed), and while this feigns an OK install, it fails in someway to override the "Upgrade Acrobat X1 version".  E.G. once I load up to read an acrobat file the "upgrade version" executes/intercepts and ask for serial numbers and check for a previous qualifying version which I do not have, (BUT what I do have is the current retail version of acrobat X1 which is not recognised)
    Do I need to uninstall and start over again? (I am reluctant to do this as I am sure serial number issues will arise, as I assume downloaded file will be cleaned up etc, and I am not spending more money trying again!)
    Any suggestions?

  • Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

Maybe you are looking for

  • Unable to load the XML Report

    Hi, I am using TestStand 3.1. Someone before me has developped a lot of things in our application : specific steps, specific process model, ... . Now this person is not here anymore and I have a test report display problem. After an execution, the ex

  • Material Master, Down Payment

    Dear All, We required the clarification for the following queries, whether it is possible in SAP or not. 1. We want to book some of the Raw Materials in different GL as domestic purchase and imported as the case may. But since material code will be c

  • Join Two EXEC statements

    Hi Team, I want to join two dynamic sql with a UNION in between EXEC(@STRSQLNOArchive+' UNION' + @STRSQLArchive)  But here it is throwing an error .How this can be done SET @STRSQLNOArchive= 'Select columnname1 from table 1' SET @STRSQLArchive= 'Sele

  • The execution of the query doesn't end

    Hi, I have this completely nested query: SELECT S.sname from S where    S# in (select S# from table where    P# in (select P# from table1 where table1.name = 'Bodg')    and            Jn in (select J# from table 2 where table2.something= 'hjgfjh')  

  • Character string buffer too small error in tabular form

    Hi Folks, One of my tabular forms suddenly stopped working out of the blue after 3 months of working perfectly. So I've run into the debug and looks like something went wrong rendering my LOV as below:      0.16968     0.00328     ...Execute Statemen