Bug 7010 - Unable to open two displays correctly with kde
Summary: Unable to open two displays correctly with kde
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: kdebase
Version: 6.1
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Bernhard Rosenkraenzer
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-11-15 11:54 UTC by Marc Regimbeau
Modified: 2008-05-01 15:37 UTC (History)
1 user (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 1999-11-15 13:10:38 UTC
Embargoed:


Attachments (Terms of Use)

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.


Note You need to log in before you can comment on or make changes to this bug.