OpenSUSE :: Bouncing Icons But Software Not Loading?
May 8, 2010
I have 2 icons on my Desktop (Firefox and Thunderbird) on my newly installed openSUSE 11.2, which when I click on them the icon bounces for about 30 seconds, but then stops bouncing and the software doesn't load. I've deinstalled and reinstalled the software to no avail. What causes these icons to bounce but then not load? Is there anyway I can fix this so the software loads normally? I have a working internet connection, so it's not because of the lack of internet, as far as I can tell.
View 9 Replies
ADVERTISEMENT
Feb 24, 2010
I have just recently switched from Gnome to KDE in 11.2 since there was some sort of major KDE update that fixed the issues I had been having with KDE. Ever since, I have not been able to get miro to load. I try to run it and all I get is the bouncing logo, then nothing. When I try to run Miro in terminal, I get this:
solomon@linux-yz7i:~> miro
ERROR:dbus.proxies:Introspect error on :1.150:/org/participatoryculture/dtv/OneTime: dbus.etop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote applicge bus security policy blocked the reply, the reply timeout expired, or the network connect
PyNotify support disabled on your platform.
And it will sit there for eternity or until I close the terminal window. When I run Miro as root, I get this:
linux-yz7i:/home/solomon # miro
Traceback (most recent call last):
File "/usr/bin/miro.real", line 48, in <module>
upgrade.upgrade()
File "/usr/lib/python2.6/site-packages/miro/plat/upgrade.py", line 77, in upgrade
if client.dir_exists("/apps/democracy/player") and not client.dir_exists("/apps/miro"):
glib.GError: Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See GConf configuration system for information. (Details - 1: Failed to get connection to session: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.)
View 7 Replies
View Related
Nov 29, 2010
I am running Centos 5.5 X86_64 and recently after updating my server, I am having problem loading gnome. When the server boots, and begins to bring up the login screen theme, I get an error that states "Could not recognize the image file format for /usr/share/gdm/themes/TreeFlower/background.png"I am able to login after clicking ok to this message, and using the "simplistic" login manager. But when the users desktop loads, there are several errors pertaining to "unsupported image format" and none of the icons are displaying correctly. They are just the default "curvy page" icon for an unassociated file type. Some of the icons do not even show up at all.
Another thing I noticed wierd is that when I try to view a png, nothing happens. When I try to open one using gimp, I get an "unsupported file type" error. When I tried to click on the "add/remove software" button I get prompted for root pass, but nothing happens.
View 2 Replies
View Related
Nov 29, 2010
I am running Centos 5.5 X86_64 and recently after updating my server, I am having problem loading gnome. When the server boots, and begins to bring up the login screen theme, I get an error that states "Could not recognize the image file format for /usr/share/gdm/themes/TreeFlower/background.png" I am able to login after clicking ok to this message, and using the "simplistic" login manager. But when the users desktop loads, there are several errors pertaining to "unsupported image format" and none of the icons are displaying correctly. They are just the default "curvy page" icon for an unassociated file type. Some of the icons do not even show up at all.
Another thing I noticed wierd is that when I try to view a png, nothing happens. When I try to open one using gimp, I get an "unsupported file type" error. When I tried to click on the "add/remove software" button I get prompted for root pass, but nothing happens. So, I tried launching pirut from CLI, and I received the following error:
Quote:
[root@server ~]# pirut
Traceback (most recent call last):
File "/usr/sbin/pirut", line 41, in ?
from pirut import *
[code]...
View 14 Replies
View Related
May 11, 2010
Since I've upgraded to 10.04 from 9.10 my computer has started acting strange. First of all, it keeps forgetting my wallpaper. Most of the time, not all of the time. Another problem is that the power-button in the upper right corner does not appear at every boot. It seems to be forgetting other settings as well from time to time.
What I belive might be causing this problem is that I mount my home directory from a server, and a wild guess is that it is somehow a random order of the startup sequence, so that some features are loaded before the mounting is complete.
View 5 Replies
View Related
Jan 13, 2010
I am running CentOS 5.4, which I am occasionally managing via VNC from windows machine. This all occured after one long VNC session although I can't confirm this was the real reason. I also must say that I've seen some posts from people that had the same problem, but not anything helpful. Here is what happens:
Even if I start the machine from scratch I get the following error messages just before the login prompt and type of session window shows:
COULDN'T RECOGNIZE THE IMAGE FILE FORMAT FOR THE FILE '/USR/SHARE/GDM/THEMES/TREEFLOWER/BACKGROUND.PNG
THERE WAS AN ERROR LOADING THE THEME AND THE DEFAULT THEME COULD NOT BE LOADED. ATEMPTING TO START THE STANDARD GREETER.
If I choose GNOME and login I get more errors (for every icon I guess) saying:
COULD NOT LOAD ICON. UNRECOGNIZED FILE FORMAT.
Desktop then loads but there is no background image (other backgrounds don't work either) and the icons are question marks. All the menus and programs work normally.
KDE on the other hand works normally with all visuals, so I assume there must be something wrong with GDE PNG library or something, maybe GDE corruption. If I make another user it's the same story.
View 3 Replies
View Related
Apr 10, 2010
I have 2 interfaces (only one wan facing) with public ip addressing. when i nat to the outside network, inside routed networks work fine, but when i nat to the inside interface the routed networks no longer work. That is too say when I nat to an inside ip, I appear natted, and not routed, to routed ip. My question relates to iptables: How to I say 'nat everything but the routed networks'? I have found that -d ! x.routed.1.x/x works: but I would like to write the rule so that it says -d ! x.routed.1.x/x + x.routed.2.x/x
Nat outside, working routed net:
Code:
iptables -t nat -A POSTROUTING -i x.ouside.eth.x -s 192.x.x.x/x -j SNAT --to x.outside.eth.ip
This works and I get 1 routed network (I have to drop the -i to make it work - why?):
Code:
iptables -t nat -A POSTROUTING -s 192.x.x.x/x -d ! x.routed.1.x/x -j SNAT --to x.inside.eth.ip
I would like something like this:
Code:
iptables -t nat -A POSTROUTING -s 192.x.x.x/x -d ! x.routed.1.x/x + x.routed.2.x/x /
-j SNAT --to x.inside.eth.ip
View 3 Replies
View Related
May 17, 2010
m using atmailserver which i have configured it as relay server for another domain, the problem arose sometimie when they are sending mails, the mails bouncing with the below error;my server is [URL]
----- The following addresses had permanent fatal errors -----
< Muu@zac.com>
----- Transcript of session follows -----
.. while talking to [URL]
>>> DATA
<<< 550-Virus Phishing.Heuristics.Email.SpoofedDomain detected. Mail delivery
550 avoided.
View 1 Replies
View Related
Sep 17, 2010
I have installed VirtualBox and setup a Windows Vista host, initially with a .vdi of 10gb. That filled up quickly, so I added another 20gb secondary partition, after first trying to allocate a .vdi to a SCSI controller. Configured the drive in Windows (Computer Management), and all seemed ok. I shutdown VB, and rebooted my Linux host (openSuse 11.3). Now I keep bouncing back to the login screen, and can't login to Linux KDE, but can login to a console.I do have the following info:
/etc/fstab:
/dev/dis/by-id/ata-ST9250410ASG_5VG0B5VS-part5 swap swap defaults 0 0
/dev/dis/by-id/ata-ST9250410ASG_5VG0B5VS-part6 / ext4 acl,user_xattr 1 1
[code]....
I did see a message before, that I don't see anymore, that said it could not start NFS services due to missing entry in fstab. Another I'm seeing now is it couldn't start the avahi-daemon, no space left on device. This is odd, since I have a 200GB drive, with half of it left, only max 30GB set to VB. Here's my df -k output:
/dev/sda6 Use% is 100%
devtmpfs Use% is 1%
tmpfs Use% is 1%
/dev/sda7 Use% is 46%
So root "/" is mounted on /dev/sda6, which looks like it could be a problem, but why would this suddenly be a problem after working with VirtualBox? Could this be a matter of just freeing up space on /dev/sda6? Like the /tmp folder that's under "/"?
View 2 Replies
View Related
Jun 13, 2011
I have a quite strange problem with my keyboard. When I type text fast the cursor seems to lag (for some milliseconds) as if it can't process so many characters so quickly. As a result some of the characters I have typed are omitted and sometimes I get double characters (bouncing). Sometimes this problem gets really annoying and I can't find any information about it. I'm trying to find out if it is a hardware or a software problem, but I can't figure out any way to do this. I've read that xkbset can solve bouncing, but in my case it didn't really help. I use a laptop (Toshiba Satellite C660) with Debian Squeeze (kernel 2.6.38-2-amd64).
View 5 Replies
View Related
Jul 8, 2010
Mail going to invalid email addresses are being forwarded to postmaster@domain instead of being bounced. How can I fix this? postconf -d | grep mail_version gives the following: mail_version = 2.2.5
View 4 Replies
View Related
Aug 30, 2010
This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed: xx@xx.com SMTP error from remote mail server after initial connection: host [URL] [ip address]: 50 Access denied...
View 4 Replies
View Related
Apr 29, 2010
I already restored regular icons by going to gconf. However, the icons on top right where the "power" button is located, still have no icons. Is there any way to add icons to the hibernate/ shut down , etc words?
View 4 Replies
View Related
Mar 4, 2010
how do you do it? I only manage to change Icons for applications that are "pinned" to the destkop.When I go to the root folder, all I get are Songbird icons for all applications.So I changed the Firefox and Dolphin icon on the panel. Now, when I open Dolhpin, the new icon appears on the panel next to the name of the open location.But when I go to the kmenu, it still has the old icon.When I open Firefox, the open windows on the panel still has the standard firefox logo.
View 2 Replies
View Related
Mar 24, 2010
Does anyone know how to set openSUSE up to use additional XDG icons? I downloaded a pack of icons from here that I'd quite like to use, but they're not showing up at the moment. I'm assuming that they're already named with the correct convention and I've put them in the right folder (.icons/TangoExtra/scalable/places - and the theme is being used) but I don't know if they're getting ignored because openSUSE isn't set to check those conventions.
View 9 Replies
View Related
Sep 10, 2010
I have a little problem going on with my openSUSE 11.3 // GNOME computer. Whenever I install a RPM package, whether it be from a .rpm in my Downloads, etc. or from the zypper repositories, they never have an icon. I continuously have to go to Google and find an icon for my application and change the launcher's properties in my menu.
why this is happening and how I may be able to fix it? It's getting a little tedious having to do this for everything that I install.
View 3 Replies
View Related
Apr 9, 2010
I've a folder named "lynx" in my desktop . It contains ebooks - pdfs,chms etc . The problem is sometimes when i open the folder in nautilus , the folder keep loading forever and sometimes it shows two or three files and keep on loading . But at some other times , folder contents are displayed just as any other folder(i.e normal ).
View 5 Replies
View Related
May 12, 2010
I installed Drupal and there is only one site. It I access the website [url] where Drupal is installed I can easily see it functioning properly. But on internet it is not loading properly the colors etc are not visible properly.
Following changes were made to all the sites
Code:
View 1 Replies
View Related
Apr 8, 2010
After booting, I have no desktop icons. The /home/userid/desktop directory is intact and I have the taskbar at the bottom of screen. I am using KDE. How do I restore the icons
View 3 Replies
View Related
Jul 31, 2010
I am using OpenOffice 3.2.1 and Opensuse 11.3 with KDE 4.4.4. When I use the KDE4 integration and the oxygen icon set, I'am getting a mixture of oxygen (KDE4) icons and crystal (KDE3) icons in the symbol panel (I hope this is the correct word in english). E.g. the icons for "bold", "italic" or underlined are crystal icons instead of oxygen. I had the same "problem" with Opensuee 11.2 and older OpenOffice versions.
Interestingly, when I start OpenOffice in my root account, OpenOffice shows all icons correctly as oxygen icons. When creating a new user account (a test account), OpenOffice use the icon mixture. Also transferring the ".oo3" folder of root to my user account didn't solve the "problem". Of course, this is not a real problem with OpenOffice, it's more a desing error (but I like to solve it ). Who else has a mixture of oxygen and crystal icons?
View 6 Replies
View Related
Aug 6, 2010
I have just installed suse 11.3 and I have a problem in previewing images. Dolphin does preview the images, but they look corrupted. When I point with the mouse, images are shown perfectly on the information area on the right. I found that as I increase the preview size from the default 64 pixels to the maximum 256 pixels, most of the images are previewed correctly, but will only have 3 images per row
View 4 Replies
View Related
May 1, 2011
I have not used OpenSUSE for some time, but I am running 11.4 32 bit on my laptop now. The system runs fine and stable, but I am surprised to find icons missing for a few applications. They've never been there, like if they are missing from the rpm they are installed from.
View 5 Replies
View Related
Jul 11, 2011
I just completed a clean install of 11.4 -- using KDE 4.6. It's absolutely a love-hate relationship so far after upgrading from 11.1 and KDE 3.5.With 11.1 it was incredibly easy to change my icons whether they were on the desktop, or in a Konqueror folder, or on the bar at the bottom of the screen. I simply right clicked on the icon, up would pop a configuration screen, I browsed to where the icons were stored, selected one, clicked "apply" and it was done.
But not in 11.4... For the icons I've dragged onto the bottom bar (e.g., YaST, Personal Settings, Dolphin, GIMP) if I right click on any of them and then click "icon settings" I get a screen where I should be able to see and change the icon, but instead I see a grayed-out gear, and all of them seem to be controlled by root. Under 11.1 and KDE 3.5 I could change these icons, but not with 11.4.
Another example... Under System Settings>File Association>inode>directory. Here you see a plain blue folder icon.Upon left clicking that icon I can then browse to my icons, choose one, click it, and then "apply," and the icon **does** change here in the "inode/directory" screen. But the change does **not** carry over to anywhere else. Under KDE 3.5 and 11.1 it would change every folder everywhere in my home directory. I would do the same thing in "file associations" with some applications (e.g. Word, Powerpoint, and Excel which I run with Crossover Office), and by changing the icon under "file associations" it would change every similar document in my home directory. But not in 11.4. In the first case with icons on my desktop I am unable to change them (seemingly locked to root).In the second case with icons I see in "file associations" I can change them in that screen, but the changes do not then apply globally.
View 8 Replies
View Related
Jul 12, 2011
I am running the latest version of firefox 5.0.1 downloaded form Mozilla's web sight and I am getting this error message when I try to log go to my Verizon account. Anyone know how to fix this?
View 1 Replies
View Related
Oct 27, 2010
Ubuntu 10.04 not loading. Sticks at GRUB Loading message.
Read the other threads re OS not loading and GRUB. The talk about code goes over my head.
Local techie says the hardware is good. Tried reloading Ubuntu from CD. Tried loading the unmentionable OS.
Tried using Spotmau Powersuite.
View 5 Replies
View Related
Feb 5, 2010
I am running openSUSE 11.2 GNOME on a Toshiba P3 laptop. Lately after logging in all I see is a green desktop without any icons or even the taskbar at the bottom. I have to reboot and choose the fail-safe boot option, logout then log back in. This is a very annoying and recurring problem
View 9 Replies
View Related
Feb 11, 2010
When I open Dolphin to view my pictures all the icons are that of a "hot air balloon". How can I change these to show the actual picture of the file like M$ does?
View 3 Replies
View Related
Mar 8, 2010
Bottom half of the main menu has no icons. This is with any icon theme. How to restore the normal appearance?
View 1 Replies
View Related
Jun 8, 2010
It has a wrench, X, and another figure. How can I get rid of the toolbar.
View 2 Replies
View Related
Jul 18, 2010
There's a quality issue here i'm sensing. WHen i zoom icons while in Dolphin, the icons are quite fuzzy. I think it's when it reaches say 128x128 i'll estimate.It's really strange because in Mint 9 KDE, oxygen icons show cleanly at max zoom :/ How can i fix this?
View 5 Replies
View Related