Gtk-WARNING **:


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Gtk-WARNING **:
# 1  
Old 03-01-2013
Gtk-WARNING **:

Hi all,

I want to run a 32 bit program on a 64 bit linux machine. Installing the program was no issue but when I try to run it I get Warnings that look like this:

Code:
Gtk-WARNING **: Unable to locate theme engine in
module_path: "oxygen-gtk"

Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks"

Couldn't find an easy solution when I googled the problem Smilie

Would be great if you could help!

Thanks.

Last edited by Scrutinizer; 03-01-2013 at 07:50 AM.. Reason: code tags
# 2  
Old 03-01-2013
It looks like your dependencies are not available as 32bit libraries, or if they do exist; or you do not have LD_LIBRARY_PATH set to accomodate them.

When you run 32/64/ there normally is some kind of dichotomy in the library tree
Code:
/usr/lib           <- default 64 bit
/usr/lib/lib32   <- 32 bit libraries

There are variations on this.

This is true for library trees in /opt, $ORACLE_HOME or anywhere else on your system.

What is the output of:
Code:
ldd my32bitapp

Resolve all of the 'not found' entries.

Next, for each library in the list produced above:
Code:
ldd libraryname

Resolve not found entries.

This is a dependency problem. And you may find libraries that require other libraries that require even more libraries.
# 3  
Old 03-01-2013
So I think in my case the dichotomy in the library tree is like this:

Code:
/usr/lib64/  <-- default 64 bit
/usr/lib       <-- 32 bit libaries

But I'm not sure. So how can I test that?

The output of

Code:
ldd my32bitapp

is:

Code:
ldd: ./my32bitapp: No such file or directory

Any further suggestions?
# 4  
Old 03-04-2013
This is not a standard linker error.
look for GTK environment variables
Code:
env | grep GTK

Eventually there is a mismatch between your current GTK environment variables and the 32-bit GTK environment?
Then maybe it helps to undefine them?
Code:
unexport GTK_PATH

Or redefine them?
Look for missing (32-bit) gtk package like gtk-engines.
Code:
rpm -qa | grep '^gtk'

 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Fedora

GTK Themes

Hi, So, I have a GTK based GUI app. I used GTKdevel-2.24 to develop and compile it on two different distros of linux: Fedora 14 and Linaro (tablet). All of my code was the same for each but compiled on each platform separately (32bit and ARM). Both distros run the application. On Fedora 14... (0 Replies)
Discussion started by: fedora18
0 Replies

2. Red Hat

(PMT:6498): Gtk-WARNING **: cannot open display:

Error message: (PMT:6498): Gtk-WARNING **: cannot open display: How to solve this issue in linux? (1 Reply)
Discussion started by: vinayd
1 Replies

3. Linux

(PMT:6498): Gtk-WARNING **: cannot open display:

Hai (PMT:6498): Gtk-WARNING **: cannot open display: how to solve this in linux Double post.. continue here (0 Replies)
Discussion started by: vinayd
0 Replies

4. Programming

curses.h not found , gtk/gtk.h not found

i have downloaded <libncurses5-dev_5.7+20101128-1_i386.deb> and <ndk++-0.0.1alpha4.tar.bz2> which contains the header files curses.h and gtk/gtk.h .. i have also included them using .. #include "/home/ball/Desktop/Sudoku/project/libncurses5-dev_5.7+20101128-1_i386/usr/include/curses.h" ... (2 Replies)
Discussion started by: upvan111
2 Replies

5. AIX

Firefox on AIX, Gtk-WARNING

Hi, I try install firefox on AIX 6.1.. Now i get error then write /usr/bin/firefox command in ssh: (firefox-bin:1478838): Gtk-WARNING **: cannot open display: I heard, that need set DISPLAY or smth like that.. Also I try run firefox by vncviewer, but double click on firefox-bin not... (1 Reply)
Discussion started by: titasas
1 Replies

6. UNIX for Dummies Questions & Answers

"Gtk-WARNING cannot open display" from ssh

I am trying to do something on another computer through ssh and I keep getting this:"(gedit:6169): Gtk-WARNING **: cannot open display:"I have googled the interweb and this forum and found many posts but nothing seems to work. I have freshly installed Ubuntu 8.10 with updates on the machine and I... (4 Replies)
Discussion started by: badrabbit6
4 Replies

7. Programming

GUI without GTK - Is it possible?

Is GUI programming without GTK possible? If so, how? Or what libraries should I #include? Google seems to tell me that GUI programming in C++ is much more popular then in C. I'm assuming because of the Object Orientedness (if that is even a word)? Before you say things like "Search the forums",... (5 Replies)
Discussion started by: Octal
5 Replies

8. Post Here to Contact Site Administrators and Moderators

GTK+ project

Hai, I am santhosh,I am fresher to this Forum,I want details about GTK+ Project(All Widgets--- I mean how they are programming in callback.c file). if it possible please send information regarding this Glade tool.I want to interface glade with Modbus protocol, Thankyou with best regards,... (0 Replies)
Discussion started by: santhosh.linux
0 Replies

9. Linux

GTK+ hates me

I am very new to the linux environment. I have been interested in it for years but have just recently had the courage to pop that install disk into my PC. Because of it's ease of installation, I installed Mandrake 9.1 and I'm running KDE3.1 for my GUI. Right now I'm trying to conquer the world... (5 Replies)
Discussion started by: n0data
5 Replies
Login or Register to Ask a Question