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


 
Thread Tools Search this Thread
Operating Systems Linux (PMT:6498): Gtk-WARNING **: cannot open display:
# 1  
Old 04-01-2013
(PMT:6498): Gtk-WARNING **: cannot open display:

Hai

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

how to solve this in linux

Moderator's Comments:
Mod Comment Double post.. continue here
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. UNIX for Dummies Questions & Answers

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: Gtk-WARNING **: Unable to locate theme engine in module_path: "oxygen-gtk" Gtk-WARNING **: Unable to locate theme engine in... (3 Replies)
Discussion started by: friend
3 Replies

3. 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

4. UNIX for Dummies Questions & Answers

Can't Open Display localhost:0.0

I'm trying to connect to my linux server but I'm having some major problems. The server had OEL 5 installed and my local pc is running Windows XP. I'm using PuTTy to connect to the server with Xming running on my loacl machine. I login as root and run the following command - export... (5 Replies)
Discussion started by: garethnsolomons
5 Replies

5. Red Hat

Error: Can't open display: :0.0

Hi, I get errors while running xclock from a non root user: # xclock --- this works fine # su - girish $ DISPLAY=:0.0; export DISPLAY $ xclock Xlib: connection to ":0.0" refused by server Xlib: No protocol specified Error: Can't open display: :0.0 $ I basically want to... (4 Replies)
Discussion started by: girish1428
4 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. UNIX for Dummies Questions & Answers

how to open a text file using some tool such as gedit under gtk

how to open a text file using some tool such as gedit under gtk I list some text file names in a GtkCList . I want to open the file on when users click on the row. How to implement this ? Thanks (0 Replies)
Discussion started by: cy163
0 Replies

8. UNIX for Dummies Questions & Answers

how to open a text file by double clicking on the file name in gtk+

how to open a text file by double clicking on the file name shown in a label widget in gtk+. thanks (0 Replies)
Discussion started by: cy163
0 Replies

9. UNIX for Advanced & Expert Users

xhost unable to open display

I am trying to install ORACLE 10g database on HP-UNIX 11.11 I am running OUI runinstaller from exceed terminal from windows PC. I have set DISPLAY=IPAddress of PC:0.0 When installer starts it is giving me error of display (5 Replies)
Discussion started by: ymg
5 Replies

10. UNIX for Dummies Questions & Answers

xhost: unable to open display????

I am a dba, not an sa, that recently had to take over administering an HP-UX server. Needless to say I am not in a comfortable area, but found out that of all people I am the most knowledgeable on unix here .... scary thought I know. I am having troubles exporting my display to a Windows XP... (5 Replies)
Discussion started by: soestx
5 Replies
Login or Register to Ask a Question
Gnome(3)						User Contributed Perl Documentation						  Gnome(3)

NAME
Gnome - Perl module for the Gnome libraries SYNOPSIS
use Gnome; Gnome->init('myapp'); my $app = new Gnome::App("myapp", "myapp window title"); $app->create_menus({type => 'subtree', label => '_File', subtree => [ ['item', '_Quit', undef, sub {exit}, 'stock', 'Quit'], ]}); my $canvas = new Gnome::Canvas; $canvas->set_scroll_region(0, 0, 300, 300); $canvas->set_usize(300, 300); $canvas->root->new($canvas->root, 'Rect', x1 => 10, y1 => 10, x2 => 150, y2 => 250, fill_color => '#0f0ef2', outline_color => 'black'); $app->set_contents($canvas); $app->show_all; Gtk->main; DESCRIPTION
The Gtk module allows Perl access to the widgets and other facilities in the Gnome libraries. You can find more information about Gnome on http://www.gnome.org. The Perl binding tries to follow the C interface as much as possible, providing at the same time a fully object ori- ented interface and Perl-style calling conventions. You will find the reference documentation for the Gnome module in the "Gnome::reference" manpage. More information can be found on http://gtkperl.org. AUTHOR
Kenneth Albanowski, Paolo Molaro SEE ALSO
perl(1), Gtk(3pm), Gtk::reference(3pm), Gnome::reference(3pm) perl v5.8.0 2001-06-26 Gnome(3)