all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* cant start Emacs in a sperate window
@ 2006-01-06  9:01 Misha
  2006-01-06  9:10 ` Joost Helberg
  2006-01-06 18:55 ` Olivier Tétard
  0 siblings, 2 replies; 9+ messages in thread
From: Misha @ 2006-01-06  9:01 UTC (permalink / raw)


I use Emacs 21.3 under Ubuntu Linux. I'm unable to start 
emacs
in a sepatate X11 Window. If I do

bash$ emacs

it starts in the terminal window. If I do

bash$ emacs & 

it just stops.

Do you have an idea what happens? 

Thanks in advance.
---
Professional hosting for everyone - http://www.host.ru

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:01 cant start Emacs in a sperate window Misha
@ 2006-01-06  9:10 ` Joost Helberg
  2006-01-06  9:19   ` Misha
  2006-01-06 18:55 ` Olivier Tétard
  1 sibling, 1 reply; 9+ messages in thread
From: Joost Helberg @ 2006-01-06  9:10 UTC (permalink / raw)
  Cc: help-gnu-emacs

Misha,

Your DISPLAY environment variable is not set.
  $ echo $DISPLAY
should show something like:
  :0.0
If not, your OS didn't set it up correctly.
Try:
  $ DISPLAY=:0.0 emacs

Joost

>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
 > Date: Fri, 06 Jan 2006 12:01:03 +0300

 > I use Emacs 21.3 under Ubuntu Linux. I'm unable to start 
 > emacs
 > in a sepatate X11 Window. If I do

 > bash$ emacs

 > it starts in the terminal window. If I do

 > bash$ emacs & 

 > it just stops.

 > Do you have an idea what happens? 

 > Thanks in advance.
 > ---
 > Professional hosting for everyone - http://www.host.ru


 > _______________________________________________
 > help-gnu-emacs mailing list
 > help-gnu-emacs@gnu.org
 > http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

-- 
Joost Helberg
Snow B.V.        http://snow.nl Tel 0418-653333 Fax 0418-653666
Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 0418-653666

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:10 ` Joost Helberg
@ 2006-01-06  9:19   ` Misha
  2006-01-06  9:24     ` Joost Helberg
  0 siblings, 1 reply; 9+ messages in thread
From: Misha @ 2006-01-06  9:19 UTC (permalink / raw)
  Cc: help-gnu-emacs

Thanks Joost,

But your advice seems not to work.

I do:
$ echo $DISPLAY 
:0.0

$DISPLAY=:0.0 emacs 

