[SOLVED] gotmail. cant install package

Hi i want to download my hotmail mails to close that account, but find myself unable to install gotmail, any ideas?
Thanks!
[aleyscha@aleyscha ~]$ yaourt -S gotmail
==> Continue the building of 'gotmail'? [Y/n]
==> ----------------------------------------------
==>
==> Building and installing package
==> Making package: gotmail 0.9.0-2 (Fri Jan 25 08:38:31 PST 2008)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
-> Found gotmail-0.9.0.tar.bz2 in build dir
==> Validating source files with md5sums...
gotmail-0.9.0.tar.bz2 ... Passed
==> Extracting Sources...
-> bsdtar -x -f gotmail-0.9.0.tar.bz2
gotmail-0.9.0/COPYING: Can't create 'gotmail-0.9.0/COPYING': Permission denied
gotmail-0.9.0/Makefile: Can't create 'gotmail-0.9.0/Makefile': Permission denied
gotmail-0.9.0/VERSION: Can't create 'gotmail-0.9.0/VERSION': Permission denied
gotmail-0.9.0/gotmail.spec: Can't create 'gotmail-0.9.0/gotmail.spec': Permission denied
gotmail-0.9.0/gotmail.1.gz: Can't create 'gotmail-0.9.0/gotmail.1.gz': Permission denied
gotmail-0.9.0/gotmail.man: Can't create 'gotmail-0.9.0/gotmail.man': Permission denied
gotmail-0.9.0/gotmail: Can't create 'gotmail-0.9.0/gotmail': Permission denied
gotmail-0.9.0/ChangeLog: Can't create 'gotmail-0.9.0/ChangeLog': Permission denied
gotmail-0.9.0/README: Can't create 'gotmail-0.9.0/README': Permission denied
gotmail-0.9.0/sample.gotmailrc: Can't create 'gotmail-0.9.0/sample.gotmailrc': Permission denied
gotmail-0.9.0/gotmail4evolution: Can't create 'gotmail-0.9.0/gotmail4evolution': Permission denied
bsdtar: Error exit delayed from previous errors.
==> ERROR: Failed to extract gotmail-0.9.0.tar.bz2
Aborting...
Error: Makepkg was unable to build gotmail package.
Last edited by leo2501 (2008-01-25 22:59:44)

solved!! i download GetLive and is retrieving all my messages! what a wonderful script here it is:
http://sourceforge.net/projects/getlive/
Now i can close that damn account

