Bug 7010

Summary: Unable to open two displays correctly with kde
Product: [Retired] Red Hat Linux Reporter: Marc Regimbeau <mregimbeau>
Component: kdebaseAssignee: Bernhard Rosenkraenzer <bero>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.1CC: pbrown
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-11-15 13:10:38 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Marc Regimbeau 1999-11-15 11:54:46 UTC
Every time you open a kde client, the startkde shell deletes every socket
files in /tmp/, including those opened by any other kde client.
Then, it's impossible to open any window from an kde panel.

You can easily solve that problem by deleting only the files corresponding
to your current display.

#for file in /tmp/kfm_* /tmp/kio* ; do

real_display=`echo $DISPLAY | sed "s/://" | sed "s/\..*//"`
for file in /tmp/kfm_*_$real_display /tmp/kio*_$real_display ; do
   if [ -O $file ]; then
        rm -fr $file
    fi
done

Comment 1 Bernhard Rosenkraenzer 1999-11-15 13:10:59 UTC
I've fixed it for the KDE 2.0 snapshots today; I'll fix it for 1.1.x soon.