Results 1 to 3 of 3
Hi everybody,
I've seen this problem many times on Mdk installations (both with 9.2 and 10.0 / both on laptops (sony vajo, acer tm 800, acer tm 290) or workstation).
...
- 10-24-2004 #1Just Joined!
- Join Date
- Oct 2004
- Posts
- 5
KDE application slow to open on Mdk
Hi everybody,
I've seen this problem many times on Mdk installations (both with 9.2 and 10.0 / both on laptops (sony vajo, acer tm 800, acer tm 290) or workstation).
The problem is that when I open an application with a mouse click it takes a lot to really open it. With ps aux I can see the process, but many times it takes about 5 minutes for the window to open!!! The programs giving me this problem are: konqueror(also as file manager), kate, kwrite, openoffice and some others
I also happens that sometimes konqueror freezes for some minutes when I write in any form (both in the page and in the navigation bar!). In mdk 9.2 I got this problem also with mozilla! Now I use mdk 10.0 and with firefox it's ok.
Checking memory and cpu usage tells that's enough memory...
I searched everywhere but still I can't find out anything helping me...
What could it be?
Code:for list in $everybody do echo "Thanks to $list" done
eagleone
- 10-27-2004 #2Just Joined!
- Join Date
- Oct 2004
- Posts
- 28
i think the pc speed depends on power of prcessor and RAM,and linux grphics may be need more powerfull precessors and RAM space.
- 10-29-2004 #3Just Joined!
- Join Date
- Oct 2004
- Posts
- 5
I found that the problem is that I didn't configure my /etc/hosts...
My problem is that I always change IP and tipe of connection... I should make a script like this:
And this way it works but my problem now is:Code:#!/bin/bash INTERFACE="eth0" MYIP="192.168.1.99" NETMASK="255.255.255.0" BROADCAST="192.168.1.255" GATEWAY="192.168.1.1" DOMAIN="eagleone.net" ifconfig $INTERFACE down ifconfig $INTERFACE $MYIP netmask $NETMASK broadcast $BROADCAST route add default gw $GATEWAY # Configuring /etc/resolv.conf echo "search $DOMAIN" > /etc/resolv.conf echo "nameserver $GATEWAY" >> /etc/resolv.conf # Configuring /etc/hosts echo "127.0.0.1 localhost" > /etc/hosts echo "$GATEWAY server.$DOMAIN server" >> /etc/hosts echo "$MYIP laptop.$DOMAIN laptop" >> /etc/hosts
- I always change IP and type of connecition (DHCP, adsl, modem, WLAN, ...)
- If I make a script I should launch it as root... And I'm always loosing a lot of time for manual configuration...


Reply With Quote
