[SOLVED]How to install packages with the -U option? PGP error.

I have to downgrade some packages (linux package due to ath5k problem), but pacman won't allow me because of the signatures.
I downloaded the packages i need from here http://schlunix.org/archlinux/.
These packages are safe to install? How can i bypass the signature check, if these packages are safe to install?
Thanks.
Last edited by Hyugga (2012-04-19 19:46:23)

If you have a pgp key, you can sign the packages with your own key. You can do this by editing /etc/makepkg.conf, adding your key to the  GPGKEY="" section and enabling the sign option in the BUILDENV section. When building the package, it'll then be signed with your personal key. Afterwards import your key in pacman (pacman-key -r <yourkey>), assign the proper trust level and you're good to go.
A workaround is to temporarily set "SigLevel = Never" in your /etc/pacman.conf (and hence disabling keysigning).
EDIT: I just bothered to actually check your link and you'll be installing prebuilt binaries, so my first explanation doesn't apply there (you won't be building anything). So just setting SigLevel to Optional or Never (temporarily) should do.
Last edited by Gcool (2012-04-19 19:23:05)

Similar Messages

  • How to install package with documentation

    hi, i installed emacs but the manual is missing in this instalation.
    How can I force to install a package with manual and other documentation?
    Thanks

    i solved it. I used the correponding option in PKGBUILD and compiled again. R.M.

  • [Solved] How to start wpa_gui with the acpid

    I have written a script, which start my wlan.
    #!/bin/bash
    #/usr/local/bin/wlan
    function wlan_start {
    # a workaround. reload the module
    modprobe -r iwlagn
    modprobe iwlagn
    ifconfig wlan0 up
    dhcpcd -b -q -t 0 wlan0
    wpa_supplicant -iwlan0 -c/etc/wpa_supplicant.conf -Dwext -B
    wpa_gui &
    function wlan_stop {
    dhcpcd -q -x wlan0
    killall wpa_supplicant
    ifconfig wlan0 down
    case "$1" in
    start) wlan_start ;;
    stop) wlan_stop ;;
    esac
    If I run it from a console (sudo /usr/local/bin/wlan start) the wpa_gui pops up.
    I have installed it into the handler.sh from acpi. The script is correctly executed, if fn+f5 is pressed, but wpa_gui does not pop up.
    What should I change, that it the gui pops up whith fn+f5?
    Edit:
    The problem was, that I forgot the access restriction of X.
    Adding following code helps:
    export DISPLAY=:0.0
    export XAUTHORITY=/root/.Xauthority
    Remark: /root/.Xauthority is a link to the file of the notebook user.
    Last edited by dudell (2010-01-25 10:10:07)

    Mahesh,
    In the post installation document, under Creating User XISUPER,
    I see the following,
    1.You must now log on to the Integration server host with the user XISUPER, to switch the initial password to a valid password.
    2.You must restart the J2EE engine to transfer the user creation to the J2EE immediately.
    I am unable to proceed here.Can you please help me to resume the post installation steps ?
    Thanks,

  • HOW DO I DEAL WITH THE TIFF OPTIONS SCREEN?

    I am a beginner with PSE 10 learning how to save an edited TIFF scan.  I check the box for saving in Version Set and clik OK. The TIFF Options window comes up.  How do I learn what this is for and how to handle the choices it presents?  I have exhausted what is available in HELP.  Suggestions Please!
    MBArmstrong

    It’s really a question of choosing compression otherwise an uncompressed tiff file is very large and will slow down your computer. I normally use LZW. It’s lossless compression and has been around longer than ZIP and can be handled by most third parties e.g. if you need to send your files to a print lab.
    I never recommend saving tiff files with layers as they become huge. Always use the Photoshop format (PSD) for saving layered files which are much more efficient.

  • [solved] How to install Linux on the Fujitsu Scaleo Home Server 2205

    Hello!
    I am currently thinking about buying a Fujitsu Scaleo Home Server 2205.
    The according datasheet can be found here.
    The default installation includes Windows Home Server, which is why I have to find a way to install Linux on it (still thinking about which distribution).
    But since it doesn't offer regular installation interfaces, I don't know how to do it without having to buy extra equipment.
    I thought about just swapping one hard disk, and installing using a regular PC, but figured that this would cause problems with RAID afterwards.
    What do you suggest?
    Thanks!
    Last edited by jazz.arch (2009-05-11 16:40:13)

    lucke wrote:That's an interesting point. Do you have any data? I'd guess that pre-P4-era components are consuming less power than most modern ones. My PII with S3 GPU, 2 NICs and one HDD drains 50W in idle, you'd have to go with Atom or Goede or Via offerings to go much lower than that.
    I remember having a 300W PSU in my Celeron Mendocino-based PC but I never bothered to measure the actual power consumption at the wall socket. Did you measure that 50W at the socket?
    For comparison, TS-109 idles at 14W while Linksys NSLU2 at just 8W.
    Of course, 266MHz ARM/32MB RAM in NSLU2 will not be enough for most applications. I am personally really excited about Marvell's Kirkwood platform, Sheevaplug drains only 4W idle / 7W full load (!) and actually sports a 1.2GHz processor / 512MB RAM. If only they made a proper NAS solution using this platform... edit: they did, there's TS-119 but QNAP is traditionally overpriced.
    Last edited by fijam (2009-05-11 07:17:07)

  • [Solved] How to Install i3 with xorg

    HI guys,
    I am trying to figure out if it is possible to install i3 having only xorg installed.
    I followed the installation guide for arch-linux and I installed X-org
    pacman -S xorg-server xorg-server-utils xorg-xinit
    I have installed and configured i3 as explained here: https://wiki.archlinux.org/index.php/i3
    Despite my efforts I am not able to make it run. Could you please explain me:
    1) what are the minimum requirements to run i3 in terms of desktop environment?
    2) have I missed something in the installation process?
    Thank you for your help!
    Last edited by pappix (2014-03-17 23:12:00)

    Hi Karol,
    thanks for the fast reply! I kept trying and at the end I was able to start i3 by running
    xinit i3
    It turned out that was failing to execute i3 because i set ~/.xinitrc in the following way:
    exec i3 -V >> ~/.i3/i3log 2>&1
    and since i3 was never run before there was no ~/.i3 directory. During the first execution of i3 it asks for the creation of such directory, thus after the 1st execution it is possible to write the full command line in /.xinitrc, but if you do that before, you have to create the directory first.
    BTW now I am running i3 with XORG alone, it' s ugly but I am going to work on it.
    Thanks for the help though, I hope this post will help someone else

  • [Solved] How to install QtSDK with working Symbian s60 5th simulator

    All in file GZ - click on "Pobierz Plik"

    hello
    i need also help to introduce voip calls feature to my new e7.
    what must i do step by step?
    unfortunately there isn't included this feature in the box anymore...
    and also i do not have this view in my phone (attached), i have only
    net settings
    packet data
    presence
    sip settings
    xdm profile
    or am i in wrong place...?
    thanks
    Attachments:
    e7.jpg ‏20 KB

  • HT3546 I can't figure out how to install bonjour from the CD that came with my airport express.  Can anyone help?

    I can't figure out how to install bonjour from the CD that came with my airport.  Can anyone help?

    If you are having difficulties installing Bonjour from the Installation CD, you can download the latest version of Bonjour from here.

  • My computer was reimaged and iTunes was deleted, now when I try to sync my ipad it says it is synced with another library?  How do I sync with the newly installed iTunes without losing all of my data on my ipad?

    My computer was reimaged and iTunes was deleted, now when I try to sync my ipad it says it is synced with another library?  How do I sync with the newly installed iTunes without losing all of my data on my ipad?

    Copy all the content on your iPod back to your PC and into iTunes. Then go ahead and sync the iPod with your new library.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • I am a student who subscribed to the 9.99 photography package, I didn't realize there was a discount for students.  I would like to upgrade to the full package with the student discount.  I can not find the option for this. How do I do this?

    I am a student who subscribed to the 9.99 photography package, I didn't realize there was a discount for students.  I would like to upgrade to the full package with the student discount.  I can not find the option for this. How do I do this?

    Hi Djmontanalv,
    Please go through the link below.
    http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    Regards,
    Anand

  • How to create an install cd with the final cut pro x app if the app comes from App.Store?

    How to create an install cd with the final cut pro x app if the app comes from App.Store?

    Just copy the Application FCPX to your CD. When you want to install drag the FCPX to the Application folder and you are done.

  • Good afternoon! I purchased a few months the basics of adobe photoshop package with the CC and Lightroom, but has expired, and was made the annual package. What can I do to solve this problem. I have two weddings being edited and now I can not finish the

    Good afternoon! I purchased a few months the basics of adobe photoshop package with the CC and Lightroom, but has expired, and was made the annual package. What can I do to solve this problem. I have two weddings being edited and now I can not finish the work. I thank you.

    Renew the subscription?

  • After I installed ios7, I entered the wrong Apple ID. How do I replace with the correct ID?

    After I installed ios7, I entered the wrong Apple ID. How do I replace with the correct ID?

    OK, so all you need to do is:
    Go into Settings>iTunes, tap on the Apple ID and then tap on Sign Out. Then sign back in with your new Apple ID.
    Go to Settings>iCloud, scroll to the bottom and tap on Delete Account (it will ask you for a password). Try typing in the password that you think goes with that Apple ID. If that doesn't work, try your current Apple ID password. If that doesn't work, go into Manange your Apple ID and sign on with the old Apple ID and reset the password:  https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Once you have deleted the old iCloud account, you can then go to Settings>iCloud and sign on with your current Apple ID.
    Cheers,
    GB

  • [SOLVED]How to install .deb application (debian binary)

    Hello guys,
    I want to install the Adobe Connect 8 Add-in which can be found under the following link.
    http://www.adobe.com/support/connect/updaters.html (Link to the adobe website)
    http://www.adobe.com/go/adobeconnect_8_addin_lin (Links to the debian file)
    As adobe stated on their website, this .deb file is for linux. Therefore I hope that this includes archlinux, too. So the question is how can I install binary package with the format .deb?
    Please tell me that it is possible. I would really appreciate if someone can tell me how I can install this properly.
    Thanks.
    Last edited by Archie_Enthusiasm (2010-12-14 19:50:48)

    Archie_Enthusiasm wrote:thanks for the responses. but the problem is that I am relatively new to arch linux. Since I had one serious problem with my nvidia driver because of an unsupported binary, I only use official arch linux repos for installing the application. I really (please understand this) do not want to take risk doing stuff on my own for this. My lap should be working tomorrow. Otherwise I will miss my presentation with adobe connect which would be very pity for me.
    If its crucial it works within a certain time, run Debian or Ubuntu and install the program. Whichever way you look at it, unpackaging a .deb on an Arch system involves at least a bit of 'hackery' which does not involve Arch's repos.
    The better solution is to actually try things out, and learn while doing so. Nobody is going to just give you the right answer, that's not how the distro works. In the case of what you're trying to do, YMMV, so even more there'll be no 'right answer' to point you to.

  • [SOLVED] How to install nvidia 285.05.09-3 drivers

    Hi All,
    Currently I have installed xf86-video-nouveau 0.0.16_git20110829-1 drivers in my Arch Linux but I would like to install nvidia 285.05.09-3 in kernel 3.1.1-1-ARCH.
    Each time I have tried to install nvidia drivers I have had a lot of problems: the worst is that once installed I reboot system and X does not start, screen goes black, etc so I am afraid to install it because then I have a lot of problems to goes back nouveau and to get X starts again.
    So could anyone say me step by step how to install it with success and that once I reboot my system you ensure me X starts?
    And a step by step guide in case X does not starts and I need to come back nouveau again and start X normaly without problems.
    Thx.
    Last edited by toni (2011-11-16 23:34:31)

    karol wrote:
    /dev/zero wrote:What did your last slave die of?
    Epic!
    <donkey-style "laughter">
    @toni
    Did you install the nvidia 285 drivers from the repos? Have you tried https://wiki.archlinux.org/index.php/Nv … au_drivers ?
    Can you post some logs when the nvidia drivers are failing? What card do you have?
    Hi Karol,
    I have just installed nvidia 285 from repos taking into account the link you provided. I follow the steps mentioned in the script to change from nouveau to nvidia and it went Ok. Now I have installed nvidia drivers from repos and at boot-up, X starts correctly (SOLVED).
    I think when I installed nvidia in the past one thing was missed: (I did not do this)
    /usr/bin/sudo /sbin/mkinitcpio -p linux
    ....Maybe that was the problem.
    My graphic card is Nvidia Go7600.
    Thx again
    Last edited by toni (2011-11-16 23:34:04)

