[solved] package verification, some packages unverified

Some of my packages seem to not be validated, they say
Validated By : Unknown
but after reinstall
Validated By : Signature
Some also say validated by md5 and sha, any idea about this inconsistency?
sudo pacman -Qi zsh
Name : zsh
Version : 5.0.2-1
Description : A very advanced and programmable command interpreter (shell) for UNIX
Architecture : x86_64
URL : http://www.zsh.org/
Licenses : custom
Groups : None
Provides : None
Depends On : pcre libcap gdbm
Optional Deps : None
Required By : None
Optional For : None
Conflicts With : None
Replaces : None
Installed Size : 7216.00 KiB
Packager : Pierre Schmitz <[email protected]>
Build Date : Sat 22 Dec 2012 01:19:52 SAST
Install Date : Tue 25 Dec 2012 11:40:48 SAST
Install Reason : Explicitly installed
Install Script : Yes
Validated By : Unknown
I then ran,
sudo pacman -S zsh
so:
sudo pacman -Qi zsh
Name : zsh
Version : 5.0.2-1
Description : A very advanced and programmable command interpreter (shell) for UNIX
Architecture : x86_64
URL : http://www.zsh.org/
Licenses : custom
Groups : None
Provides : None
Depends On : pcre libcap gdbm
Optional Deps : None
Required By : None
Optional For : None
Conflicts With : None
Replaces : None
Installed Size : 7216.00 KiB
Packager : Pierre Schmitz <[email protected]>
Build Date : Sat 22 Dec 2012 01:19:52 SAST
Install Date : Thu 30 May 2013 12:32:08 SAST
Install Reason : Explicitly installed
Install Script : Yes
Validated By : Signature
Is this because of the pacman upgrade to 4.1 earlier?
pacman.conf:
admin@russell-server ~ % cat /etc/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
*Edit, sorry
"validated by md5 and sha" as I said above came from running
pacman -Si package
as apposed to -Qi
I got confused
Last edited by jrussell (2013-05-30 10:43:17)

Allan wrote:Packages installed with pacman-4.0 or earlier will not have their method of verification recorded.   That was added in pacman-4.1.   So "Unknown" means just that.  "None" is installation without checking signature or checksum.
Cool, thank you!
I got around this with
comm -23 <(pacman -Qeq|sort) <(pacman -Qmq|sort) | pacman -S -
from https://wiki.archlinux.org/index.php/Pa … d_packages
Last edited by jrussell (2013-05-30 10:46:11)

