Package install date [SOLVED]

In Ubuntu, I could find in /var/log/dpkg a list of all package related operations on the system, most importantly installations and removals of packages. How can I find the date when a package was installed on my arch system, or, even better, all dates at which a package was installed, upgraded, removed from my arch system, using the wonderful journalctl?
Last edited by doru001 (2013-07-01 17:08:05)

I can't even select pacman commands in journalctl, it requires full command like "sudo journalct _CMDLINE=sudo pacman -S mlocate" and this is not helpful. Of course, I want to know the last upgrade of the package, and this is not listed - it was listed in the long package list in the pacman confirmation question before it upgraded the system.
What should I do with the package metainformation files, maybe look at their dates?
Last edited by doru001 (2013-07-01 17:05:41)

Similar Messages

  • A script to show package install dates.

    This is just a simple perl script that will spit out a list of all of your installed packages in the order that they were installed along with their installation date. This might be useful if you notice that something has been behaving strangely for a few days and you want to check if a package upgrade coincides with when this started, or if you installed a bunch of packages the other day to test something and just can't remember which. This beats digging through the log (and doesn't rely on it either, in case you've cleaned up your log files).
    Save it as pkgInstallDateLister (or whatever you feel like calling it) and make it executable.
    It just does a simple "pacman -Q" query then pulls the %INSTALLDATE% out of the desc file for each package. You can pass it other pacman query flags too, e.g.
    pkgInstallDateLister --explicit
    pkgInstallDateLister -s xorg
    Example of output from last command:
    xorg-font-utils-1.0.3-3 2008-06-19 11:03:58
    xorg-fonts-alias-1.0.1-1 2008-06-19 11:03:58
    xorg-fonts-encodings-1.0.2-2 2008-06-19 11:03:58
    xorg-fonts-misc-1.0.0-3 2008-06-19 11:03:58
    xorg-fonts-100dpi-1.0.1-1 2008-06-19 11:07:14
    xorg-fonts-75dpi-1.0.1-2 2008-06-19 11:07:18
    xorg-apps-1.0.3-3 2008-06-19 11:07:22
    xorg-res-utils-1.0.3-2 2008-06-19 11:07:22
    xorg-server-1.4.2-1 2008-06-23 09:25:00
    xorg-server-utils-7.3-1 2008-06-23 09:25:00
    xorg-utils-7.3-1 2008-06-23 09:25:00
    xorg-xinit-1.1.0-1 2008-06-23 09:25:00
    xorg-twm-1.0.4-1 2008-07-07 22:02:45
    xorg-xauth-1.0.3-1 2008-07-07 22:02:45
    xorg-xkb-utils-7.3-1 2008-07-07 22:02:45
    The Script
    #! /usr/bin/perl
    use strict;
    use warnings;
    my $db_path = '/var/lib/pacman/local/';
    my $args = "@ARGV";
    my $pkgs = `LC_ALL=C pacman -Qi $args`;
    if ($pkgs !~ m/^Name/)
    $args = '';
    my @lines = split /\n/,$pkgs;
    foreach my $line (@lines)
    if ($line =~ m/^\S+?\/(\S+)/)
    $args .= "$1 ";
    $pkgs = `LC_ALL=C pacman -Qi $args`;
    my @pkgs = split /\n\n/, $pkgs;
    my %pkg_hash;
    my %month_hash;
    @month_hash{qw/Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec/} = (1..12);
    my $greatest_length = 0;
    foreach my $pkg (@pkgs)
    my ($name,$ver,$instdate) = $pkg =~ m/Name\s+:\s+(\S+).+?Version\s+:\s+(\S+).+?Install Date\s+:\s+([^\n]+)\n/s;
    my ($month,$date,$hms,$year) = $instdate =~ m/^\S+\s+(\S+)\s+(\d+)\s+(\S+)\s+(\S+)\s*$/;
    my $pkg_name = "$name-$ver";
    my $name_length = length($pkg_name);
    $greatest_length = $name_length if ($name_length > $greatest_length);
    my $timestamp = sprintf "%s-%02d-%02d %8s",$year,$month_hash{$month},$date,$hms;
    $pkg_hash{$pkg_name} = $timestamp;
    foreach (sort {$pkg_hash{$a} cmp $pkg_hash{$b}} sort keys %pkg_hash)
    printf "%-${greatest_length}s %s\n",$_,$pkg_hash{$_};
    Last edited by Xyne (2008-08-20 21:37:59)

    shining wrote:
    A possible implementation issue :
    http://projects.archlinux.org/?p=pacman … 3f7c9d6804
    That is, the old date entries are in string format, the new one are in unix epoch format.
    pacman handles both cases with the above commit, so you might want to just reuse pacman :
    LC_ALL=C pacman -Qi $@ | grep "Install Date"
    Ok, I've changed the script, thanks for the suggestion (and for sending me off to Google to figure out what LC_ALL=C was doing).

  • [solved] list all aur packages installed

    Hi,
    I'm looking a comman which list all AUR packages installed on my system. Man yaourt or man pacman don't help me (but maybe I missed something).
    Is it possible to list these AUR packages ?
    Last edited by ppr (2011-11-13 23:40:49)

    yaourt -Q | grep local/
    Works for me. I'm sure someone will have a better solution though.
    Last edited by WorMzy (2011-11-13 23:24:45)

  • [Solved] List AUR packages installed and only AUR packages.

    Here's a good one.  Thought this would be easy but thought it over and then looked around a bit and haven't found anything.  There's might just be an easy way to do this that will make me *bonk* my head in the morning but I haven't found it yet.  I'm looking to be able to just list the packages I have installed from AUR and not any that I have gotten from the official repos.  I've checked out some utilities in AUR (like AURcheck) but as far as I can tell they just look for AUR updates.  Anyone know of a way to do this?
    Last edited by Gen2ly (2009-10-30 14:32:22)

    I just got to reinstalling and this was a lifesaver - it worked great.  Thank for the help, brisbin, ghost, Allan...
    @Ghost, I would have used packup but I had a couple downgraded packages and I wanted to be able to troubleshoot it.
    The tip about the grep -v doing 'shortnameplus' was a good tip, Profjim.  I hadn't read this last post before and during the reinstall I was a bit surprised nvidia wasn't installed so... all is good now.
    I created a script to be able to create the backup list and restores from it simliar to ghosts and am able to run it in cron job.  Probably not a big deal, but... phhht.  Here it is for anyone that can use it:
    #!/bin/bash
    # pacbac - Create and restore from list all installed packages
    # Package list locations (official and local)
    pkglsoff=/opt/backup/pc-emach/arch-pkglist-official
    pkglsloc=/opt/backup/pc-emach/arch-pkglist-local
    # Exclude packages
    excldoff=()
    excldloc=()
    # Use filename as program name
    prog=${0##*/}
    # Text color variables
    bldblu='\e[1;34m' # blue
    bldred='\e[1;31m' # red
    bldwht='\e[1;37m' # white
    txtcyn='\e[0;36m' # cyan
    txtund=$(tput sgr 0 1) # underline
    txtrst='\e[0m' # text reset
    info=${bldwht}*${txtrst}
    pass=${bldblu}*${txtrst}
    warn=${bldred}!${txtrst}
    # If restoring, be sure yaourt is installed
    if [[ "$1" == 'r' ]] && [[ -z $(pacman -Qs yaourt) ]]; then
    echo ""
    echo -e "$warn $prog requires ${txtund}}Yaourt${txtrst} to be installed."
    echo -e " ${txtcyn}http://wiki.archlinux.org/index.php/Yaourt${txtrst}"
    echo ""
    exit
    fi
    case $1 in
    b ) # Create list of official repository packages (core, extra, community)
    echo -e "$info Creating list of official (core/extra/community packages) packages installed."
    # Create list, remove local, base
    pacman -Qqe | grep -vx "$(pacman -Qqg base)" | grep -vx "$(pacman -Qqm)" > "$pkglsoff"
    # Create list of local packages (includes the AUR)
    echo -e "$info Creating list of local (includes AUR) packages installed."
    pacman -Qqm > "$pkglsloc"
    echo -e "$pass Official package list saved to ${txtund}"$pkglsoff"${txtrst}"
    echo -e "$pass Local package list saved to ${txtund}"$pkglsloc"${txtrst}" ;;
    r ) # Update repository database, then restore packages from list
    echo -e "$info Installing packages from lists"
    sudo pacman -Sy
    # use -f to overwrite conflicting files
    sudo pacman -S --needed $(cat "$pkglsoff")
    # Yaourt doesn't have --needed check
    yaourt -S $(cat "$pkglsloc" | grep -vx "$(pacman -Qqm)") ;;
    * ) echo -e " pacbac b - build installed packages list. (dir:${txtund}"${pkglsoff%/*}"${txtrst})"
    echo -e " pacbac r - restore installed packages from package list." ;;
    esac
    Last edited by Gen2ly (2009-10-31 14:16:55)

  • Does CCPackager use installed data to compile package or does it download apps from CC again?

    Hi there
    I have to install all my CC apps on a seccond MacBook Pro so that I can take the one that I use daily in for urgent repairs. I have downloaded and istalled the packager and started with the packaging process but it seems like it might be trying to download all the installed apps again? It has been running for 40 mins now and the satus bar still sits at "3% complete". Is this normal?
    I have selected to package only the CC apps and updates that are already installed on my computer.
    My internet speed is incredibly slow and to download everything again would take days - don't have that option really...
    Could you please advise if it is possible to package installed apps without having to download them all again from the Creative Cloud.
    Thanks a mill.
    Regards Steph

    rokkitboy, unfortunately when we create package using CCpackager, it downloads the software from the internet and doesnt pull up application from the installed software.
    we can refer to the below link for more information on this
    http://helpx.adobe.com/creative-cloud/packager.html
    Regards
    Saurav Das

  • Error in update of packaging material data in mat. master

    Hi all ,
    Actually , when I was going to update the packaging material information in material master , that time noticed whole parameters - blank spaces  / attributes of the packaging material data area is not showing . Why it behaves as ? ...
    regards
    arghya

    This just tells me that you do not even know the basics of a material type.
    SAP does not check the material type name, VERP and ROH is nothing else than a couple characters from the alphabet (in German language they even make some sense). You can create your own material type HUXX for handling units and if it is correctly setup then it will work.
    How long do you consider yourself as a newcomer? you have registered in 2010. You started with SD, then MM (were all your questions got rejected because you failed to search) and now Logistics Execution (by the way I am moderator here too). And everywhere you were told to use Google to search prior to posting. Spend more time to increase the skills on searching, this gets you more benefits on the long run.
    And in the 5th year with SAP and SCN you should at least know how to report an issue. If you have an error message, then tell the exact message along with the message number. Saying the setup is properly and then complaining that the system is asking for something else does not help to solve the issue, as it it just reflects your assumption but does not tell any facts.
    If everything would be properly setup, then you would not have an issue. Does that sound logical?
    Start from wikis like that Logistics General Handling Unit Introduction - ERP SCM - SCN Wiki
    or from help.sap.com, just search with this string in google: sap best practices handling unit management

  • Automatically upgrade a package installed after the bundle is assigned

    Hi All,
    I am trying out ZLM 7.3 and thanks also the helpful posts here I feel
    quite confident with the tool.
    Mirrored the channel, assigned the bundle and the catalog for the oss
    packages and done, the installed package are upgraded with the patches
    available with the bundle.
    What I did not understand is the way to automatically upgrade a oss
    package which is installed by YaST after the bundle is assigned. My
    guess is, assign the catalog with patches to the device and whenever I
    try to install a new package I automatically install the newest one. Is
    this correct? Is there any other way to do this?
    Thanks,
    Jan

    On 11/16/2009 09:36 PM, brunold wrote:
    >
    >> I see the new package installed and marked with status "v" which
    >> according with the man pages means the bundle is installed but is of a
    >> different version compared to the one displayed in the list. Now, I
    >> would aspect it is automatically updated, instead it is not.
    >
    > I does not update the package installed by yast immediately after
    > installing it. It should recognize that there is a updated version
    > available the next time the zlm client refreshes.
    >
    You are right, after refreshing the client with rug the new package is
    installed.
    Thanks,
    Jan
    >> As said above, rug would solve the problem but I would like to use a
    >> different approach if it is possible.
    >
    > Thinking about this situation might bring up a few other ideas but I
    > have not checked if they work. When you mirror updates to your local zlm
    > server, on the zlm server there is in the package repository a folder
    > created for each bundle. If you mirror the updates for each different
    > architecture into a different local bundle and therefor a different
    > folder, you might be able to export that directory via nfs and mount it
    > on the system and then add it as a local directory in the installation
    > sources. The problem here is that yast might not be able to identify the
    > packages in a local folder if they are for this architecture or not.
    > Therefor you should create different bundles for different architectures
    > and use them.
    >
    > Another option might be to copy the bundles from that zlm mirror to a
    > different folder and create a installation source like the installation
    > dvd is. We did that when we updated our remote oes 1 sp2 systems to oes
    > 2 sp1 because we wanted to update them to a specific level we have a t
    > the zlm server but we do not want to distribute it after the update
    > accross the wire. We wanted to distribute it before we run the update
    > and then run the update from a local source. That takes some time till
    > you have the process to create such a installation source. therefor I
    > don't know if that is of interest for you. You can script it of course
    > ..
    >
    > Rainer
    >
    >

  • Install date , posting date of an equipment

    Hello All,
    I have a requirement for my ALV to display a red light if there is a difference of more than 3 in between install date and posting date.  For example if the equipment was install on 2008.01.25 and the posting date is 2008.01.29 than I should have a red light indicating that more than 3 days have passed.
    Now I have some confusion about the install date and posting date of an equipment:  is DATAB in EQUZ table install date? And for posting date, I am checking the CDPOS (cluster table) field UDATE?  Is this correct.
    Any ideas if I am going towards the right solution or not???  Also install date changes location by location for the equipment.  How to get all these data?  is there any other table I can look into? 
    Any help will be great!  Thanks in advance.

    Thanks...solved the issue...

  • Install Data Services on UNIX Solaris

    Hi all,
    I`m trying to install Data services on Unix solaris and when I write ' ./install.sh' on command line it show this:
    SunOS: Your system is missing required components:
    Missing package:CE-unsup
    If you continue your installation maybe not work correctly.
    Please press Enter to continue.....
    (I press Enter)
    Patch checking complete
    /tmp/Data_services/perl/boperl.sh: line 18: bin/perl: cannot execute [Invalid argument]
    /tmp/Data_services/perl/boperl.sh[88]: /tmp/Data Services/perl/bin/perl: /tmp/Data_Services/perl/bin/perl:cannot execute [invalid argument]
    sybase@opensolaris: /tmp/Data_services
    Any idea whit this problem?
    Thanks in advance.

    Hi Eduardo,
    if its not in there its not supported.
    I made the experience that it somethimes work installing a BO product on a not supported UNIX OS. But that was mainly BOE not DS.
    Maybe you can install DS on open Solaris but you wont get support for it.
    If you really need to know when or if open solaris is supported than i would suggest you raise a Support MEssage at SAP.
    Regards
    -Seb.

  • DSXI v3.2 SP2 Cleansing Package Install Error

    Installing Data Services v3.2 SP2 on a Windows 2008 server using MSSQL 2008 as the repository.
    Install went fine.  Used RepoManager to install Local, Profiler and Central Repo's without issue.
    However when installing the cleansing package, it just stops.  No error or return codes.  It just freezes (I'll post the detail log below) after the 4th execute command.  I can confirm that the 32-bit MSSQL libraries are installed, MSSQL is UTF-8, the user has full database rights to the CP repo, and the DSXI file directories have full access rights.
    As a work around, I painfully executed each of the installation scripts manually from the command line and was able to successfully load the English package.
    I've never seen this happen before and have successfully installed v3.2 SP2 on other 64-bit servers.  I do have to install the French and other packages at some point and do not want to have to manually process these scripts again.
    Any ideas?
    Connection Information:
       Database type: SQL Server 2008
       Database server name: vsapod1
       Database name: DSRepo_CP
       User name: DSRepo_Admin
       Password: ***
    DCRI Library Version: "1.08".
    Verifying the cleansing package repository connection.
    Execute Command: "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverutil.bat" "VALID_CONNECTION,2008" "vsapod1" "DSRepo_CP" FALSE "DSRepo_Admin" "$PWD$" "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" ""
    Command Output:
    D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP>echo off
    BCP - Bulk Copy Program for Microsoft SQL Server.
    Copyright (C) Microsoft Corporation. All Rights Reserved.
    Version: 10.0.1600.22
    sqlcmd -S "vsapod1" -d "DSRepo_CP" -U "DSRepo_Admin" -P *** -Q ""
    Return code: 0
    Successfully verified the cleansing package repository connection.
    Extracting "PERSON_FIRM_EN_VERSION.txt" from "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip".
    Execute Command: "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\unzip" -j -qq -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip" PERSON_FIRM_EN_VERSION.txt -d "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP"
    Command Output:
    Return code: 0
    Checking whether the cleansing package repository exists.
    Execute Command: "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverutil.bat" "CHECK_FOR_REPOSITORY,2008" "vsapod1" "DSRepo_CP" FALSE "DSRepo_Admin" "$PWD$" "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP\dcrisqlserver_repo_exist.txt"
    Command Output:
    D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP>echo off
    sqlcmd -S "vsapod1" -d "DSRepo_CP" -U "DSRepo_Admin" -P *** -Q "if exists (select * from dbo.sysobjects where id = object_id(N'[DC_DICTIONARY]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) select 'EXIST'" -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP\dcrisqlserver_repo_exist.txt"
    Output:
    Return code: 0
    The cleansing package repository does not exist.
    Extracting "PERSON_FIRM_EN_VERSION.txt" from "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip".
    Execute Command: "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\unzip" -j -qq -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip" PERSON_FIRM_EN_VERSION.txt -d "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP"
    Command Output:
    Return code: 0

    That was ugly, sorry it removed all of the line spacings and I can't seem to get this editor to leave them in.  So I inserted "****" between each script so if you copy my text and replace that with a line break, you should be able to read through the script:
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverutil.bat" "VALID_CONNECTION,2008" "vsapod1" "DSRepo_CP" TRUE "" "" "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" ""
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\unzip" -j -qq -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip" PERSON_FIRM_EN_VERSION.txt -d "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP"
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverutil.bat" "CHECK_FOR_REPOSITORY,2008" "vsapod1" "DSRepo_CP" TRUE "" "" "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP\dcrisqlserver_repo_exist.txt"
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\unzip" -j -qq -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip" PERSON_FIRM_EN_VERSION.txt -d "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP"
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\unzip" -j -qq -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip" PERSON_FIRM_EN_VERSION.txt -d "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP"
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\unzip" -j -qq -o "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\PERSON_FIRM_EN.zip" MSSQL_DC_DICT.txt MSSQL_DC_CLASS.txt MSSQL_DC_PRIMARY_ENTRY.txt MSSQL_DC_PRIM_CLASS_LINK.txt MSSQL_DC_SEC_TYPE.txt MSSQL_DC_SECONDARY.txt MSSQL_DC_PATT_CLASS.txt MSSQL_DC_OUTPUT_FIELD.txt MSSQL_DC_OUTPUT_CATEGORY.txt -d "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP"
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" SEED
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_CLASSIFICATION
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_PRIMARYENTRY
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_PRIMCLASSLINK
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_SECONDARYTYPE
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_SECONDARY
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_PATTERNCLASSIFICATION
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_OUTPUTCATEGORY
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_OUTPUTFIELD
    "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\dcrisqlserverload.bat" "2008" "vsapod1" "DSRepo_CP" TRUE "" "" DC_EN "D:\Program Files (x86)\Business Objects\BusinessObjects Data Services\DataQuality\datacleanse\DC_TEMP" POPULATE_DC_DICTIONARY
    Edited by: Chuck Schardong on Oct 14, 2010 9:22 AM
    Edited by: Chuck Schardong on Oct 14, 2010 9:23 AM

  • Cannot retrieve aur packages installed with yaourt

    I accidently deleted /var/lib/pacman folder while attempting to solve my update issues (updating system after a long time) . I restored my local pacman database with the excellent guide in the wiki using /var/log/pacman.log  http://wiki.archlinux.org/index.php/Pac … l_database. I was able to update and restore my system. However, yaourt is not listing my installed aur packages. I re-installed yaourt and tried packer as well but it is not able to find the aur packages I installed using yaourt earlier to my update ( It is able to install and list new aur packages) . I can run the old aur packages  but I am not able to remove or list them. How can I list these lost aur packages or remove them completely? Is there a way to retrieve the database for aur packages installed with yaourt?
    Thanks.

    Hi karol,
    Thanks for your response.
    Executing pacman -Qm only lists aur packages which were installed after I accidently deleted /var/lib/pacman. I am not able to list those aur packages that I installed with yaourt prior to my /var/lib/pacman deletion. I am not sure how the accidental deletion and this issue is related, but I would like to delete these old aur packages. One example of such an aur package installed through yaourt (prior to blunder of /var/lib/pacman deletion ) was chromium-browser. I am able to run chromium-browser, but since this package is very old I would like to remove it. However, neither pacman nor yaourt is able to remove it.
    # pacman -R chromium-browser
    chromium-browser not found, searching for group...
    error: 'chromium-browser': not found in local db
    $ yaourt -R chromium-browser
    You are not allowed to launch /usr/bin/pacman with sudo
    Please enter root password
    Password:
    chromium-browser not found, searching for group...
    error: 'chromium-browser': not found in local db
    However chromium-browser is present on my system and runs very well.
    $ locate chromium-browser
    /etc/chromium-browser
    /etc/chromium-browser/default
    /opt/chromium-browser
    /opt/chromium-browser/chrome
    /opt/chromium-browser/chrome-wrapper
    /opt/chromium-browser/chrome.pak
    /opt/chromium-browser/chrome_sandbox
    /opt/chromium-browser/libffmpegsumo.so
    /opt/chromium-browser/locales
    /opt/chromium-browser/product_logo_48.png
    /opt/chromium-browser/resources
    /opt/chromium-browser/xdg-settings
    /opt/chromium-browser/locales/am.pak
    /opt/chromium-browser/locales/ar.pak
    /opt/chromium-browser/locales/bg.pak
    /opt/chromium-browser/locales/bn.pak
    /opt/chromium-browser/locales/ca.pak
    /opt/chromium-browser/locales/cs.pak
    /opt/chromium-browser/locales/da.pak
    /opt/chromium-browser/locales/de.pak
    /opt/chromium-browser/locales/el.pak
    /opt/chromium-browser/locales/en-GB.pak
    /opt/chromium-browser/locales/en-US.pak
    /opt/chromium-browser/locales/es-419.pak
    /opt/chromium-browser/locales/es.pak
    /opt/chromium-browser/locales/et.pak
    /opt/chromium-browser/locales/fi.pak
    /opt/chromium-browser/locales/fil.pak
    /opt/chromium-browser/locales/fr.pak
    /opt/chromium-browser/locales/gu.pak
    /opt/chromium-browser/locales/he.pak
    /opt/chromium-browser/locales/hi.pak
    /opt/chromium-browser/locales/hr.pak
    /opt/chromium-browser/locales/hu.pak
    /opt/chromium-browser/locales/id.pak
    /opt/chromium-browser/locales/it.pak
    /opt/chromium-browser/locales/ja.pak
    /opt/chromium-browser/locales/kn.pak
    /opt/chromium-browser/locales/ko.pak
    /opt/chromium-browser/locales/lt.pak
    /opt/chromium-browser/locales/lv.pak
    /opt/chromium-browser/locales/ml.pak
    /opt/chromium-browser/locales/mr.pak
    /opt/chromium-browser/locales/nb.pak
    /opt/chromium-browser/locales/nl.pak
    /opt/chromium-browser/locales/or.pak
    /opt/chromium-browser/locales/pl.pak
    /opt/chromium-browser/locales/pt-BR.pak
    /opt/chromium-browser/locales/pt-PT.pak
    /opt/chromium-browser/locales/ro.pak
    /opt/chromium-browser/locales/ru.pak
    /opt/chromium-browser/locales/sk.pak
    /opt/chromium-browser/locales/sl.pak
    /opt/chromium-browser/locales/sr.pak
    /opt/chromium-browser/locales/sv.pak
    /opt/chromium-browser/locales/sw.pak
    /opt/chromium-browser/locales/ta.pak
    /opt/chromium-browser/locales/te.pak
    /opt/chromium-browser/locales/th.pak
    /opt/chromium-browser/locales/tr.pak
    /opt/chromium-browser/locales/uk.pak
    /opt/chromium-browser/locales/vi.pak
    /opt/chromium-browser/locales/zh-CN.pak
    /opt/chromium-browser/locales/zh-TW.pak
    /opt/chromium-browser/resources/inspector
    /opt/chromium-browser/resources/inspector/Images
    /opt/chromium-browser/resources/inspector/devtools.css
    /opt/chromium-browser/resources/inspector/devtools.html
    /opt/chromium-browser/resources/inspector/devtools.js
    /opt/chromium-browser/resources/inspector/inspector.css
    /opt/chromium-browser/resources/inspector/inspector.html
    /opt/chromium-browser/resources/inspector/inspectorSyntaxHighlight.css
    /opt/chromium-browser/resources/inspector/Images/back.png
    /opt/chromium-browser/resources/inspector/Images/checker.png
    /opt/chromium-browser/resources/inspector/Images/clearConsoleButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/closeButtons.png
    /opt/chromium-browser/resources/inspector/Images/consoleButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/consoleIcon.png
    /opt/chromium-browser/resources/inspector/Images/cookie.png
    /opt/chromium-browser/resources/inspector/Images/database.png
    /opt/chromium-browser/resources/inspector/Images/databaseTable.png
    /opt/chromium-browser/resources/inspector/Images/debuggerContinue.png
    /opt/chromium-browser/resources/inspector/Images/debuggerPause.png
    /opt/chromium-browser/resources/inspector/Images/debuggerStepInto.png
    /opt/chromium-browser/resources/inspector/Images/debuggerStepOut.png
    /opt/chromium-browser/resources/inspector/Images/debuggerStepOver.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallDown.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallDownBlack.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallDownWhite.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallRight.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallRightBlack.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallRightDown.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallRightDownBlack.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallRightDownWhite.png
    /opt/chromium-browser/resources/inspector/Images/disclosureTriangleSmallRightWhite.png
    /opt/chromium-browser/resources/inspector/Images/dockButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/elementsIcon.png
    /opt/chromium-browser/resources/inspector/Images/enableOutlineButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/enableSolidButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/errorIcon.png
    /opt/chromium-browser/resources/inspector/Images/errorMediumIcon.png
    /opt/chromium-browser/resources/inspector/Images/errorRedDot.png
    /opt/chromium-browser/resources/inspector/Images/excludeButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/focusButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/forward.png
    /opt/chromium-browser/resources/inspector/Images/glossyHeader.png
    /opt/chromium-browser/resources/inspector/Images/glossyHeaderPressed.png
    /opt/chromium-browser/resources/inspector/Images/glossyHeaderSelected.png
    /opt/chromium-browser/resources/inspector/Images/glossyHeaderSelectedPressed.png
    /opt/chromium-browser/resources/inspector/Images/goArrow.png
    /opt/chromium-browser/resources/inspector/Images/graphLabelCalloutLeft.png
    /opt/chromium-browser/resources/inspector/Images/graphLabelCalloutRight.png
    /opt/chromium-browser/resources/inspector/Images/grayConnectorPoint.png
    /opt/chromium-browser/resources/inspector/Images/largerResourcesButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/localStorage.png
    /opt/chromium-browser/resources/inspector/Images/nodeSearchButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/paneBottomGrow.png
    /opt/chromium-browser/resources/inspector/Images/paneBottomGrowActive.png
    /opt/chromium-browser/resources/inspector/Images/paneGrowHandleLine.png
    /opt/chromium-browser/resources/inspector/Images/paneSettingsButtons.png
    /opt/chromium-browser/resources/inspector/Images/pauseOnExceptionButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/percentButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/profileGroupIcon.png
    /opt/chromium-browser/resources/inspector/Images/profileIcon.png
    /opt/chromium-browser/resources/inspector/Images/profileSmallIcon.png
    /opt/chromium-browser/resources/inspector/Images/profilesIcon.png
    /opt/chromium-browser/resources/inspector/Images/profilesSilhouette.png
    /opt/chromium-browser/resources/inspector/Images/radioDot.png
    /opt/chromium-browser/resources/inspector/Images/recordButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/recordToggledButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/reloadButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/resourceCSSIcon.png
    /opt/chromium-browser/resources/inspector/Images/resourceDocumentIcon.png
    /opt/chromium-browser/resources/inspector/Images/resourceDocumentIconSmall.png
    /opt/chromium-browser/resources/inspector/Images/resourceJSIcon.png
    /opt/chromium-browser/resources/inspector/Images/resourcePlainIcon.png
    /opt/chromium-browser/resources/inspector/Images/resourcePlainIconSmall.png
    /opt/chromium-browser/resources/inspector/Images/resourcesIcon.png
    /opt/chromium-browser/resources/inspector/Images/resourcesSilhouette.png
    /opt/chromium-browser/resources/inspector/Images/resourcesSizeGraphIcon.png
    /opt/chromium-browser/resources/inspector/Images/resourcesTimeGraphIcon.png
    /opt/chromium-browser/resources/inspector/Images/scriptsIcon.png
    /opt/chromium-browser/resources/inspector/Images/scriptsSilhouette.png
    /opt/chromium-browser/resources/inspector/Images/searchSmallBlue.png
    /opt/chromium-browser/resources/inspector/Images/searchSmallBrightBlue.png
    /opt/chromium-browser/resources/inspector/Images/searchSmallGray.png
    /opt/chromium-browser/resources/inspector/Images/searchSmallWhite.png
    /opt/chromium-browser/resources/inspector/Images/segment.png
    /opt/chromium-browser/resources/inspector/Images/segmentChromium.png
    /opt/chromium-browser/resources/inspector/Images/segmentEnd.png
    /opt/chromium-browser/resources/inspector/Images/segmentHover.png
    /opt/chromium-browser/resources/inspector/Images/segmentHoverChromium.png
    /opt/chromium-browser/resources/inspector/Images/segmentHoverEnd.png
    /opt/chromium-browser/resources/inspector/Images/segmentHoverEndChromium.png
    /opt/chromium-browser/resources/inspector/Images/segmentSelected.png
    /opt/chromium-browser/resources/inspector/Images/segmentSelectedChromium.png
    /opt/chromium-browser/resources/inspector/Images/segmentSelectedEnd.png
    /opt/chromium-browser/resources/inspector/Images/segmentSelectedEndChromium.png
    /opt/chromium-browser/resources/inspector/Images/sessionStorage.png
    /opt/chromium-browser/resources/inspector/Images/splitviewDimple.png
    /opt/chromium-browser/resources/inspector/Images/splitviewDividerBackground.png
    /opt/chromium-browser/resources/inspector/Images/statusbarBackground.png
    /opt/chromium-browser/resources/inspector/Images/statusbarBackgroundChromium.png
    /opt/chromium-browser/resources/inspector/Images/statusbarBottomBackground.png
    /opt/chromium-browser/resources/inspector/Images/statusbarBottomBackgroundChromium.png
    /opt/chromium-browser/resources/inspector/Images/statusbarButtons.png
    /opt/chromium-browser/resources/inspector/Images/statusbarButtonsChromium.png
    /opt/chromium-browser/resources/inspector/Images/statusbarMenuButton.png
    /opt/chromium-browser/resources/inspector/Images/statusbarMenuButtonChromium.png
    /opt/chromium-browser/resources/inspector/Images/statusbarMenuButtonSelected.png
    /opt/chromium-browser/resources/inspector/Images/statusbarMenuButtonSelectedChromium.png
    /opt/chromium-browser/resources/inspector/Images/statusbarResizerHorizontal.png
    /opt/chromium-browser/resources/inspector/Images/statusbarResizerVertical.png
    /opt/chromium-browser/resources/inspector/Images/storageIcon.png
    /opt/chromium-browser/resources/inspector/Images/successGreenDot.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarBlue.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarGray.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarGreen.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarOrange.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarPurple.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarRed.png
    /opt/chromium-browser/resources/inspector/Images/timelineBarYellow.png
    /opt/chromium-browser/resources/inspector/Images/timelineCheckmarks.png
    /opt/chromium-browser/resources/inspector/Images/timelineDots.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillBlue.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillGray.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillGreen.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillOrange.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillPurple.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillRed.png
    /opt/chromium-browser/resources/inspector/Images/timelineHollowPillYellow.png
    /opt/chromium-browser/resources/inspector/Images/timelineIcon.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillBlue.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillGray.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillGreen.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillOrange.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillPurple.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillRed.png
    /opt/chromium-browser/resources/inspector/Images/timelinePillYellow.png
    /opt/chromium-browser/resources/inspector/Images/tipBalloon.png
    /opt/chromium-browser/resources/inspector/Images/tipBalloonBottom.png
    /opt/chromium-browser/resources/inspector/Images/tipIcon.png
    /opt/chromium-browser/resources/inspector/Images/tipIconPressed.png
    /opt/chromium-browser/resources/inspector/Images/toolbarItemSelected.png
    /opt/chromium-browser/resources/inspector/Images/treeDownTriangleBlack.png
    /opt/chromium-browser/resources/inspector/Images/treeDownTriangleWhite.png
    /opt/chromium-browser/resources/inspector/Images/treeRightTriangleBlack.png
    /opt/chromium-browser/resources/inspector/Images/treeRightTriangleWhite.png
    /opt/chromium-browser/resources/inspector/Images/treeUpTriangleBlack.png
    /opt/chromium-browser/resources/inspector/Images/treeUpTriangleWhite.png
    /opt/chromium-browser/resources/inspector/Images/undockButtonGlyph.png
    /opt/chromium-browser/resources/inspector/Images/userInputIcon.png
    /opt/chromium-browser/resources/inspector/Images/userInputPreviousIcon.png
    /opt/chromium-browser/resources/inspector/Images/userInputResultIcon.png
    /opt/chromium-browser/resources/inspector/Images/warningIcon.png
    /opt/chromium-browser/resources/inspector/Images/warningMediumIcon.png
    /opt/chromium-browser/resources/inspector/Images/warningOrangeDot.png
    /opt/chromium-browser/resources/inspector/Images/warningsErrors.png
    /opt/chromium-browser/resources/inspector/Images/whiteConnectorPoint.png
    /usr/bin/chromium-browser
    /usr/share/applications/chromium-browser.desktop
    /usr/share/licenses/chromium-browser-bin
    /usr/share/licenses/chromium-browser-bin/LICENSE.txt
    /usr/share/man/man1/chromium-browser.1.gz
    /usr/share/pixmaps/chromium-browser.png
    Chromium-browser is just one of the packages I remember having installed using yaourt prior to the /var/lib/pacman deletion. I would like to know if there is a way to find all such aur packages installed through yaourt prior to /var/lib/pacman deletion and if possible, delete them.
    Thanks.
    Last edited by billy123 (2010-04-05 16:35:35)

  • HDD sometimes "hangs" and makes repetitive noises after package instal

    So I installed Arch the other day on my old computer, after getting tired of Ubuntu's  slowness and outdated versions of software. But I seem to be having a problem. Now keep in mind that this HDD works fine at all other times, and the SMART data seems OK.
    When pacman is actually installing a package (i.e. "(1/2) installing [package]"), the process sometimes hangs, while the hard drive is making a repetitive noise. This only happens directly after the package install. The system does not freeze while it is doing this. At all other times, the hard drive behaves normally and the system runs smoothly. Is there anything that pacman reads/writes to directly after the package install that could be causing this?
    EDIT: This seems to be happening on removal of packages as well.
    Last edited by Degru (2013-10-30 17:46:09)

    - "click zzzzzzzz, click zzzzzzz, click zzzzzzz"
    - fire up Disk Utility. No HDD
    Are those early signs of a dying hard drive?
    It's definitely not normal behavior. The HDD could be dying, or there could be data corruption. Either way... not good.
    I strongly recommend that you back up any important files as soon as humanly possible.
    Get anything you need off that drive... and send the computer in for service.

  • I recently upgraded to iWork v9.0.3, but when I access each applications the versions are different (i.e. Pages V.4.1, Numbers V2.6, Keynote V5.1.1) with a install date of 3/18/09 -- which is not the current install date of 2 weeks ago. Why?

    I recently upgraded to iWork v9.0.3, but when I access each applications the versions are different (i.e. Pages V.4.1, Numbers V2.6, Keynote V5.1.1) with a install date of 3/18/09 -- which is not the current install date of 2 weeks ago. Shouldn't Pages, Numbers, and Keynote show version 9.?? My MAC confirned installation of v9.0.3 and even accepted the software code. With this discrepancy, how can I determine if the latest was installed and operational? I even downloading v9.0.4, 9.0.5, and 9.1. When I tried installing these downloads it popped up note stating that a later version of Keynote was already installed.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • Install data from external hard drive?

    Hi, we have our old macbook data saved on external hard drive (old laptop had water damage but able to retrieve data). I now have new macbook, how do I install data from external hard drive to new macbook? Is it super easy? I didn't want to set up new laptop until I could understand how to install all our old data. Thanks

    Do you have the appropriate cable to connect the external drive to to new Macbook?
    If you do, the rest is easy. Connect the drive and start up the new Mac. The first steps in the setup will be to enter information about yourself, etc. etc. As you proceed you will be asked if you want to bring in data from another place. Just follow the directions, and the Mac Setup Assistant will do everything for you.
    The critical part is making sure the external is corectly connected to the new computer.

  • How to install Data Insight on remote server

    Hello,
    I am working in an enviorinement in which Data Services has been installed on remote server and i access it using Remote desktop. Now i need to install Data Insight and i am not sure where should Data Insight be installed. should it be installed on my local machine or on remote server. If on remote server, can i install it from my local machine?
    Thanks
    Adi

    What was your solution?
    Cheers,
    Julius

Maybe you are looking for