[kde] Re: knode says Can't post to my newsgroup when trying to post to comp.std.c and comp.lang.c

2011-02-08 Thread Johannes Schaub (litb)
Duncan wrote:

 Johannes Schaub \(litb\) posted on Mon, 07 Feb 2011 17:30:14 +0100 as
 excerpted:
 
 I have the problem mentioned in the title. I have no idea why that
 happens. I've been sending messages to those groups the past few months
 without problems, but since a couple of hours, it doesn't work anymore.
 Reading news works fine. But posting fails with the mentioned error.
 
 Can anyone help me please?
 
 I don't use knode here (I've been a long-time pan user, and in fact use it
 to read this list/group using gmane.org's list2news service), but that
 sort of issue is generally server related and may be transient -- they'll
 fix it.  Otherwise, check your server's discussion group (most have one,
 sometimes more than one, for local server related questions and
 discussion) and/or status page, they may have it posted as an issue.
 Also, check your servers subscription, perhaps yours is almost up, or your
 server or login info got screwed up in knode's config or something.
 

It works with thunderbird, so I think it's a knode problem :( I've really no 
idea what would cause it. 

___
This message is from the kde mailing list.
Account management:  https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.


[kde] Re: How to set the KDE path?

2011-02-08 Thread Alex Schuster
Kevin Krammer writes:

 On Tuesday, 2011-02-08, Dotan Cohen wrote:

  ✈ganymede:~$ cat .kde/env/path.sh
  #!/bin/bash
  export PATH=$HOME/.bin:$PATH
 
 Maybe try without the first line.

Hmm, this can't really matter, it's just a comment.

I'd try adding something like
echo $PATH  /tmp/startkde.log
to verify if this file is being sourced. Or maybe even edit 
/usr/bin/startkde, activating bash debug output, putting all stuff between 
parantheses and redirecting output to another log file:

#!/bin/sh
#
#  DEFAULT KDE STARTUP SCRIPT ( 4.6.00 (4.6.0) )
#

(
set -xv # enable debugging
[rest of script]
)  /tmp/startkde.fulllog 21


It might be better to only put the relevant part into parantheses. On my 
Gentoo system it's from line 199 to 214:

(
set -xv
libpath=`kde4-config --path lib | tr : '\n'`

for prefix in `echo $libpath | sed -n -e 's,/lib[^/]*/,/env/,p'`; do
  for file in $prefix*.sh; do
test -r $file  . $file
  done
done
)  /tmp/startkde.fulllog 21

Wonko
___
This message is from the kde mailing list.
Account management:  https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.