Similar Messages

  • [SOLVED] First crack at packaging

    After the first instance ever on Arch where a (admittedly very new) program has to be done by source, and not on the AUR. It got me wanting to know how to package things, although nothing so complex as the program I'm after yet, I want to crawl before walking.
    I decided to have a crack at a smaller program - so chose a rouge like game I hadn't yet seen in the AUR - not that it matters even if it was.
    I paste the PKGBUILD I made for it below - it's not finished, but the instructions to make and build the package are there:
    I took a lot of "inspiration" from the ASCIIPortal PKGBUILD because, like this game "AQuestTooFar", in the source, there is no "make install" part of the process, only a "make" and then an executable is made that you run straight from wherever the source and everything was downloaded to. Theres also no Package() part. But it works and makes a package nonetheless. However after intallation with pacman, I get an error when I try and launch it from terminal, about not being able to load one of the files in the "Data" folder, which I've checked it included and is present in my package.
    Hopefully some of you would be able to offer any feedback and advice, and any thoughts on this error. I'm a complete newb to doing things from source and then packaging them - Oh package managers, how you spoil us =].
    Cheers,
    Ben.
    # Maintainer: Ben Ward <[email protected]>
    pkgname=AQuestTooFar
    pkgver=1.3
    pkgrel=1
    pkgdesc="A rouge-like dungeon crawling game, using text."
    arch=(any)
    url="http://www.randomstuff.org.uk/~geoffrey/roguelikes/aquesttoofar.html"
    license=()
    depends=()
    makedepends=('')
    optdepends=('')
    source=(http://www.randomstuff.org.uk/~geoffrey/roguelikes/AQuestTooFar1.3-091010.zip)
    md5sums=('68545729914de7c7549b8d5ece13f061') #generate with 'makepkg -g'
    build() {
    cd "${srcdir}/AQuestTooFar1.3-091010"
    make
    install -d $pkgdir/opt/AQuestTooFar
    install -D AQuestTooFar $pkgdir/opt/AQuestTooFar/
    install -D readme.txt $pkgdir/usr/share/doc/AQuestTooFar/README
    cp -r Build Data $pkgdir/opt/AQuestTooFar
    mkdir $pkgdir/usr/bin
    ln -s $pkgdir/opt/AQuestTooFar/AQuestTooFar $pkgdir/usr/bin/AQuestTooFar
    chmod -x $pkgdir/opt/AQuestTooFar/*/*
    Last edited by Ben9250 (2011-03-06 15:09:44)

    Ben9250 wrote:Is there a certain situation then when ('any') is ok to be used or should one always try to put either i686 or x86_64 or both?
    Yes, for example if your build only contains python code, then it runs on every platform which python runs on. That's when you can put arch=(any) into the PKGBUILD, because it runs everywhere.
    Ben9250 wrote:
    "install -Dm755 ${_realname} $pkgdir/opt/${_realname}/${_realname}"
    "install -Dm644 readme.txt ${pkgdir}/usr/share/doc/${_realname}/README"
    With these such lines, the -Dm755 part for example, it looks to me as though this is setting permissions, rather in a chmod kindof manner?
    It's always good to set the permissions directly. Only that way you can be sure that the permissions will be right.
    Ben9250 wrote:
    for i in Data/*;do install -Dm644 "$i" ${pkgdir}/opt/${_realname}/"$i";done
    This line is a loop, which loops around for every file in the Data folder, and copies them to the opt directory, essentially getting rid of the cp line?
    Unfortunately something like install -Dm644 Data/* ${pkgdir}/opt/${_realname}/ doesn't work, so I solved it with a loop. But this line is basically doing the same as
    cp -r Data/* ${pkgdir}/opt/${_realname}/
    chmod 644 ${pkgdir}/opt/${_realname}/Data/*
    but as I wrote before, the PKGBUILD I posted is how I would do it and I don't like to use cp in a build function, it's a matter of personal taste I guess.
    Ben9250 wrote:
    echo "#!/bin/sh  - forgive me but I don't know about this line, echo is something to do with printing things, and theres someting going on with a shebang and sh, so something to do with bash?
    "cd /opt/${_realname}"
    "./${_realname}" > ${pkgdir}/usr/bin/${_realname}"
    "chmod +x ${pkgdir}/usr/bin/${_realname}"
    This looks to me like the answer to the softlinking?
    Yes. If you use a softlink in /usr/bin which directs to /opt/${_realname}, it's kind of like the binary file is in /usr/bin. The binary expects the data directory in the same directory, but it's in /opt/${_realname}. That's why the ln -s method doesn't work. The shell script however first does cd into /opt/${_realname} and then executes the binary. That way everything's fine, because the data directory is in the same directory.
    Last edited by Army (2011-03-04 13:18:30)

  • During an update of the applications on the BlackBerry smartphone an error message may be displayed "BlackBerry Desktop Software failed to validate your BlackBerry device update - Aborting install due to validation failure. Some packages contained unsatis

    I have reset both my torch and playbook back to original only thing that I kept was my contact. And still problems I am a few min away from leave my loved blackberry and going android !! Or heaven help us Phone
    Issues 1) playbook wont connect to desktop manager anymore 
    2) Play book has 2 calendar icons with two different settings on them ??? I have one that is currently working with my yahoo email and calendar account. 
    3) my Phone when connected to desk top software shows the calendar as read only
    4) Unable to update my phone says During an update of the applications on the BlackBerry® smartphone an error message may be displayed "BlackBerry Desktop Software failed to validate your BlackBerry device update - Aborting install due to validation failure. Some packages contained unsatisfactory dependencies." 
    I just want my email and Calendars to work I am tried of spending nights trying to get these deices working !!! 
    someone please help me. !! 
    I know you are going to ask I have updated everything last time and it is all as update as it can get. 
    As for now as I wait I am going to wipe my phone again and just set everything up again !! If I have to even my contacts AHHHH Help I am starting to think crazy thoughts 

    Did you try to eboot the your PC or laptop where your device is connected ?
    I experienced this with my windows laptop, after a failed to do an update, I restart the laptop and my Torch, then retried, and it's worked

  • [SOLVED] Confused about development packages

    To build an embedded linux image using minifs utility, I need to install some development packages. The packages listed in the tutorial are named for Debian based distros, with the "-dev" suffix. Some of the listed packages are: libz-dev, libelf-dev, libelfg0-dev, libncurses-dev, etc.
    I can't find these packages, and I'm a bit confused. I have read that these packages in Arch Linux have different suffixes denpending on the origin (-cvs, -git, etc.), but I can't find any packages with that suffixes. For example for ncurses:
    $ pacman -Ss ncurses
    core/ncurses 5.9-3 [instalado]
    System V Release 4.0 curses emulation library
    extra/cmus 2.4.3-1
    A very feature-rich ncurses-based music player
    extra/finch 2.10.1-1
    A ncurses-based messaging client
    extra/moc 20110528-5
    An ncurses console audio player with support for the mp3, ogg, and wave
    formats
    extra/naim 0.11.8.3.2-2
    An ncurses AOL Instant Messenger and IRC client.
    extra/ncmpc 0.20-1
    A ncurses (command line) interface for MPD
    community/echat 0.04beta1-3
    vypress compatible ncurses chat (can work without server)
    community/ekg2 0.3.1-2
    ncurses based Jabber, Gadu-Gadu, Tlen and IRC client
    community/ncdu 1.8-1
    Disk usage analyzer with an ncurses interface
    community/rtorrent 0.8.9-2
    Ncurses BitTorrent client based on libTorrent
    community/ruby-ncurses 1.3.1-3
    Module for interactive text console applications (ncurses)
    community/sniffit 0.3.7.beta-11
    very good packet sniffer for unix with ncurses interactive mode.
    community/vifm 0.7.2-1
    Ncurses based file manager with vi like keybindings
    community/yacpi 3.0.1-3
    ncurses-based acpi monitor.
    No ncurses-cvs, ncurses-git, ncurses-svn or the like is found. How can I find development packages?
    Last edited by doragasu (2012-03-09 22:38:03)

    doragasu wrote:So in Arch, packages include not only binaries + resources, they also include header files? If I install for example ncurses, also header files for ncurses get installed?
    headers, pkg-config, everything in one package, that is required for a compilation. we keep stuff simple
    Last edited by wonder (2012-03-09 22:37:46)

  • Need somne information about some packages.

    Hi I am trying to understand a script where some packages are used.
    dbms_sql.open_cursor
    dbms_sql.parse
    dbms_sql.define_column
    Can someone explain me what theses packages do?
    FOR cur_source_rec IN cur_source LOOP
    lv_version_cursor_num := DBMS_SQL.OPEN_CURSOR;
    lv_dml_statement_txt := 'SELECT ' || cur_source_rec.name ||
    '.what_version FROM DUAL';
    BMS_SQL.PARSE(lv_version_cursor_num, lv_dml_statement_txt,
    DBMS_SQL.NATIVE);
    DBMS_SQL.DEFINE_COLUMN(lv_version_cursor_num, 1,
    lv_package_version_txt, 100);
    Well I d like to know what theses special functions do.
    Where can I find a complete definition of these packages?

    The documenation is always a good place to start.
    Cheers, APC

  • Some Error with Some packages on Unbreakable oracle Enteprice linux 5.2

    Dear all,
    when I Install Oracle EnterPrise Manager 10gR2 on Unbreakable oracle Enteprice linux 5.2 it requried fro me some packags which are nessaray for installer like the following packages
    Checking operating system package requirements ...
    Checking for compat-libstdc++-296-2.96-132.7.2; found Not found.     Failed <<<<
    Checking for libstdc++devel-3.4.3-22.1; found Not found.     Failed <<<<
    Checking for openmotif-21-2.1.30-11; found Not found.     Failed <<<<
    Checking for pdksh-5.2.14-30; found Not found.     Failed <<<<
    Checking for gnome-libs-1.4.1.2.90-44.1; found Not found.     Failed <<<<
    Checking for xscreensaver-4.18-5.rhel4.2; found Not found.     Failed <<<<but when I install thes packages ,the fllowing message is shown
    oracle@alwosaby ~]$ rpm- ivh pdksh-5.2.14-30.3.x86_64.rpm
    warning: pdksh-5.2.14-30.3.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 0c98ff9d
    error: Failed dependencies:
    pdksh conflicts with ksh-20060214-1.7.x86_64
    *[root@test Desktop]# xscreensaver-4.18-5.rhel4.14.x86_64.rpm*
    bash: xscreensaver-4.18-5.rhel4.14.x86_64.rpm: command not found
    *[root@test Desktop]# rpm -ivh xscreensaver-4.18-5.rhel4.14.x86_64.rpm*
    warning: xscreensaver-4.18-5.rhel4.14.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1d1e034b
    error: Failed dependencies:
    xloadimage is needed by xscreensaver-4.18-5.rhel4.14.x86_64
    *[root@test Desktop]# rpm --import /usr/share/rhn/BETA-RPM-GPG-KEY*
    *[root@test Desktop]# rpm -ivh xscreensaver-4.18-5.rhel4.14.x86_64.rpm*
    warning: xscreensaver-4.18-5.rhel4.14.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1d1e034b
    error: Failed dependencies:
    xloadimage is needed b
    oracle@alwosaby ~]$ uname -a
    Linux alwosaby 2.6.18-92.el5 #1 SMP Fri May 23 23:40:43 EDT 2008 x86_64 x86_64 x86_6 4 GNU/Linux
    Please how i install these packages ?
    If any one have exprecie about this problem , Can Help me?
    Regards
    alwosaby
    Edited by: user2985354 on 28/01/2009 09:01 م

    You are mixing redhat provided packages with OEL. Generally, it's not a good idea to mix packages of different distributions.
    The media you've used to install OEL contains these packages. Use these.

  • How to find (classes,interface,subpackage info) in some package

    Plz tell me if any one know how to find (classes,interface,subpackage) in some package
    e.g. in java.io
    "Above senerio in not concern with java doc
    but tell me if an other way i.e by help of programming
    i could find some package information"
    as we know we find out any "object" classType , methods and fields information with help of "java.lang.reflect" API's
    but how to find a package information as provided by jdk is in current use

    You can locate the .zip or .jar file where the stuff is, and say either
    unzip -l classes.zip
    or
    jar tvf classes.jar.
    So you see the list of the classes in the given package.
    Then you can say
    javap -classpath classes.zip MyPackage.MyClass
    to see the fields and methods of the given class.

  • Xvidcore, fbpanel - had a try on ABS: made some packages

    Since I'm getting really comfortable about this distro, I decided to try the ABS way of compiling. To my surprise this was  quite an easy thing to do. After a few tries I managed to create some packages, which I miss or aren't up-to-date in the arch linux database.
    I made packages for
    - xvid-1.0.1 (MPEG4 codec with better compression than divx)
    - fbpanel (windows-like lightweight panel)
    - libdts (decode dts-streams from dvd)
    - leafpad (gtk notepad clone, lean and mean)
    - guiTAR (gtk gui archive program)
    Only fbpanel was a bit tricky: had to edit the Makefiles myself, for neither prefix and DESTDIR worked. Anyway I thought that maybe someone finds those usefull. <edit> This is fixed now see further down the page</edit>
    The builds can be found here http://home.quicknet.nl/qn/prive/btwoudstra
    The PKGBUILDS are here:
    XVID
    # $Id: PKGBUILD,v 1.7 2004/04/17 11:36:47 tobias Exp $
    # Contributor: Sarah Hay <[email protected]>
    # Maintainer: roberto <[email protected]>
    # I just edited this PKGBUILD a little to get the latest xvid version, I hope Roberto doesn't mind.
    pkgname=xvidcore
    pkgver=1.0.1
    pkgrel=1
    pkgdesc="XviD is an open source MPEG-4 video codec"
    url="http://www.xvid.org/"
    depends=('glibc')
    source=(http://files.xvid.org/downloads/$pkgname-$pkgver.tar.bz2)
    md5sums=('ef8993d620e403e992cc660dbe6e3581')
    build() {
      mkdir -p $startdir/pkg/usr/lib $startdir/pkg/usr/include/
      cd $startdir/src/$pkgname-$pkgver/build/generic
      ./configure --prefix=/usr
      make || return 1
      make prefix=$startdir/pkg/usr install
    FBPANEL
    #Contributor:frodoontop <[email protected]>
    pkgname=fbpanel
    pkgver=3.8
    pkgrel=1
    pkgdesc="fbpanel is a lightweight X11 desktop panel"
    url="http://fbpanel.sourceforge.net/"
    license="GPL"
    depends=('gtk2' 'xfree86')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    source=(http://heanet.dl.sourceforge.net/sourceforge/fbpanel/$pkgname-$pkgver.tgz)
    md5sums=(95e43a2c201feb5e272bbd9a4f78ad6e)
    build() {
      cd $startdir/src/$pkgname-$pkgver
      ./configure --prefix=/usr
      make || return 1
    #note: this will not work, have to edit all the Makefiles by hand.  (change all install prefix paths)
      make prefix=$startdir/pkg/ install
    LIBDTS
    #Contributor: frodoontop <[email protected]>
    pkgname=libdts
    pkgver=0.0.2
    pkgrel=1
    pkgdesc="libdts is a free library for decoding DTS Coherent Acoustics streams"
    url="http://www.videolan.org/dtsdec.html"
    license="GPL"
    depends=()
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    source=(http://download.videolan.org/pub/videolan/libdts/0.0.2/$pkgname-$pkgver.tar.gz)
    md5sums=(a1c0dac95d7031498c2d19d7a3107469)
    build() {
      cd $startdir/src/$pkgname-$pkgver
      ./configure --prefix=/usr
      make || return 1
      make prefix=$startdir/pkg/usr install
    LEAFPAD
    #Contributor: frodoontop <[email protected]>
    pkgname=leafpad
    pkgver=0.6.8
    pkgrel=1
    pkgdesc="Leafpad is a simple GTK+ based text editor"
    url="http://tarot.freeshell.org/leafpad/"
    license="GPL"
    depends=(gtk2)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    source=(http://tarot.freeshell.org/leafpad/$pkgname-$pkgver.tar.gz)
    md5sums=(f3abf9ca505f16d1f1b7c2d6ff43f7e7)
    build() {
      cd $startdir/src/$pkgname-$pkgver
      ./configure --prefix=/usr
      make || return 1
      make DESTDIR=$startdir/pkg/usr install
    Tell me if anybody finds it usefull

    frodoontop wrote:
    There is a package called xvidcore, have you tried that?
    Yes, but it's still using a release candidate. While this one is stable version 1.0.1 already.
    Also, what changes did you need to do to the makefile? Could you either include them in the PKGBUILD or perhaps an install file?
    As I said in the original post. Change the lines from all three Makefiles at the sections install to the prefix you'd like to use. In my case this was something like /var/abs/local/fbpanel/pkg/usr .
    I'm quite new to all this, but I'll look into this install file thing.
    <edit>I have looked at the .install possibilities, but as far as I can see, there isn't a way to modify the source before compiling. Only after compiling. Correct me if I'm wrong.</edit>
    You could use some sed scripting, I had to do that for a program I was trying to get to compile, check out the PKGBUILD at: http://bbs.archlinux.org/viewtopic.php? … highlight=
    All I was doing is inserting a "0;" after a certain line in one of the source files.

  • [SOLVED]fail to build package: no such file or directory error

    EDIT1: read my last post
    I'm getting an error while installing pacman-color from the aur repository. I'm still a newbie so my only guess is to make such directory? why should I have to do that? anyone help?
    ==> Validating source files with md5sums...
        pacman-3.4.2.tar.gz ... Passed
        pacman-color-3.4.2-1.patch ... Passed
        color.conf ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    /tmp/yaourt-tmp-root/aur-pacman-color/./PKGBUILD: line 21: cd: pacman-3.4.2: No such file or directory
        Aborting...
    ==> ERROR: Makepkg was unable to build pacman-color.
    Last edited by aluser (2011-01-21 04:48:16)

    Here once again a failed attempt after removing pacman-color. I am beginning to think that maybe running yaourt as sudo is probably a bad idea. I think that may have had something to do with it.
    archuser@archws ~ % sudo yaourt -S abiword-light <11:54>
    Password:
    ==> Downloading abiword-light PKGBUILD from AUR...
    x PKGBUILD
    Comment by: mango on Thu, 25 Mar 2010 21:53:12 +0000
    ./configure --prefix=/usr \
    --disable-spell \
    --disable-print
    Comment by: chessboxing on Wed, 19 May 2010 14:33:51 +0000
    doesn't want to build
    rule 23: make: command not found
    == ERROR: Build Failed.
    Aborting...
    Eventhough I Had to install flex psiconv, it didn't help.
    Its a minefield man.
    Comment by: sHyLoCk on Wed, 02 Jun 2010 13:54:43 +0000
    http://aur.archlinux.org/packages.php?ID=37738
    Comment by: zenny on Thu, 02 Sep 2010 05:59:05 +0000
    Quite confusing statements. Below sHyLoCk recommends http://aur.archlinux.org/packages.php?ID=37738 on June 2 2010 and on June 27 he declares his recommended package obsolet and ask a TU to delete! The problem with the sHyLoCk package is there is not page setup option. So I installed this package, it has got the page setup menu, but once I click the option, the application dies with the following output (Maybe helpful to debug for the maintainer, I am not an expert):
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_get_label: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_markup: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_get_label: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_markup: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_container_foreach: assertion `GTK_IS_CONTAINER (container)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_get_label: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_markup: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_get_label: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_markup: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_container_foreach: assertion `GTK_IS_CONTAINER (container)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_container_foreach: assertion `GTK_IS_CONTAINER (container)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_get_label: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_markup: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL (label)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_spin_button_set_value: assertion `GTK_IS_SPIN_BUTTON (spin_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_set_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    (abiword:32455): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_set_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_cell_layout_clear: assertion `GTK_IS_CELL_LAYOUT (cell_layout)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_cell_layout_pack_start: assertion `GTK_IS_CELL_LAYOUT (cell_layout)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_cell_layout_set_attributes: assertion `GTK_IS_CELL_LAYOUT (cell_layout)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_append: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_set_valist: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_append: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_set_valist: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_append: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_set_valist: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_tree_model_get_iter_first: assertion `GTK_IS_TREE_MODEL (tree_model)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_set_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_cell_layout_clear: assertion `GTK_IS_CELL_LAYOUT (cell_layout)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_cell_layout_pack_start: assertion `GTK_IS_CELL_LAYOUT (cell_layout)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_cell_layout_set_attributes: assertion `GTK_IS_CELL_LAYOUT (cell_layout)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_append: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_set_valist: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_append: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_set_valist: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_append: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_list_store_set_valist: assertion `GTK_IS_LIST_STORE (list_store)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_combo_box_get_model: assertion `GTK_IS_COMBO_BOX (combo_box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_tree_model_get_iter_first: assertion `GTK_IS_TREE_MODEL (tree_model)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_widget_get_colormap: assertion `GTK_IS_WIDGET (widget)' failed
    (abiword:32455): Gdk-CRITICAL **: gdk_pixmap_colormap_create_from_xpm_d: assertion `drawable != NULL || colormap != NULL' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_image_set_from_pixmap: assertion `mask == NULL || GDK_IS_PIXMAP (mask)' failed
    (abiword:32455): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (abiword:32455): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_box_pack: assertion `GTK_IS_BOX (box)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_toggle_button_set_active: assertion `GTK_IS_TOGGLE_BUTTON (toggle_button)' failed
    (abiword:32455): Gtk-CRITICAL **: gtk_widget_get_colormap: assertion `GTK_IS_WIDGET (widget)' failed
    (abiword:32455): Gdk-CRITICAL **: gdk_pixmap_colormap_create_from_xpm_d: assertion `drawable != NULL || colormap != NULL' failed
    Aborted
    First Submitted: Wed, 15 Apr 2009 17:01:46 +0000
    abiword-light 2.8.6-2 : A fully-featured word processor without some gnome dependencies
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> abiword-light dependencies:
    - fribidi>=0.10.9 (already installed)
    - wv>=1.2.4 (already installed)
    - libglade>=2.0 (already installed)
    - pkgconfig (already installed)
    ==> Continue building abiword-light ? [Y/n]
    ==> ---------------------------------------
    ==>
    ==> Building and installing package
    ==> WARNING: Building package as root is dangerous.
    Please run yaourt as a non-privileged user.
    ==> Making package: abiword-light 2.8.6-2 (Fri Jan 21 11:54:35 JST 2011)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Downloading abiword-2.8.6.tar.gz...
    --2011-01-21 11:54:35-- http://www.abisource.com/downloads/abiword/2.8.6/source/abiword-2.8.6.tar.gz
    Resolving www.abisource.com... 130.89.149.216
    Connecting to www.abisource.com|130.89.149.216|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 9218827 (8.8M) [application/x-gzip]
    Saving to: "abiword-2.8.6.tar.gz.part"
    100%[=======================================>] 9,218,827 414K/s in 28s
    2011-01-21 11:55:04 (325 KB/s) - "abiword-2.8.6.tar.gz.part" saved [9218827/9218827]
    ==> Validating source files with md5sums...
    abiword-2.8.6.tar.gz ... Passed
    ==> Extracting Sources...
    ==> Starting build()...
    /tmp/yaourt-tmp-root/aur-abiword-light/./PKGBUILD: line 16: cd: /tmp/yaourt-tmp-root/aur-abiword-light/src/abiword-2.8.6/: No such file or directory
    Aborting...
    ==> ERROR: Makepkg was unable to build abiword-light.
    ==> Restart building abiword-light ? [y/N]
    ==> --------------------------------------
    ==> archuser@archws ~ % <11:find /usr/{bin,lib} -type f -size 0
    /usr/lib/python3.1/tkinter/test/__init__.py
    /usr/lib/python3.1/tkinter/test/test_ttk/__init__.py
    /usr/lib/python3.1/tkinter/test/test_tkinter/__init__.py
    /usr/lib/python3.1/test/nullcert.pem
    /usr/lib/python3.1/site-packages/ranger/gui/__init__.py
    /usr/lib/python3.1/email/mime/__init__.py
    /usr/lib/python3.1/email/test/__init__.py
    /usr/lib/python3.1/urllib/__init__.py
    /usr/lib/python3.1/sqlite3/test/__init__.py
    /usr/lib/python3.1/pydoc_data/__init__.py
    /usr/lib/python3.1/lib2to3/tests/data/fixers/myfixes/__init__.py
    /usr/lib/python2.7/test/nullcert.pem
    /usr/lib/python2.7/site-packages/git_remote_helpers/git/__init__.py
    /usr/lib/python2.7/site-packages/OpenGL/GL/MESAX/__init__.py
    /usr/lib/python2.7/site-packages/OpenGL/GL/VERSION/__init__.py
    /usr/lib/python2.7/site-packages/OpenGL/GLU/EXT/__init__.py
    /usr/lib/python2.7/site-packages/OpenGL/AGL/__init__.py
    /usr/lib/python2.7/site-packages/pychess/__init__.py
    /usr/lib/python2.7/site-packages/pychess/widgets/__init__.py
    /usr/lib/python2.7/site-packages/pychess/Utils/__init__.py
    /usr/lib/python2.7/site-packages/pychess/Utils/lutils/__init__.py
    /usr/lib/python2.7/site-packages/pychess/ic/__init__.py
    /usr/lib/python2.7/site-packages/pychess/ic/managers/__init__.py
    /usr/lib/python2.7/site-packages/pychess/System/__init__.py
    /usr/lib/python2.7/site-packages/pychess/Players/__init__.py
    /usr/lib/python2.7/site-packages/pychess/gfx/__init__.py
    /usr/lib/python2.7/site-packages/xml2po/modes/__init__.py
    /usr/lib/python2.7/site-packages/numpy/distutils/tests/gen_ext/__init__.py
    /usr/lib/python2.7/site-packages/numpy/distutils/tests/f2py_ext/__init__.py
    /usr/lib/python2.7/site-packages/numpy/distutils/tests/pyrex_ext/__init__.py
    /usr/lib/python2.7/site-packages/numpy/distutils/tests/swig_ext/__init__.py
    /usr/lib/python2.7/site-packages/numpy/distutils/tests/f2py_f90_ext/__init__.py
    /usr/lib/python2.7/site-packages/bzrlib/util/__init__.py
    /usr/lib/python2.7/site-packages/bzrlib/util/configobj/__init__.py
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/__init__.py
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/BUILD_LINK_FAILED
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/BUILD_FAILED_EXCEPTION
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/BUILD_FAILED_UNPARSEABLE
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/TESTS_FAILED
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/BUILD_FAILED
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/TESTS_INVALID
    /usr/lib/python2.7/site-packages/pygame/tests/util/build_page/libs/build_client/test_fixtures/BUILD_FAILED_UNKNOWN
    /usr/lib/python2.7/site-packages/pygame/examples/__init__.py
    /usr/lib/python2.7/site-packages/gtk-2.0/egg/__init__.py
    /usr/lib/python2.7/site-packages/gtk-2.0/gi/overrides/__init__.py
    /usr/lib/python2.7/site-packages/sonata/__init__.py
    /usr/lib/python2.7/site-packages/sonata/plugins/__init__.py
    /usr/lib/python2.7/email/mime/__init__.py
    /usr/lib/python2.7/email/test/__init__.py
    /usr/lib/python2.7/sqlite3/test/__init__.py
    /usr/lib/python2.7/pydoc_data/__init__.py
    /usr/lib/python2.7/bsddb/test/__init__.py
    /usr/lib/python2.7/lib-tk/test/test_ttk/__init__.py
    /usr/lib/python2.7/lib-tk/test/test_tkinter/__init__.py
    /usr/lib/python2.7/lib2to3/tests/data/fixers/myfixes/__init__.py
    /usr/lib/purple-2/perl/auto/Purple/Purple.bs
    /usr/lib/perl5/vendor_perl/auto/HTML/Parser/Parser.bs
    /usr/lib/perl5/vendor_perl/auto/XML/Parser/Expat/Expat.bs
    /usr/lib/perl5/vendor_perl/auto/Crypt/SSLeay/SSLeay.bs
    /usr/lib/perl5/vendor_perl/auto/Irssi/Irssi.bs
    /usr/lib/perl5/vendor_perl/auto/Irssi/UI/UI.bs
    /usr/lib/perl5/vendor_perl/auto/Irssi/Irc/Irc.bs
    /usr/lib/perl5/vendor_perl/auto/Irssi/TextUI/TextUI.bs
    /usr/lib/pidgin/perl/auto/Pidgin/Pidgin.bs
    /usr/lib/firefox-3.6/.autoreg
    archuser@archws ~ %
    Last edited by aluser (2011-01-21 03:02:22)

  • Installing some packages

    Hi guys i'm a new user, i've installed some packages dowloaded from sunfreeware and sun.com with the command pkgadd -d "name" .
    more packages such as gcc make and some library but when i'm send the command "gcc".."make" etc... from terminal it sends "command not found".
    i've search this problem in some forum and maybe i've find a solution, "a symbolic link".
    example "ln -s /opt/sfw/bin/gcc /usr/ucb/gcc"
    with this method the gcc command work.
    my question is, every time that i make an installation with pkgadd -d i must search the executable file in /opt/sfw/bin/ and after create a symbolic link in /usr/ucb/?
    there is an easy way?

    You can use ".profile" file, to have PATH env variable. Create ".profile" file, in the home directory of the user (if it doesn't exist).
    syntax: export PATH=/usr/bin:/usr/sbin:/opt/sfw/bin:/usr/local/bin/:<other_paths>
    therefore every time that i'm installing a new software i must add its path in $PATH variable?Yes
    how can i recognize the executable file that have i to insert?Most of the executables reside under "bin" directory, under the installation directory. When you install new software, usually the installers print verbose output on console about the status of the installation. From that verbose output, note down the absolute path to the "bin" directory, and add it to the PATH variable in ~/.profile file.

  • [SOLVED] Archiso : installing AUR packages on a live image

    Hi all,
    I'm quite an arch newbie, I'm trying to setup a live USB stick, with the help of archiso. My goal is to finally get an "audio oriented" system (with jack, ardour, qsampler, and so more...).
    During the setup everything was working very well, until I tried to add some AUR packages to the install.
    On the arch website, I found this tip, which gave me a great hope about this.
    I'm not so familiar with Arch package management, but ok, I try to make a test : adding the "qsampler" AUR package. It needs "linuxsampler", "qt4", and "liblscp" as dependencies. "linuxsampler" and "qt4" are official packages, so I just have to add them to packages.both in the archiso working directory. "liblscp" is an AUR package (with no dependency); so there is 2 AUR packages to install : "liblscp", and "qsampler".
    So I create a directory tree like described in the tip, download the two build packages from AUR, and for each of them I do (something) like described there :
    # tar -xvf tarball_filename.tar.gz
    # cd tarball_filename
    # makepkg --asroot
    # mv *.xz ..
    # cd ..
    # rm -r tarball_filename{,.tar.gz}
    And then:
    # repo-add customrepo.db.tar.gz *.xz
    (I'm staying as root because it's red written to stay as root for the image creation. I think it's stupid, but people make stupid things when they are desesperate. Sorry I didn't take the time to test the code above again, it's only memory, but it was very similar)
    I did the same for both architectures (i686 and x86_64), so that my custom repo looks like this:
    ~/liveusb/customrepo # ls -R
    i686 x86_64
    ./i686:
    customrepo.db customrepo.db.tar.gz liblscp-0.5.6-1-x86_64.pkg.tar.xz qsampler-0.2.3-1-x86_64.pkg.tar.xz
    ./x86_64:
    customrepo.db customrepo.db.tar.gz liblscp-0.5.6-1-x86_64.pkg.tar.xz qsampler-0.2.3-1-x86_64.pkg.tar.xz
    Oops... I just noticed I did wrong for i686 machines, but it doesn't matter for the moment, since I'm working on an x86_64 machine.
    As explained in the tip, I add the following lines to pacman.conf (in the archiso working directory):
    [customrepo]
    SigLevel = Optional TrustAll
    Server = file:///my/path/to/customrepo/$arch
    From my point of view, at this point, the USB stick is ready to be updated:
    ~/liveusb # ./build.sh -v
    and then (with /dev/sdf as my usb stick device):
    ~/liveusb # dd if=out/archlinux-2014.10.01-dual.iso of=/dev/sdf
    But when I boot on the USB stick, there's no trace of qsampler (linuxsampler, however, is present).
    Since it happened, I'm feeling like a lost, lonely man, on a desert island... Thinking about the "why", the "how"..., the meaning of life..., of package management... all this stuff
    I'm sure I did something wrong about the "custom repository", and the main reason is I don't deeply understand all the steps about this; that's why I'm looking for help
    Any idea?
    Many thanks
    Last edited by yolenoyer (2014-10-02 09:16:57)

    Thank you for the reply,
    I think I did a more trivial mistake :
    With archiso, the packages are automatically installed, from a package list file called "packages.both", and "packages.x86_64", "packages.i686" for architecture dependent packages. But they only use common repos by default. The "'qsampler" is not in official repos (that's why I choosed this one for my question).
    So, ok, I setup a common repo (with some mistakes but it was working), BUT...
    I just forgot to put the package name in the packages.both file...
    So, now that I did it, I just have an error about the package architecture, which I think possible to fix, just by rebuilding the common repo in a correct manner:
    ~/liveusb # ./build -v
    warning: vlc-2.1.5-3 is up to date -- reinstalling
    warning: mplayer-37224-2 is up to date -- reinstalling
    error: failed to prepare transaction (package architecture is not valid)
    :: package qsampler-0.2.3-1-x86_64 does not have a valid architecture
    ==> ERROR: Failed to install packages to new root
    Trilby wrote:Also, does this need to be a static iso image - is there a reason not to just do a persistent usb install?
    About the static iso image : the idea of building an iso image with all my personnal tools and config already installed on it is very pleasant to me, including the fact that you can burn it on a CD as well. The persistent acpect would be pleasant too, but in a secondary way.
    While I'm writing this message I really understand a bit more about all of this, since yesterday... Sometimes, simply posting a message in forums helps you to understand your own problem, because you have to be clear and concise!
    Thanks

  • Invalid file name error while copying some packages to USB disk.

    Hi
    I am trying to create my custom local repository by copying all the packages from /var/cache/pacman/pkg to /run/media/anand/SJCE_EEE/custompkgs on my USB storage device. But I get the following errors for some packages:
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/graphite-1:1.0.3-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/hsqldb-java-1:1.8.0.10-2-any.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/libmythes-1:1.2.3-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/libshout-1:2.3.0-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/phonon-1:4.6.0-2-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/rasqal-1:0.9.29-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/redland-1:1.0.15-3-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/redland-storage-virtuoso-1:1.0.15-3-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/vi-1:050325-2-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/xf86-video-ati-1:6.14.6-1-i686.pkg.tar.xz’: Invalid argument
    But other packages copy properly to the USB storage device. If I remove : from the file names of packages mentioned above they copy properly. Is this because of the FAT32 file system on my USB disk?
    The above mentioned packages copy properly to my home directory which is ext4 file system.
    Any suggestions to correct this?
    Thanks in advance.
    Anand

    rsamurti, you asked the moderators to do this:
    Please remove : from package file names due to the problems reported in this post. Such packages cannot be copied to FAT32 file systems.
    This is up to you. Just "Edit" the post by yourself and mark this section deleted. (See the BBCode help for this.)
    And please leave an according comment stating something like the quote above there. It would be valuable information.

  • Scrobble to last.fm from mplayer? Is it posssible with some package?

    I started using mplayer for playing mp3s. Is it possible to scrobble to last.fm from mplayer with some package like mpdscribble?
    Thank you
    Last edited by hariskar (2013-03-23 19:48:23)

    Then please do everyone a favour and mention that in your post.
    Your thread title is also misleading. The link that I provided makes it clear that it is possible to scrobble mplayer tracks, just that you want something simpler (although how that script could be simpler is a separate argument)...
    Please read How To Ask Questions The Smart Way

  • [svn:fx-3.x] 7966: Clean up some packaging code

    Revision: 7966
    Author:   [email protected]
    Date:     2009-06-18 12:30:22 -0700 (Thu, 18 Jun 2009)
    Log Message:
    Clean up some packaging code
    bug: no
    qa: no
    Modified Paths:
        flex/sdk/branches/3.x/build.xml

    Back up all data to at least two different storage devices, if you haven't already done so. One backup is not enough to be safe. The backups can be made with Time Machine or with Disk Utility. Preferably both.
    Erase and install OS X. This operation will destroy all data on the startup volume, so you had be better be sure of the backups. If you upgraded from an older version of OS X, you'll need the Apple ID and password that you used, so make a note of those before you begin.
    When you restart, you'll be prompted to go through the initial setup process in Setup Assistant. That’s when you transfer the data from a backup.
    Select only users and Computer & Network Settings in the Setup Assistant dialog—not Applications or Other files and folders. Don't transfer the Guest account, if it was enabled.
    After that, check the App Store for software updates.
    If the problem is resolved after the clean installation, reinstall third-party software selectively. I can only suggest general guidelines. Self-contained applications that install into the Applications folder by drag-and-drop or download from the App Store are usually safe. Anything that comes packaged as an installer or that prompts for an administrator password is suspect, and you must test thoroughly after reinstalling each such item to make sure you haven't restored the problem.
    I strongly recommend that you never reinstall commercial "security" products or "utilities," nor any software that changes the user interface or the behavior of built-in applications such as Safari. If you do that, the problem is likely to recur.
    Any system modifications that you do choose to install must be kept up to date. None is required for normal operation.
    Before installing any software, ask yourself the question: "Am I sure I know how to uninstall this without having to wipe the volume again?" If the answer is "no," stop.
    Never install any third-party software unless you know how to uninstall it.

  • Some package installation error during zone installation steps.....

    hi,
    i am totally new to this technology.
    i had created 3 Zone's on X86 Sun Fire X4270 M2 Hardware (OS - Solaris 10 update 9)
    & during OS Installation i had selected Software installations using the Entire Distribution.
    every thing worked fine but during zone installation steps, got some package installation error (refer the below output)
    bash-3.00# zoneadm -z OFSMU-PWM-zone1 install
    Preparing to install zone <OFSMU-PWM-zone1>.
    Creating list of files to copy from the global zone.
    Copying <158400> files to the zone.
    Initializing zone product registry.
    Determining zone package initialization order.
    Preparing to initialize <1240> packages on the zone.
    Initialized <1240> packages on zone.
    Zone <OFSMU-PWM-zone1> is initialized.
    Installation of these packages generated errors: <SUNWpostgr-82-libs SUNWpostgr-82-devel SUNWpostgr-83-server-data-root SUNWpostgr-82-server SUNWpostgr-82-contrib SUNWpostgr-82-client SUNWpostgr-82-server-data-root>
    The file </zone/OFSMU-PWM-zone1/root/var/sadm/system/logs/install_log> contains a log of the zone installation.
    i checked the log file "/zone/OFSMU-PWM-zone1/root/var/sadm/system/logs/install_log"
    its show below error's
    *** package <SUNWpostgr-82-libs> failed to install with fatal errors:
    *** package <SUNWpostgr-82-devel> failed to install with fatal errors:
    need your help my friends..
    thanks in advance....
    Edited by: Raja Kondar on Dec 9, 2010 11:59 AM

    hi DR,
    thnks for reply..
    but i can see that "postgres" already exist in the system as user &l group.
    postgres:x:90:90:PostgreSQL Reserved UID:/:/usr/bin/pfksh
    also the failed packages duirng zone creation steps are already installed in the global zone..
    is thr any other way to resolve this issue....
    Edited by: Raja Kondar on Dec 16, 2010 11:00 AM

Maybe you are looking for

  • IPhoto 'unreleased version' won't open?

    Help! I have a 7 year old PowerPC G5 running on all the original software it came with. When I tried to open iPhoto I got this message: 'The photo library was created with an unreleased version of iPhoto. Please quit and upgrade this library by openi

  • Problem with Text Messages

    Hi, I have a 5530 XpressMusic phone with around 4000+ text messages saved on the memory card. Whenever the number of text messages increases above approximately 3500+ messages, the new text message alert stops appearing, no tone or vibration alerts.

  • DB Adaptor issue

    We are sending outbound EDI 850 documents using DB adaptor. The adaptor listens to a staging table to look for new POs (delete_flag = 'N' in staging table). The adaptors runs fine for some time eg yesterday it ran fine whole day (polling frequency is

  • Link server SqlServer 2008 R2 and oracle 8i

    Hi, I have many days trying to link a oracle 8i 8.1.6.3 AIX with SQLServer 2008 R2 64 bits. I tested with ODAC: 11,10 and 9. Any one can tell me any suggestions to do it? I read many articles and blogs and says not possible to do. Some guys wroted in

  • Photosmart 6180 Vista 64-bit (hung print job)

    I have reinstalled the full product software download, also grabbed the critical updates, yet my print jobs still get hung via wireless connection.  USB connection prints fine.  Can ping the printer fine and have several other laptops that seem to pr