emacs starts in the terminal window :((

What might be the problem?

Best,
Misha.


On Fri, 06 Jan 2006 10:10:42 +0100 (CET)

  Joost Helberg <joost@snow.nl> wrote:
>Misha,
>
>Your DISPLAY environment variable is not set.
>  $ echo $DISPLAY
>should show something like:
>  :0.0
>If not, your OS didn't set it up correctly.
>Try:
>  $ DISPLAY=:0.0 emacs
>
>Joost
>
>>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
> > Date: Fri, 06 Jan 2006 12:01:03 +0300
>
> > I use Emacs 21.3 under Ubuntu Linux. I'm unable to 
>start 
> > emacs
> > in a sepatate X11 Window. If I do
>
> > bash$ emacs
>
> > it starts in the terminal window. If I do
>
> > bash$ emacs & 
>
> > it just stops.
>
> > Do you have an idea what happens? 
>
> > Thanks in advance.
> > ---
> > Professional hosting for everyone - http://www.host.ru
>
>
> > _______________________________________________
> > help-gnu-emacs mailing list
> > help-gnu-emacs@gnu.org
> > http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
>
>-- 
>Joost Helberg
>Snow B.V.        http://snow.nl Tel 0418-653333 Fax 
>0418-653666
>Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 
>0418-653666

---
Professional hosting for everyone - http://www.host.ru

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:19   ` Misha
@ 2006-01-06  9:24     ` Joost Helberg
  2006-01-06  9:34       ` Misha
  0 siblings, 1 reply; 9+ messages in thread
From: Joost Helberg @ 2006-01-06  9:24 UTC (permalink / raw)
  Cc: help-gnu-emacs

Misha,

Your emacs is probably not X11 capable?

  $ ldd /usr/bin/emacs
should list X libraries like:
  libXaw3d.so.6 and libXmt.so.6

Have you tried running emacs without any personal code? E.g.:
  $ emacs -q

Joost
>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
 > Date: Fri, 06 Jan 2006 12:19:14 +0300

 > Thanks Joost,

 > But your advice seems not to work.

 > I do:
 > $ echo $DISPLAY 
 > :0.0

 > $DISPLAY=:0.0 emacs 

 > emacs starts in the terminal window :((

 > What might be the problem?

 > Best,
 > Misha.


 > On Fri, 06 Jan 2006 10:10:42 +0100 (CET)

 >   Joost Helberg <joost@snow.nl> wrote:
 >> Misha,
 >> 
 >> Your DISPLAY environment variable is not set.
 >> $ echo $DISPLAY
 >> should show something like:
 >> :0.0
 >> If not, your OS didn't set it up correctly.
 >> Try:
 >> $ DISPLAY=:0.0 emacs
 >> 
 >> Joost
 >> 
 >>>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
 >> > Date: Fri, 06 Jan 2006 12:01:03 +0300
 >> 
 >> > I use Emacs 21.3 under Ubuntu Linux. I'm unable to 
 >> start 
 >> > emacs
 >> > in a sepatate X11 Window. If I do
 >> 
 >> > bash$ emacs
 >> 
 >> > it starts in the terminal window. If I do
 >> 
 >> > bash$ emacs & 
 >> 
 >> > it just stops.
 >> 
 >> > Do you have an idea what happens? 
 >> 
 >> > Thanks in advance.
 >> > ---
 >> > Professional hosting for everyone - http://www.host.ru
 >> 
 >> 
 >> > _______________________________________________
 >> > help-gnu-emacs mailing list
 >> > help-gnu-emacs@gnu.org
 >> > http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
 >> 
 >> -- 
 >> Joost Helberg
 >> Snow B.V.        http://snow.nl Tel 0418-653333 Fax 
 >> 0418-653666
 >> Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 
 >> 0418-653666

 > ---
 > Professional hosting for everyone - http://www.host.ru

-- 
Joost Helberg
Snow B.V.        http://snow.nl Tel 0418-653333 Fax 0418-653666
Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 0418-653666

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:24     ` Joost Helberg
@ 2006-01-06  9:34       ` Misha
  2006-01-06 10:09         ` Peter Dyballa
                           ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Misha @ 2006-01-06  9:34 UTC (permalink / raw)
  Cc: help-gnu-emacs

Dear Joost. 

I tried:
$ ldd `which emacs`
         linux-gate.so.1 =>  (0xffffe000)
         libncurses.so.5 => /lib/libncurses.so.5 
(0xb7f82000)
         libm.so.6 => /lib/tls/i686/cmov/libm.so.6 
(0xb7f60000)
         libc.so.6 => /lib/tls/i686/cmov/libc.so.6 
(0xb7e31000)
         libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 
(0xb7e2e000)
         /lib/ld-linux.so.2 (0xb7fd0000)

What does it mean?

'emacs -q' works in the same way as 'emacs'

Best,
Misha.


On Fri, 06 Jan 2006 10:24:54 +0100 (CET)
  Joost Helberg <joost@snow.nl> wrote:
>Misha,
>
>Your emacs is probably not X11 capable?
>
>  $ ldd /usr/bin/emacs
>should list X libraries like:
>  libXaw3d.so.6 and libXmt.so.6
>
>Have you tried running emacs without any personal code? 
>E.g.:
>  $ emacs -q
>
>Joost
>>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
> > Date: Fri, 06 Jan 2006 12:19:14 +0300
>
> > Thanks Joost,
>
> > But your advice seems not to work.
>
> > I do:
> > $ echo $DISPLAY 
> > :0.0
>
> > $DISPLAY=:0.0 emacs 
>
> > emacs starts in the terminal window :((
>
> > What might be the problem?
>
> > Best,
> > Misha.
>
>
> > On Fri, 06 Jan 2006 10:10:42 +0100 (CET)
>
> >   Joost Helberg <joost@snow.nl> wrote:
> >> Misha,
> >> 
> >> Your DISPLAY environment variable is not set.
> >> $ echo $DISPLAY
> >> should show something like:
> >> :0.0
> >> If not, your OS didn't set it up correctly.
> >> Try:
> >> $ DISPLAY=:0.0 emacs
> >> 
> >> Joost
> >> 
> >>>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
> >> > Date: Fri, 06 Jan 2006 12:01:03 +0300
> >> 
> >> > I use Emacs 21.3 under Ubuntu Linux. I'm unable to 
> >> start 
> >> > emacs
> >> > in a sepatate X11 Window. If I do
> >> 
> >> > bash$ emacs
> >> 
> >> > it starts in the terminal window. If I do
> >> 
> >> > bash$ emacs & 
> >> 
> >> > it just stops.
> >> 
> >> > Do you have an idea what happens? 
> >> 
> >> > Thanks in advance.
> >> > ---
> >> > Professional hosting for everyone - 
>http://www.host.ru
> >> 
> >> 
> >> > _______________________________________________
> >> > help-gnu-emacs mailing list
> >> > help-gnu-emacs@gnu.org
> >> > 
>http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
> >> 
> >> -- 
> >> Joost Helberg
> >> Snow B.V.        http://snow.nl Tel 0418-653333 Fax 
> >> 0418-653666
> >> Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 
>Fax 
> >> 0418-653666
>
> > ---
> > Professional hosting for everyone - http://www.host.ru
>
>-- 
>Joost Helberg
>Snow B.V.        http://snow.nl Tel 0418-653333 Fax 
>0418-653666
>Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 
>0418-653666

---
Professional hosting for everyone - http://www.host.ru

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:34       ` Misha
@ 2006-01-06 10:09         ` Peter Dyballa
  2006-01-06 10:16         ` Joost Helberg
       [not found]         ` <mailman.85.1136542779.26925.help-gnu-emacs@gnu.org>
  2 siblings, 0 replies; 9+ messages in thread
From: Peter Dyballa @ 2006-01-06 10:09 UTC (permalink / raw)
  Cc: help-gnu-emacs


Am 06.01.2006 um 10:34 schrieb Misha:

> $ ldd `which emacs`
>         linux-gate.so.1 =>  (0xffffe000)
>         libncurses.so.5 => /lib/libncurses.so.5 (0xb7f82000)
>         libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7f60000)
>         libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e31000)
>         libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7e2e000)
>         /lib/ld-linux.so.2 (0xb7fd0000)
>
> What does it mean?

This version of GNU Emacs does not use X11, it's a programme which  
only runs inside a terminal emulation or on a terminal. libncurses is  
the library that handles terminals. If it would have been compiled as  
an X11 client you would get something like this (Mac OS X):

         /System/Library/Frameworks/Carbon.framework/Versions/A/ 
Carbon (compatibility version 2.0.0, current version 128.0.0)
         /sw/lib/libXaw3d.7.dylib (compatibility version 7.0.0,  
current version 7.0.0)
         /usr/X11R6/lib/libXmu.6.dylib (compatibility version 6.2.0,  
current version 6.2.0)
         /usr/X11R6/lib/libXt.6.dylib (compatibility version 6.0.0,  
current version 6.0.0)
         /usr/X11R6/lib/libSM.6.dylib (compatibility version 6.0.0,  
current version 6.0.0)
         /usr/X11R6/lib/libICE.6.dylib (compatibility version 6.3.0,  
current version 6.3.0)
         /usr/X11R6/lib/libXext.6.dylib (compatibility version 6.4.0,  
current version 6.4.0)
         /sw/lib/libtiff.3.dylib (compatibility version 11.0.0,  
current version 11.2.0)
         /sw/lib/libjpeg.62.dylib (compatibility version 63.0.0,  
current version 63.0.0)
         /sw/lib/libpng.3.dylib (compatibility version 3.0.0, current  
version 3.0.0)
         /usr/lib/libz.1.dylib (compatibility version 1.0.0, current  
version 1.0.0)
         /usr/lib/libSystem.B.dylib (compatibility version 1.0.0,  
current version 71.1.4)
         /usr/X11R6/lib/libXpm.4.dylib (compatibility version 4.11.0,  
current version 4.11.0)
         /usr/X11R6/lib/libX11.6.dylib (compatibility version 6.2.0,  
current version 6.2.0)
         /sw/lib/ncurses/libncurses.5.dylib (compatibility version  
5.0.0, current version 5.0.0)


--
Greetings

   Pete

In a world without walls and fences, who needs gates and windows?

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:34       ` Misha
  2006-01-06 10:09         ` Peter Dyballa
@ 2006-01-06 10:16         ` Joost Helberg
       [not found]         ` <mailman.85.1136542779.26925.help-gnu-emacs@gnu.org>
  2 siblings, 0 replies; 9+ messages in thread
From: Joost Helberg @ 2006-01-06 10:16 UTC (permalink / raw)
  Cc: help-gnu-emacs

Misha,

your emacs doesn't do X11.
You can re-compile your emacs after running configure. Configure will
automatically discover whether X11 is present.
You can also use our distributions tools, but I don't know them.

Regards,

Joost
>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
 > Date: Fri, 06 Jan 2006 12:34:43 +0300

 > Dear Joost. 

 > I tried:
 > $ ldd `which emacs`
 >          linux-gate.so.1 =>  (0xffffe000)
 >          libncurses.so.5 => /lib/libncurses.so.5 
 > (0xb7f82000)
 >          libm.so.6 => /lib/tls/i686/cmov/libm.so.6 
 > (0xb7f60000)
 >          libc.so.6 => /lib/tls/i686/cmov/libc.so.6 
 > (0xb7e31000)
 >          libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 
 > (0xb7e2e000)
 >          /lib/ld-linux.so.2 (0xb7fd0000)

 > What does it mean?

 > 'emacs -q' works in the same way as 'emacs'

 > Best,
 > Misha.


 > On Fri, 06 Jan 2006 10:24:54 +0100 (CET)
 >   Joost Helberg <joost@snow.nl> wrote:
 >> Misha,
 >> 
 >> Your emacs is probably not X11 capable?
 >> 
 >> $ ldd /usr/bin/emacs
 >> should list X libraries like:
 >> libXaw3d.so.6 and libXmt.so.6
 >> 
 >> Have you tried running emacs without any personal code? 
 >> E.g.:
 >> $ emacs -q
 >> 
 >> Joost
 >>>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
 >> > Date: Fri, 06 Jan 2006 12:19:14 +0300
 >> 
 >> > Thanks Joost,
 >> 
 >> > But your advice seems not to work.
 >> 
 >> > I do:
 >> > $ echo $DISPLAY 
 >> > :0.0
 >> 
 >> > $DISPLAY=:0.0 emacs 
 >> 
 >> > emacs starts in the terminal window :((
 >> 
 >> > What might be the problem?
 >> 
 >> > Best,
 >> > Misha.
 >> 
 >> 
 >> > On Fri, 06 Jan 2006 10:10:42 +0100 (CET)
 >> 
 >> >   Joost Helberg <joost@snow.nl> wrote:
 >> >> Misha,
 >> >> 
 >> >> Your DISPLAY environment variable is not set.
 >> >> $ echo $DISPLAY
 >> >> should show something like:
 >> >> :0.0
 >> >> If not, your OS didn't set it up correctly.
 >> >> Try:
 >> >> $ DISPLAY=:0.0 emacs
 >> >> 
 >> >> Joost
 >> >> 
 >> >>>>>>> "Misha" == Misha  <mishgun@id.ru> writes:
 >> >> > Date: Fri, 06 Jan 2006 12:01:03 +0300
 >> >> 
 >> >> > I use Emacs 21.3 under Ubuntu Linux. I'm unable to 
 >> >> start 
 >> >> > emacs
 >> >> > in a sepatate X11 Window. If I do
 >> >> 
 >> >> > bash$ emacs
 >> >> 
 >> >> > it starts in the terminal window. If I do
 >> >> 
 >> >> > bash$ emacs & 
 >> >> 
 >> >> > it just stops.
 >> >> 
 >> >> > Do you have an idea what happens? 
 >> >> 
 >> >> > Thanks in advance.
 >> >> > ---
 >> >> > Professional hosting for everyone - 
 >> http://www.host.ru
 >> >> 
 >> >> 
 >> >> > _______________________________________________
 >> >> > help-gnu-emacs mailing list
 >> >> > help-gnu-emacs@gnu.org
 >> >> > 
 >> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
 >> >> 
 >> >> -- 
 >> >> Joost Helberg
 >> >> Snow B.V.        http://snow.nl Tel 0418-653333 Fax 
 >> >> 0418-653666
 >> >> Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 
 >> Fax 
 >> >> 0418-653666
 >> 
 >> > ---
 >> > Professional hosting for everyone - http://www.host.ru
 >> 
 >> -- 
 >> Joost Helberg
 >> Snow B.V.        http://snow.nl Tel 0418-653333 Fax 
 >> 0418-653666
 >> Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 
 >> 0418-653666

 > ---
 > Professional hosting for everyone - http://www.host.ru

-- 
Joost Helberg
Snow B.V.        http://snow.nl Tel 0418-653333 Fax 0418-653666
Voorzitter VOSN  http://www.vosn.nl Tel 0418-653336 Fax 0418-653666

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
       [not found]         ` <mailman.85.1136542779.26925.help-gnu-emacs@gnu.org>
@ 2006-01-06 11:15           ` David Kastrup
  0 siblings, 0 replies; 9+ messages in thread
From: David Kastrup @ 2006-01-06 11:15 UTC (permalink / raw)


Joost Helberg <joost@snow.nl> writes:

> Misha,
>
> your emacs doesn't do X11.
> You can re-compile your emacs after running configure. Configure will
> automatically discover whether X11 is present.

No, it won't.  It will automatically discover whether the X11
development libraries and headers are present.  Only in that case will
it compile an X11-capable version, regardless of whether X11 is
actually running or installed at the time of compilation.

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: cant start Emacs in a sperate window
  2006-01-06  9:01 cant start Emacs in a sperate window Misha
  2006-01-06  9:10 ` Joost Helberg
@ 2006-01-06 18:55 ` Olivier Tétard
  1 sibling, 0 replies; 9+ messages in thread
From: Olivier Tétard @ 2006-01-06 18:55 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 547 bytes --]

"Misha" <mishgun@id.ru> a tapoté :

> I use Emacs 21.3 under Ubuntu Linux. I'm unable to start emacs in a
> sepatate X11 Window.

Did you install emacs21 or emacs21-nox ? The second one is compiled
without support for X.

Olivier.

-- 
gpg --keyserver pgp.mit.edu --recv-keys 0x43CEA851

______________________________________________________
Olivier Tétard - Toutoune25
site : http://www.miskin.be
Jabber : toutoune25@jabber.org
GoogleTalk/Jabber : toutoune25@gmail.com
______________________________________________________

[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2006-01-06 18:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-06  9:01 cant start Emacs in a sperate window Misha
2006-01-06  9:10 ` Joost Helberg
2006-01-06  9:19   ` Misha
2006-01-06  9:24     ` Joost Helberg
2006-01-06  9:34       ` Misha
2006-01-06 10:09         ` Peter Dyballa
2006-01-06 10:16         ` Joost Helberg
     [not found]         ` <mailman.85.1136542779.26925.help-gnu-emacs@gnu.org>
2006-01-06 11:15           ` David Kastrup
2006-01-06 18:55 ` Olivier Tétard

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.