On Fri, 30 Nov 2007 00:47:01 +0000 John Murphy <[EMAIL PROTECTED]> 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 -- _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"