LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-19-2002, 11:17 AM   #1
wolffmanl7
LQ Newbie
 
Registered: Jul 2002
Location: Oklahoma
Distribution: Red Hat 8.0
Posts: 29

Rep: Reputation: 15
Question Enlightenment


I am trying to install Enlightenment and I seem to be having troubles. enlightenment-0.16.4-1.i386 plus a bunch of other packages. When I try installing the needed packages it tells me that LibGLcore.so.1 is needed and libmlib.so.1 and a couple of others. I am running Red Hat 8.0 is there anywhere I can go and do one download and get this up and going? Instead of 30 files or so. Maybe someone can enlighten me on how to do this I am willing to start over, if that is what it takes. Not a problem.


Wolffmanl7
 
Old 11-20-2002, 11:13 AM   #2
wolffmanl7
LQ Newbie
 
Registered: Jul 2002
Location: Oklahoma
Distribution: Red Hat 8.0
Posts: 29

Original Poster
Rep: Reputation: 15
Any one got any suggestions
 
Old 11-20-2002, 11:21 AM   #3
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
All of the required packages are available at enlightenment sourceforge page http://sourceforge.net/projects/enlightenment/
 
Old 11-20-2002, 02:43 PM   #4
wolffmanl7
LQ Newbie
 
Registered: Jul 2002
Location: Oklahoma
Distribution: Red Hat 8.0
Posts: 29

Original Poster
Rep: Reputation: 15
Thank you I have it installed now, how do I actually get it started
 
Old 11-20-2002, 05:16 PM   #5
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
Do you boot to a graphical or text login?
 
Old 11-20-2002, 06:07 PM   #6
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
why didn't you just install it when you first installed Redhat 8.0?, it was just a check mark away, and then you wouldn't have to do all of this, just click in the theme selector and double click on enlightment,
 
Old 11-20-2002, 08:45 PM   #7
wolffmanl7
LQ Newbie
 
Registered: Jul 2002
Location: Oklahoma
Distribution: Red Hat 8.0
Posts: 29

Original Poster
Rep: Reputation: 15
I did an everything install this last time and I can not find enlightenment anywhere. Let me know where that is, please. As far as logging in I usually log into graphical mode but I can change that. It's not a problem.

Wolffmanl7
 
Old 11-20-2002, 09:54 PM   #8
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
it is just fine if you log into graphical mode. do you run KDE or gnome?

If you are running Gnome, which I hope, it's quite simple

GnomeStartMenu> Programs > Settings > Desktop > Windows Manager

click on Windows Manager, select Enlightment, and click OK. Voila! you got enlightment,

enjoy!
 
Old 11-20-2002, 11:12 PM   #9
wolffmanl7
LQ Newbie
 
Registered: Jul 2002
Location: Oklahoma
Distribution: Red Hat 8.0
Posts: 29

Original Poster
Rep: Reputation: 15
In Gnome I don't have a programs >settings and so forth. I am running Red Hat 8.0 now. And I did find the desk switching tool and enlightenment is not there.
 
Old 11-21-2002, 12:30 AM   #10
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
it requires a little tweaking
so Gnome you said, I assume it is GDM that is your graphical login screen.
in your /etc/X11/gdm add the folowing file call it Enlightenment with following contents
Code:
#!/bin/bash -login

/etc/X11/xdm/Xsession enlightenment
now in /etc/X11/xdm/Xsession file add in the case statement for other windowmangers
Code:
enlightenment)
                exec enlightenment
                ;;
Mow you can choose enlightenment from drop down list in GDM upon login
 
Old 11-21-2002, 12:42 AM   #11
wolffmanl7
LQ Newbie
 
Registered: Jul 2002
Location: Oklahoma
Distribution: Red Hat 8.0
Posts: 29

Original Poster
Rep: Reputation: 15
Okay now I am a newbie pretty much. Can you be alittle more specific about what you are wanting me to edit. I don't want to mess anything up. Is enlightenment included with 8.0, because I can not find it anywhere.
 
Old 11-21-2002, 12:50 AM   #12
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
It should come with it. I mean, from the 7 series, they did change some things, but it's more like the 7 series of Redhat than not. So, what you need to do is open Gedit, type in the new file the text that neo told you, and save it under the name of Enlightment.
Then you'll be able to load it in the Graphical Login Screen at boot up.
 
Old 01-24-2003, 12:15 PM   #13
dav1x
Member
 
Registered: Sep 2002
Posts: 50

Rep: Reputation: 15
This is exactly what you do

You are probably using gdm as he said above.
cd /etc/X11/gdm/Sessions

touch Enlightenment
chmod 777 Enlightenment
(open - use whatevr text editor you are comfortable with) Enlightenment

modify the empty file and type this

#!/bin/sh

exec /usr/bin/enlightenment

(save and exit)

gdm should now show Enlightenment as an option under Sessions..
Good Luck
 
Old 01-25-2003, 10:30 PM   #14
(LOF)Chm0d
LQ Newbie
 
Registered: Jan 2003
Posts: 6

Rep: Reputation: 0
gosh the other fellow is right LOL.....When you install RH 8.0 make sure you check everything as far as FULL INSTALL...if you are worried about Enlightment during the install go to Other Graphical Desktops and make sure Enlightment is there check marked. Its really as simple as that. Ive done it a thousand times and I know the option is there..GL
 
Old 05-06-2003, 01:57 PM   #15
ludwig W
Member
 
Registered: Mar 2003
Posts: 404

Rep: Reputation: 30
there is nothing about enlightenment in the RH8 install.I've checked a thousand times/
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
enlightenment CrAZy_MoNKeY Slackware 9 05-04-2006 04:34 PM
I want to try Enlightenment... Brother Michael Linux - General 6 12-09-2003 09:35 AM
Enlightenment? CiTl2uS Linux - Newbie 7 05-28-2002 12:40 AM
Enlightenment TravisB Linux - General 10 05-23-2002 11:37 AM
Enlightenment C-Lo Linux - Software 2 05-19-2002 07:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:33 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration