Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Nov 2007 21:30:22 -0500
From:      Randy Pratt <bsd-unix@embarqmail.com>
To:        John Murphy <freebsd001@freeode.co.uk>
Cc:        "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org>
Subject:   Re: Amarok crashes X (since portupgrade)
Message-ID:  <20071129213022.51c2c0b5.bsd-unix@embarqmail.com>
In-Reply-To: <20071130004701.2876bbc9@asus.freeode.co.uk>
References:  <20071130004701.2876bbc9@asus.freeode.co.uk>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 30 Nov 2007 00:47:01 +0000
John Murphy <freebsd001@freeode.co.uk> wrote:

> Testing 7.0 beta2 so I should upgrade to beta3, but all was working
> well until I portupgraded yesterday. Now amarok shuts down X server:
> 
> Nov 30 00:14:37 asus kdm-bin[1146]: X server for display :0 terminated
> unexpectedly
> 
> I get a couple of lines of text if I start it from an xterm, but they
> are gone too quick to read. I will upgrade tomorrow, but my question
> is more: how can I discover which ports were upgraded most recently

I use a little shell script to find upgrade dates:

====
#!/bin/sh

cd /var/db/pkg
list="$(ls -trd */+COMMENT)"

for item in ${list}; do
   _date="`stat -f "%Sm" ${item}`"
   printf "%-25s %s\n" "${_date}" "`echo ${item} | sed 's/\/.*//'`"

done
====

I can't help with the debug part though.

Randy



-- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20071129213022.51c2c0b5.bsd-unix>