Maybe you are looking for

  • How can I take the part that parses the .XML file and make it a procedure.

    CREATE OR REPLACE PACKAGE BODY XMLSTUD6 AS Author: Jimmy Harris Created: 5/25/2006 Purpose: 1.This package has an XML file initialized to a variable called DOC .           2.It will then take the values from the XML file and insert them into a PL/SQL

  • I have two iCloud accounts and want to merge them

    I have accidently set up two iCloud accounts and now I need to merge them to get rid of one so that all my accounts are in one place. I have not been able to get my PC Outlook file synced with since Mobile Me is no longer available and I just now fig

  • App Store in French when I am not in France!!

    I upgraded my iPad 2 to iOS 6 and found it that it has automatically changed my App Store language to French!! I live in Middle East with the address at App Store of India. Where is it detecting the non-existent French connection from??? Can anyone t

  • N97 Everything goes wrong after trying to update!!...

    I try to update my N97 software.  Right after that I find out my video camera is not working; my GPS map is error; can't get into OVI store(keep getting an error message).  Worst of all can't even get on Facebook.  I try all the reset method (hard/so

  • ERROR: Invalid java version found: while runing Autoconfig

    Hi while upgrading EBS 12.1.3 Database from 11.1.0.7 to 11.2.0.2 We got the below error on autoconfig. F:\app\mocppd\product\11.2.0\dbhome_1\appsutil>F:\app\mocppd\product\11.2.0\dbho me_1\appsutil\bin\adconfig.cmd contextfile=prod_srv-moc.xml Enter