Sat Jun 23, 2012 12:23 pm
./.xsession-errors:Error: "/home/buford/.kde/tmp-refwheezy" points to "/tmp/kde-phred" instead of "/tmp/kde-buford".
./.xsession-errors:Error: "/home/buford/.kde/cache-refwheezy" points to "/var/tmp/kdecache-phred" instead of "/var/tmp/kdecache-buford".
./.xsession-errors:Error: "/home/buford/.kde/socket-refwheezy" points to "/tmp/ksocket-phred" instead of "/tmp/ksocket-buford".
./.xsession-errors:kded(3923) LayoutMemoryPersister::restoreFromFile: Failed to open layout memory xml file for reading "/home/buford/.kde/share/apps/kded/session/keyboard/layout_memory.xml" error: 5
./.xsession-errors:I/O warning : failed to load external entity "/home/buford/.qalculate/eurofxref-daily.xml"
./.xsession-errors:I/O warning : failed to load external entity "/home/buford/.qalculate/eurofxref-daily.xml"
Tue Jun 26, 2012 1:01 am
f"aptitudepurgekdeplasmadesktop"smithred
Tue Jun 26, 2012 2:33 pm
if [[ -d /home/"$oldname"/.kde/share ]] ; then
sed -i "s/\/home\/$oldname/\/home\/$newname/g" /home/$newname/.kde/share/apps/kfileplaces/bookmarks.xml
sed -i "s/\/home\/$oldname/\/home\/$newname/g" /home/$newname/.kde/share/config/startupconfigfiles
sed -i "s/\/home\/$oldname/\/home\/$newname/g" /home/$newname/.kde/share/config/ksmserverrc
fi
Wed Jun 27, 2012 3:51 pm
[super-user-command]
super-user-command=sudo
Fri Jun 29, 2012 10:47 am
Fri Jun 29, 2012 10:49 am
Fri Jun 29, 2012 6:23 pm
Sun Jul 01, 2012 12:39 pm
Sun Jul 01, 2012 1:23 pm
while true; do
echo "
$oldname must not be logged in if you want to proceed.
If you answer \"yes\", this script will stop the display manager and
kill any processes owned by $oldname. Say \"no\" if you want to exit
the script and go back to manually close any running programs.
Kill ${oldname}'s processes now? (y or n)
"
read ans
case $ans in
[Yy]*) for i in $(pgrep -u $oldname) ; do
kill $i
done
break ;;
[Nn]*) exit 0
esac
done
Sun Jul 01, 2012 3:03 pm