Similar Messages

  • [SOLVED] Unable to install packages in lxc container

    tl;dr: lxc-console should be used for logging in, not lxc-attach. Also, I had to do some additional work to get the tty to work in systemd, and I plan to update the wiki soon.
    I created a container using the following command:
    # lxc-create -n test -t archlinux
    Once created and configured, I started the container daemonized, and attached:
    # lxc-start -n test -d
    # lxc-attach --clear-env -n test -- su - root
    However, I am unable to install any software packages because GPG isn't working properly
    [root@test ~]# pacman -Syu openssh
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Packages (3): ldns-1.6.17-1 libedit-20130601_3.1-1 openssh-6.5p1-2
    Total Installed Size: 6.08 MiB
    :: Proceed with installation? [Y/n]
    (3/3) checking keys in keyring [###########################] 100%
    (3/3) checking package integrity [###########################] 100%
    error: GPGME error: Inappropriate ioctl for device
    error: GPGME error: Inappropriate ioctl for device
    error: GPGME error: Inappropriate ioctl for device
    error: libedit: missing required signature
    :: File /var/cache/pacman/pkg/libedit-20130601_3.1-1-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
    Do you want to delete it? [Y/n]
    error: ldns: missing required signature
    :: File /var/cache/pacman/pkg/ldns-1.6.17-1-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
    Do you want to delete it? [Y/n]
    error: openssh: missing required signature
    :: File /var/cache/pacman/pkg/openssh-6.5p1-2-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
    Do you want to delete it? [Y/n]
    error: failed to commit transaction (invalid or corrupted package (PGP signature))
    Errors occurred, no packages were upgraded.
    error: segmentation fault
    Please submit a full bug report with --debug if appropriate.
    The container config is as follows:
    lxc.utsname=test
    lxc.autodev=1
    lxc.tty=1
    lxc.pts=1024
    lxc.rootfs=/var/lib/lxc/test/rootfs
    lxc.mount=/var/lib/lxc/test/fstab
    lxc.cap.drop=mknod sys_module mac_admin mac_override
    lxc.kmsg=0
    lxc.stopsignal=SIGRTMIN+4
    #networking
    lxc.network.type=veth
    lxc.network.link=br0
    lxc.network.flags=up
    lxc.network.name=eth0
    lxc.network.ipv4=10.10.209.2/24
    lxc.network.ipv4.gateway=10.10.209.1
    lxc.network.mtu=1500
    #cgroups
    lxc.cgroup.devices.deny = a
    lxc.cgroup.devices.allow = c *:* m
    lxc.cgroup.devices.allow = b *:* m
    lxc.cgroup.devices.allow = c 1:3 rwm
    lxc.cgroup.devices.allow = c 1:5 rwm
    lxc.cgroup.devices.allow = c 1:7 rwm
    lxc.cgroup.devices.allow = c 1:8 rwm
    lxc.cgroup.devices.allow = c 1:9 rwm
    lxc.cgroup.devices.allow = c 1:9 rwm
    lxc.cgroup.devices.allow = c 4:1 rwm
    lxc.cgroup.devices.allow = c 5:0 rwm
    lxc.cgroup.devices.allow = c 5:1 rwm
    lxc.cgroup.devices.allow = c 5:2 rwm
    lxc.cgroup.devices.allow = c 136:* rwm
    Has anyone else experienced this? I've searched the web for solutions to the GPG error, and most of them relate to GPG not working in a chroot because the right things don't exist in /dev. However, I was under the impression that lxc.autodev=1 would take care of this, and indeed /dev/pts, etc. all exist in the container.
    Last edited by archtaku (2014-02-07 23:19:12)

    x33a wrote:
    Try
    # pacman-key --refresh-keys
    from within the container. Though, I do notice a segmentation fault, so I am not sure if it'll work.
    I just did this, and the command succeeded:
    gpg: refreshing 75 keys from hkp://pool.sks-keyservers.net
    gpg: requesting key 5263801D from hkp server pool.sks-keyservers.net
    gpg: requesting key FFF979E7 from hkp server pool.sks-keyservers.net
    gpg: requesting key CDFD6BB0 from hkp server pool.sks-keyservers.net
    gpg: requesting key 4C7EA887 from hkp server pool.sks-keyservers.net
    ... snip ...
    gpg: Total number processed: 74
    gpg: unchanged: 74
    However, the installation still failed.
    I was able to get pacman to install openssh by turning off signature verification. I then ssh'ed into the container, turned signature verification back on, and was able to install other packages just fine.
    So the issue seems to be with how lxc-attach connects to the container. A temporary solution would be:
    Add openssh to the list of packages installed when running lxc-create.
    # lxc-create -n test -t archlinux -- -P vim,openssh
    Attach to the container and run systemctl enable sshd.service, and set a root password
    Detach, then ssh into container and go about your business.
    However, I'd rather have the option of not using sshd on the container, and still be able to install packages, so I don't necessarily consider this problem solved yet.
    Can anyone shed some light on what I might be doing wrong when I attach to the container?
    Last edited by archtaku (2014-02-07 16:46:52)

  • [SOLVED] Pacman: cant install, remove, update packages

    I'm new to Arch, and yes I've read the Wiki and the sticky post "pacman error: FILENAME exists in filesystem".
    I can't install or update packages. Just synced the local database. I want to install the package "mc", so I ran:
    pacman -S mc
    All required packages were downloaded but then I got lots of:
    [package-name]: /path/to/file exists in file system
    I tried to remove that package but it says:
    loading package data...
    error: '[package-name]': could not find or read package
    I'm totally confused!
    Last edited by presario (2009-02-13 05:08:06)

    here's the output from "pacman -S mc"
    resolving dependencies...
    looking for inter-conflicts...
    Targets: kernel-headers-2.6.27.6-2 tzdata-2009a-1 glibc-2.9-4 ncurses-5.7-2
    Total Download Size: 0.00 MB
    Total Installed Size: 51.91 MB
    checking package integrity...
    checking for file conflicts...
    error: could not prepare transaction
    kernel-headers: /usr/include/asm-generic/errno-base.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/errno.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/fcntl.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/ioctl.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/mman.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/poll.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/resource.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/siginfo.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/signal.h exists in filesystem
    kernel-headers: /usr/include/asm-generic/statfs.h exists in filesystem
    kernel-headers: /usr/include/asm/a.out.h exists in filesystem
    kernel-headers: /usr/include/asm/auxvec.h exists in filesystem
    kernel-headers: /usr/include/asm/boot.h exists in filesystem
    kernel-headers: /usr/include/asm/bootparam.h exists in filesystem
    tzdata: /usr/bin/tzselect exists in filesystem
    tzdata: /usr/sbin/zdump exists in filesystem
    tzdata: /usr/sbin/zic exists in filesystem
    tzdata: /usr/share/man/man3/newctime.3.gz exists in filesystem
    tzdata: /usr/share/man/man3/newtzset.3.gz exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Abidjan exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Accra exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Addis_Ababa exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Algiers exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Asmara exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Asmera exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Bamako exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Bangui exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Banjul exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Bissau exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Blantyre exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Brazzaville exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Bujumbura exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Cairo exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Casablanca exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Ceuta exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Conakry exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Dakar exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Dar_es_Salaam exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Djibouti exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Douala exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/El_Aaiun exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Freetown exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Gaborone exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Harare exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Johannesburg exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Kampala exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Khartoum exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Kigali exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Kinshasa exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Lagos exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Libreville exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Lome exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Luanda exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Lubumbashi exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Lusaka exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Malabo exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Maputo exists in filesystem
    tzdata: /usr/share/zoneinfo/Africa/Maseru exists in filesystem
    glibc: /etc/locale.gen exists in filesystem
    glibc: /etc/nscd.conf exists in filesystem
    glibc: /etc/rc.d/nscd exists in filesystem
    glibc: /etc/rpc exists in filesystem
    glibc: /lib/ld-linux.so.2 exists in filesystem
    glibc: /lib/libBrokenLocale.so.1 exists in filesystem
    glibc: /lib/libSegFault.so exists in filesystem
    glibc: /lib/libanl.so.1 exists in filesystem
    glibc: /lib/libc.so.6 exists in filesystem
    glibc: /lib/libcidn.so.1 exists in filesystem
    glibc: /lib/libcrypt.so.1 exists in filesystem
    glibc: /lib/libdl.so.2 exists in filesystem
    glibc: /lib/libm.so.6 exists in filesystem
    glibc: /lib/libmemusage.so exists in filesystem
    glibc: /lib/libnsl.so.1 exists in filesystem
    glibc: /lib/libnss_compat.so.2 exists in filesystem
    glibc: /lib/libnss_dns.so.2 exists in filesystem
    glibc: /lib/libnss_files.so.2 exists in filesystem
    glibc: /lib/libnss_hesiod.so.2 exists in filesystem
    glibc: /lib/libnss_nis.so.2 exists in filesystem
    glibc: /lib/libnss_nisplus.so.2 exists in filesystem
    glibc: /lib/libpcprofile.so exists in filesystem
    glibc: /lib/libpthread.so.0 exists in filesystem
    glibc: /lib/libresolv.so.2 exists in filesystem
    glibc: /lib/librt.so.1 exists in filesystem
    glibc: /lib/libthread_db-1.0.so exists in filesystem
    glibc: /lib/libthread_db.so.1 exists in filesystem
    glibc: /lib/libutil.so.1 exists in filesystem
    glibc: /sbin/ldconfig exists in filesystem
    glibc: /sbin/sln exists in filesystem
    glibc: /usr/bin/catchsegv exists in filesystem
    glibc: /usr/bin/gencat exists in filesystem
    glibc: /usr/bin/getconf exists in filesystem
    glibc: /usr/bin/getent exists in filesystem
    glibc: /usr/bin/iconv exists in filesystem
    glibc: /usr/bin/ldd exists in filesystem
    glibc: /usr/bin/lddlibc4 exists in filesystem
    glibc: /usr/bin/locale exists in filesystem
    glibc: /usr/bin/localedef exists in filesystem
    glibc: /usr/bin/mtrace exists in filesystem
    glibc: /usr/bin/pcprofiledump exists in filesystem
    glibc: /usr/bin/rpcgen exists in filesystem
    glibc: /usr/bin/sprof exists in filesystem
    glibc: /usr/bin/xtrace exists in filesystem
    glibc: /usr/include/_G_config.h exists in filesystem
    glibc: /usr/include/a.out.h exists in filesystem
    glibc: /usr/include/aio.h exists in filesystem
    glibc: /usr/include/aliases.h exists in filesystem
    glibc: /usr/include/alloca.h exists in filesystem
    glibc: /usr/include/ar.h exists in filesystem
    glibc: /usr/include/argp.h exists in filesystem
    glibc: /usr/include/argz.h exists in filesystem
    glibc: /usr/include/arpa/ftp.h exists in filesystem
    glibc: /usr/include/arpa/inet.h exists in filesystem
    glibc: /usr/include/arpa/nameser.h exists in filesystem
    glibc: /usr/include/arpa/nameser_compat.h exists in filesystem
    glibc: /usr/include/arpa/telnet.h exists in filesystem
    glibc: /usr/include/arpa/tftp.h exists in filesystem
    glibc: /usr/include/assert.h exists in filesystem
    glibc: /usr/include/bits/a.out.h exists in filesystem
    glibc: /usr/include/bits/byteswap.h exists in filesystem
    glibc: /usr/include/bits/cmathcalls.h exists in filesystem
    glibc: /usr/include/bits/confname.h exists in filesystem
    glibc: /usr/include/bits/dirent.h exists in filesystem
    glibc: /usr/include/bits/dlfcn.h exists in filesystem
    glibc: /usr/include/bits/elfclass.h exists in filesystem
    glibc: /usr/include/bits/endian.h exists in filesystem
    glibc: /usr/include/bits/environments.h exists in filesystem
    glibc: /usr/include/bits/errno.h exists in filesystem
    glibc: /usr/include/bits/error.h exists in filesystem
    glibc: /usr/include/bits/fcntl.h exists in filesystem
    glibc: /usr/include/bits/fcntl2.h exists in filesystem
    glibc: /usr/include/bits/fenv.h exists in filesystem
    glibc: /usr/include/bits/fenvinline.h exists in filesystem
    glibc: /usr/include/bits/huge_val.h exists in filesystem
    glibc: /usr/include/bits/huge_valf.h exists in filesystem
    glibc: /usr/include/bits/huge_vall.h exists in filesystem
    glibc: /usr/include/bits/in.h exists in filesystem
    glibc: /usr/include/bits/inf.h exists in filesystem
    glibc: /usr/include/bits/initspin.h exists in filesystem
    glibc: /usr/include/bits/ioctl-types.h exists in filesystem
    glibc: /usr/include/bits/ioctls.h exists in filesystem
    glibc: /usr/include/bits/ipc.h exists in filesystem
    glibc: /usr/include/bits/ipctypes.h exists in filesystem
    glibc: /usr/include/bits/libc-lock.h exists in filesystem
    glibc: /usr/include/bits/libio-ldbl.h exists in filesystem
    glibc: /usr/include/bits/link.h exists in filesystem
    glibc: /usr/include/bits/local_lim.h exists in filesystem
    glibc: /usr/include/bits/locale.h exists in filesystem
    glibc: /usr/include/bits/mathcalls.h exists in filesystem
    glibc: /usr/include/bits/mathdef.h exists in filesystem
    glibc: /usr/include/bits/mathinline.h exists in filesystem
    glibc: /usr/include/bits/mman.h exists in filesystem
    glibc: /usr/include/bits/monetary-ldbl.h exists in filesystem
    glibc: /usr/include/bits/mqueue.h exists in filesystem
    glibc: /usr/include/bits/mqueue2.h exists in filesystem
    glibc: /usr/include/bits/msq.h exists in filesystem
    glibc: /usr/include/bits/nan.h exists in filesystem
    glibc: /usr/include/bits/netdb.h exists in filesystem
    glibc: /usr/include/bits/poll.h exists in filesystem
    glibc: /usr/include/bits/posix1_lim.h exists in filesystem
    glibc: /usr/include/bits/posix2_lim.h exists in filesystem
    glibc: /usr/include/bits/posix_opt.h exists in filesystem
    glibc: /usr/include/bits/printf-ldbl.h exists in filesystem
    glibc: /usr/include/bits/pthreadtypes.h exists in filesystem
    glibc: /usr/include/bits/resource.h exists in filesystem
    glibc: /usr/include/bits/sched.h exists in filesystem
    glibc: /usr/include/bits/select.h exists in filesystem
    glibc: /usr/include/bits/sem.h exists in filesystem
    glibc: /usr/include/bits/semaphore.h exists in filesystem
    glibc: /usr/include/bits/setjmp.h exists in filesystem
    ncurses: /bin/tput exists in filesystem
    ncurses: /lib/libncursesw.so.5 exists in filesystem
    ncurses: /usr/bin/captoinfo exists in filesystem
    ncurses: /usr/bin/clear exists in filesystem
    ncurses: /usr/bin/infocmp exists in filesystem
    ncurses: /usr/bin/infotocap exists in filesystem
    ncurses: /usr/bin/ncursesw5-config exists in filesystem
    ncurses: /usr/bin/reset exists in filesystem
    ncurses: /usr/bin/tic exists in filesystem
    ncurses: /usr/bin/toe exists in filesystem
    ncurses: /usr/bin/tset exists in filesystem
    ncurses: /usr/include/curses.h exists in filesystem
    ncurses: /usr/include/cursesapp.h exists in filesystem
    ncurses: /usr/include/cursesf.h exists in filesystem
    ncurses: /usr/include/cursesm.h exists in filesystem
    ncurses: /usr/include/cursesp.h exists in filesystem
    ncurses: /usr/include/cursesw.h exists in filesystem
    ncurses: /usr/include/cursslk.h exists in filesystem
    ncurses: /usr/include/eti.h exists in filesystem
    ncurses: /usr/include/etip.h exists in filesystem
    ncurses: /usr/include/form.h exists in filesystem
    ncurses: /usr/include/menu.h exists in filesystem
    ncurses: /usr/include/ncurses.h exists in filesystem
    ncurses: /usr/include/ncurses_dll.h exists in filesystem
    ncurses: /usr/include/panel.h exists in filesystem
    ncurses: /usr/include/term.h exists in filesystem
    ncurses: /usr/include/termcap.h exists in filesystem
    ncurses: /usr/include/unctrl.h exists in filesystem
    ncurses: /usr/lib/libcurses.a exists in filesystem
    ncurses: /usr/lib/libcurses.so exists in filesystem
    ncurses: /usr/lib/libcursesw.so exists in filesystem
    ncurses: /usr/lib/libform.a exists in filesystem
    ncurses: /usr/lib/libform.so exists in filesystem
    ncurses: /usr/lib/libformw.a exists in filesystem
    ncurses: /usr/lib/libformw.so exists in filesystem
    ncurses: /usr/lib/libformw.so.5 exists in filesystem
    ncurses: /usr/lib/libmenu.a exists in filesystem
    i can't post the everything since it's too long (about 6000 lines), the forum is not letting me to post everything

  • Cant install packaged application Apex 5

    I have tried to install some of packaged applications, but i cant. Error looks like in the picture bellow. I granted users APEX_PUBLIC_USER, APEX_REST_USER, APEX_LISTENER to create view but error is still there. Anyone has same problem ?

    2932898 wrote:
    Thanks for reply,
    If you mean the first step of installation wizard (shown in picture bellow INTEST), i have already granted create view to schema INTEST, but not helped..
    I have successfully installed the Live Poll package application on apex.oracle.com, where I obviously have only minimal privileges (and no way of changing them):
    select
        privilege
    from
        user_sys_privs
    order by
        privilege;
    CREATE CLUSTER
    CREATE CREDENTIAL
    CREATE DIMENSION
    CREATE EXTERNAL JOB
    CREATE INDEXTYPE
    CREATE JOB
    CREATE LIBRARY
    CREATE MATERIALIZED VIEW
    CREATE OPERATOR
    CREATE PROCEDURE
    CREATE SEQUENCE
    CREATE SYNONYM
    CREATE TABLE
    CREATE TRIGGER
    CREATE TYPE
    CREATE VIEW
    The privileges must be granted directly to the schema, not through a role.

  • [Solved]Error with installing package: /usr/lib64 exists in filesystem

    So i know there are other posts about this and i have read them and I have also read the wiki https://wiki.archlinux.org/index.php/De … _in_.2Flib and also this forum post https://bbs.archlinux.org/viewtopic.php?id=156942
    the error i get when trying to install a package from the AUR
    error: failed to commit transaction (conflicting files)
    hp-health: /usr/lib64 exists in filesystem
    Errors occurred, no packages were upgraded.
    I tried to find who owned the files/package in the /lib by the following commands
    $ grep '^lib/' /var/lib/pacman/local/*/files
    $ find /lib -exec pacman -Qo -- {} +
    the output was
    /lib is owned by filesystem 2015.02-1
    Im confused what to do at this point as the wiki that I linked above says
    If any package apart from glibc is listed as owning a file, that package needs to be updated to install its files in /usr/lib
    Last edited by PigsInSpace (2015-03-01 02:25:24)

    You are following directions for a file conflict with /lib for a very specific one-time manual intervention, but you don't have that file conflict according to the error message you posted and it is not for that intervention.  See this instead: https://wiki.archlinux.org/index.php/Pa … 9.22_error then report the error on the aur page for that package.
    This fixes it:
    package() {
    cd "$srcdir"
    + mv usr/lib64 usr/lib
    cp -a opt usr var "$pkgdir"

  • [SOLVED]Error during "Install packages"

    Was really hoping it'd be a long time before I had to come here for help (my first Linux install), but...
    I'm having trouble with the installation. The first clue is when I'm preparing the hard drive:
    After manually configuring the block devices, filesystems and mountpoints, there's a "Mount" window saying "Error mounting /dev/sdb4 on /mnt/home", likewise for var and /, but otherwise completes successfully.
    Then, during package installation, every single package fails:
    e.g. "warning: warning given when extracting usr/share/zoneinfo/GMTO (Can't create '/mnt/usr......')"
    .... (other files unsuccessfully being extracted)
    Installation failed
    and so on for the rest of the packages.
    My source is the official 2011.08 core image on a flash drive (/dev/sda1/) writing to an external hdd (/dev/sdb1, etc). I've searched the forums and the wiki and google but haven't been able to figure it out. Somehow the partitions aren't accessible to pacman, perhaps?
    Hopefully I'm not missing something really obvious...
    Last edited by rino (2012-05-02 14:16:21)

    Thanks for the lead:
    "mount: wrong fs type, bad option, bad superblock on /dev/sdb4,
                 missing codepage or helper program, or other error
                 In some cases useful info is found in syslog - try
                 dmesg | tail   or so
    [DEBUG UI ] show_warning 'Mount' : and so on
    and for the swap partition:
    swaponning /dev/sdb3
    swapon: /deev/sdb3: read swap header failed: Invalid argument
    executing dmesg | tail yielded:
    [<numbers here>]scsi 7:0:0:0: Direct-Access    SAMSUNG HD502IJ     PQ: 0  ANSI: 2 CCS
    [<numbers here>]sd 7:0:0:0: [sbd] Attached scsh generic sg1 type 0
    [<numbers here>]sd 7:0:0:0: [sbd] <a number> 512-byte logical blocks: (500GB/465 GiB)
    [<numbers here>]sd 7:0:0:0: [sbd] Write protect is off
    [<numbers here>]sd 7:0:0:0: [sbd] Mode sense: 34 00 00 00
    [<numbers here>]sd 7:0:0:0: [sbd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [<numbers here>]  sdb: sdb1 sdb2 sdb3 sdb4
    [<numbers here>]sd 7:0:0:0: [sbd] Attached SCSI disk
    FAT-fs (sdb4): bogus number of reserved sectors
    FAT-fs (sdb4): Can't find a valid FAT filesystem
    FAT-fs (sdb2): bogus number of reserved sectors
    FAT-fs (sdb2): Can't find a valid FAT filesystem
    Edit: before using this harddrive, I zeroed it out using Disk Utility on Mac OSX, which left it formatted as FAT. The partitions were then created using fdisk during the Arch installer,
    Last edited by rino (2012-05-02 13:43:19)

  • [SOLVED]Find Name Installed Packages Draftsight

    Occasionally I run in to a program installed from AUR or from the repository that has a name different than the package name. Is there a way to easily see what the name of the package is? Today I installed draftsight, and I can't figure out how to launch it from the terminal. Thanks
    Last edited by duke11235 (2013-01-05 02:12:13)

    Thanks that got it. If you add
    /opt/dassault-systemes/draftsight/bin to your path by adding
    export PATH=$PATH:/opt/dassault-systemes/draftsight/bin
    to your .bashrc, it runs by typing draftsigh in the terminal. Thanks again.

  • [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)

  • [Solved] Failed to install package

    The package in case is Steam .
    I'm running Arch Linux on a 64bit system. Therefore I have multilib enabled in my pacman.conf
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    #GPGDir = /etc/pacman.d/gnupg/
    HoldPkg = pacman glibc
    #XferCommand = /usr/bin/curl -C - -f %u > %o
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #CleanMethod = KeepInstalled
    #UseDelta = 0.7
    Architecture = auto
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options
    #UseSyslog
    #Color
    #TotalDownload
    CheckSpace
    #VerbosePkgLists
    # By default, pacman accepts packages signed by keys that its local keyring
    # trusts (see pacman-key and its man page), as well as unsigned packages.
    SigLevel = Required DatabaseOptional
    LocalFileSigLevel = Optional
    #RemoteFileSigLevel = Required
    # NOTE: You must run `pacman-key --init` before first using pacman; the local
    # keyring can then be populated with the keys of all official Arch Linux
    # packagers with `pacman-key --populate archlinux`.
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # - URLs will have $arch replaced by the name of the architecture
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    #Include = /etc/pacman.d/mirrorlist
    [core]
    Include = /etc/pacman.d/mirrorlist
    [extra]
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    Include = /etc/pacman.d/mirrorlist
    [community]
    Include = /etc/pacman.d/mirrorlist
    # If you want to run 32 bit applications on your x86_64 system,
    # enable the multilib repositories as required here.
    #[multilib-testing]
    #Include = /etc/pacman.d/mirrorlist
    #[multilib]
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #SigLevel = Optional TrustAll
    #Server = file:///home/custompkgs
    [archlinuxfr]
    SigLevel = Never
    Server = http://repo.archlinux.fr/$arch
    I found some other cases of this, but it was from people not having multilib enabled.
    Also tried runnning pacman -Syyu. Didn't work.
    And yes, the package name is correct.
    Thanks in advance for your answers.
    Last edited by pwhyz (2014-09-22 17:12:53)

    pwhyz wrote:
    Damn, you're right.
    I thought only the Include= line was needed, didn't even realize multilib didn't pop up during pacman -Sy.
    Sorry guys!
    You should read the comments when they are available
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.

  • [SOLVED]Trying to install package-query again. Cannot find PKGBUILD.

    I'm updating my arch after 4 months. Yes it has been a long time.
    During the update process I had to remove package-query and yaourt, and now I'm trying to get them back.
    I got package-query from here https://aur.archlinux.org/packages.php?ID=35915
    Untared it, went inside, and did makepkg -s, but the PKGBUILD could not be found. I looked through the directories and didn't see a PKGBUILD anywhere.
    Am I missing something?
    Last edited by Aquila (2013-05-13 23:18:36)

    Did you click the 'Download Tarbel' link on the right side of the page? (Correct choice)
    Or the link under the Sources Bar ? (Incorrect choice)

  • I download this latest itunes but i cant install it on my laptop?  everytime i run it.message appear it that "itunesetup.exe is not valid win32 application?? how can i solve it

    i download this latest itunes but i cant install it on my laptop?  everytime i run it.message appear it that "itunesetup.exe is not valid win32 application?? how can i solve it

    That generally indicates that the installer is getting damaged during the download.
    The following document is a good place to start:
    iTunes: Windows reports that "iTunesSetup.exe is not a valid Win32 application"

  • [SOLVED] Make Pacman cache packages installed with -U

    When installing a package with -U, pacman doesn't cache packages as it does when installing with -S. Is there a way to change this behavior?
    I read somewhere that specifying the package's full path and prepending "file://", as in "pacman -U file://path/to/package.pkg.tar.xz", but this often complains of an "invalid or corrupted package (PGP signature)".
    How can I make pacman always copy installed packages to the cache?
    MOD EDIT: change 'closed' to 'solved' in title to avoid confusion
    Last edited by fukawi2 (2013-07-06 13:09:21)

    You can't.  This has been discussed on the bugtracker several times.
    https://bugs.archlinux.org/task/35699
    https://bugs.archlinux.org/task/31243
    https://bugs.archlinux.org/task/15143
    https://bugs.archlinux.org/task/18012
    If you're building the packages yourself with makepkg, you can set PKGDEST to your cache in makepkg.conf.  Otherwise you could write a small pacman wrapper that copies the package after installing it.

  • After i download ios 5.1.1 i cant install it there is msg tell me an error occurred installing ios 5.1.1 what can i do to solve this and install the update ( i have ipad 2 ) ?????

    After i download ios 5.1.1 i cant install it there is msg tell me an error occurred installing ios 5.1.1 what can i do to solve this and install the update ( i have ipad 2 ) ?????

    No codes on the error just msg in the center of the ipad tell me that without any codes :@

  • Cant install itunes 10.6 no matter what i try! (Windows installer package error)

    I cant install itunes !
    I downloaded the latest version from the offcial site, and everytime i try to install it it stops half way due to Windows Installer Package error. It says I'm missing a program required to continue this installation.
    I've tried removing all the files with removal tools, running it with admin rights, disabling firewalls, User account controls, updated my Windows update to the latest version. Read all the threads and tried everything but it still doesn't work.
    Does any1 have any suggestions?

    Download and save a full itunes setup file.
    Use Winrar to unzip the file into a folder.  Then right mouse click the file AppleSoftwareUpdate.msi from that folder to install.
    If you don't have winrar, you can go to this link to download a free trial version.
    http://download.cnet.com/WinRAR-64-bit/3000-2250_4-10965579.html?tag=dropDownFor m;pop

  • [SOLVED] cant install acpi_call-git

    cant install acpi_call-git from aur here is the output
    Comment by CIB (2013-08-02 13:22)
    Getting errors when trying to build this, it seems to rely on something already being in /usr/lib/modules/3.10.3-1-ARCH/build
    Does this rely on some kernel source package or something?
    Comment by CIB (2013-08-02 14:02)
    Looks like it: linux-headers package. Could that be added to the dependencies, please?
    Comment by vadimk (2013-08-17 01:00)
    I just tried to makepkg for acpi_call-git package and it fails because
    of rejected acpi_call-x86_64.patch. I compared the patch and original file
    and they are with the same changes. As a local fix I used:
    --- PKGBUILD 2013-08-17 03:36:47.690127666 +0300
    +++ PKGBUILD 2013-08-17 03:37:31.380127165 +0300
    @@ -46,12 +46,6 @@
    sed -i 's|/lib/modules/|/usr/lib/modules/|g' ./Makefile || return 1
    fi
    - ## x86_64 Patch
    - if [ "$CARCH" = "x86_64" ]; then
    - msg "Patching for x86_64 systems"
    - patch -p1 -i ${srcdir}/acpi_call-x86_64.patch
    - fi
    ## Build
    make
    I think that patch should be removed too.
    Comment by jlgaddis (2013-08-19 15:43)
    Confirming `makepkg` fails and flagging as out-of-date due to contents of acpi_call-x86_64.patch being included in upstream as of 02-Jun-2013:
    https://github.com/mkottman/acpi_call/commit/b41b5d9c3e309a207547eb2b3e45237fbadd0bbc
    Comment by veroke (2013-09-10 21:58)
    i Just removed these lines, and it built..
    ## x86_64 Patch
    if [ "$CARCH" = "x86_64" ]; then
    msg "Patching for x86_64 systems"
    patch -p1 -i ${srcdir}/acpi_call-x86_64.patch
    fi
    acpi_call-git 20121230-2 (Sat Aug 7 15:33:04 IST 2010)
    ( Unsupported package: Potentially dangerous ! )
    - git (already installed)
    Cloning into 'acpi_call'...
    Checking connectivity... done
    patching file acpi_call.c
    Reversed (or previously applied) patch detected! Assume -R? [n]
    Apply anyway? [n]
    Skipping patch.
    1 out of 1 hunk ignored -- saving rejects to file acpi_call.c.rej
    Last edited by nos09 (2013-09-18 15:48:08)

    I've used the default PKGBUILD on my 32-bit system and it went just fine:
    $ makepkg -si
    ==> Making package: acpi_call-git 20121230-2 (Wed Sep 18 17:02:03 CEST 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    ==> Extracting sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ==> WARNING: Please make sure linux kernel headers are built/installed for the kernel acpi_call will be used with ::
    ==> WARNING: example #1: 'pacman -S linux-headers'
    ==> WARNING: example #2: 'pacman -S linux-lts-headers'
    ==> Git checkout: Updating existing tree
    Already up-to-date.
    ==> Git checkout: Tree has been updated
    ==> Checkout completed
    make -C /usr/lib/modules/3.11.1-1-ARCH/build M=/home/karol/apps/acpi_call-git/src/acpi_call-build modules
    make[1]: Entering directory `/usr/src/linux-3.11.1-1-ARCH'
    CC [M] /home/karol/apps/acpi_call-git/src/acpi_call-build/acpi_call.o
    /home/karol/apps/acpi_call-git/src/acpi_call-build/acpi_call.c: In function ‘acpi_proc_write’:
    /home/karol/apps/acpi_call-git/src/acpi_call-build/acpi_call.c:273:9: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘size_t’ [-Wformat=]
    printk(KERN_ERR "acpi_call: Input too long! (%lu)\n", len);
    ^
    Building modules, stage 2.
    MODPOST 1 modules
    CC /home/karol/apps/acpi_call-git/src/acpi_call-build/acpi_call.mod.o
    LD [M] /home/karol/apps/acpi_call-git/src/acpi_call-build/acpi_call.ko
    make[1]: Leaving directory `/usr/src/linux-3.11.1-1-ARCH'
    ==> Entering fakeroot environment...
    ==> Starting package()...
    ==> WARNING: The following kernel module build procedure *will fail* if your kernel headers are not built/installed!
    -> Building module for 3.11.1-1-ARCH...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "acpi_call-git"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: acpi_call-git 20121230-2 (Wed Sep 18 17:02:20 CEST 2013)
    ==> Installing package acpi_call-git with pacman -U...
    loading packages...
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1):
    Name New Version Net Change
    acpi_call-git 20121230-2 0.06 MiB
    Total Installed Size: 0.06 MiB
    :: Proceed with installation? [Y/n]
    (1/1) checking keys in keyring [########################################################] 100%
    (1/1) checking package integrity [########################################################] 100%
    (1/1) loading package files [########################################################] 100%
    (1/1) checking for file conflicts [########################################################] 100%
    (1/1) checking available disk space [########################################################] 100%
    (1/1) installing acpi_call-git [########################################################] 100%
    [+] use the module -> 'modprobe acpi_call'
    >>> run '/usr/bin/turn_off_gpu.sh' to test/view different acpi_call functions to see if it disables your secondary/hybrid video card
    >>> FYI: there are a few scripts in '/usr/share/acpi_call/' - some for specific laptops => asus1215n.sh, dellL702X.sh, m11xr2.sh
    Optional dependencies for acpi_call-git
    linux-headers: needed if using archlinux default kernel [installed]
    linux-lts-headers: needed if using the archlinux lts kernel
    Are you sure you have linux-headers installed?

Maybe you are looking for

  • How do I customise my macbook pro to print at A1?

    How do I customise my macbook pro to print at A1?

  • Is there a way to get photos into iMovie 11 without using iPhoto?

      I use PSE9 to organize my photos and don't want to use iPhoto.  When I click on the little camera in iMovie, it only gives me the option of going to iPhoto.  Thanks for any help. Peg

  • Creating Multiple IDOCs and Line Items based on Posting date from file

    Hi All, My scenario is File to IDOC(MBGMCR01)... Need your suggestions and help on how to go with this... Source file structure is DC61|2009-03-15|000000000001200051|00000005.00|200|0001|1234| DC61|2009-03-15|000000000001200363|00000001.00|300|0001|1

  • Need help with choosing a PSU

    hey guys, i need some help with choosing a right PSU for my gaming rig.  i plan on doing some overclocking for the first time, and from what i understand the regular no name PSU that came with my case just won't be enough.  so here is what i'm curren

  • Using an Apostrophe in a Search

    Hi, I've been creating Help topics in RoboHelp 8.0.2.208 and generate WebHelp. I've tried searching the forum for this problem and have come up empty; I'm sorry if I missed it. We are tying to help our users use the Help topics and are running into a