LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 11-30-2009, 07:16 AM   #16
eeeBu
Member
 
Registered: Nov 2009
Distribution: Ubuntu karmic koala
Posts: 71

Original Poster
Rep: Reputation: 16

Quote:
Originally Posted by evo2 View Post
You should be able to use either network-manger or wicd. Or you can can configure your /etc/network/interfaces file and issue the command 'ifup eth0', where I'm assuming eth0 is the device you want to use.

Evo2.
network manager for some reason doesnt appear, if i manually find it all it does is tell me about my connection that is setup through gnome, i dont know how to actually activate it!

hmm...can you please expand on editing that file
 
Old 11-30-2009, 04:24 PM   #17
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Standard configuration for wired dhcp interface, would have an entry in /etc/network/interfaces like this:

Code:
allow-hotplug eth0
iface eth0 inet dhcp
Please read the "interfaces" man page, and perhaps google for a tutorial on the web.

Cheers,

Evo2.
 
Old 11-30-2009, 08:20 PM   #18
exvor
Senior Member
 
Registered: Jul 2004
Location: Phoenix, Arizona
Distribution: Gentoo, LFS, Debian,Ubuntu
Posts: 1,537

Rep: Reputation: 87
I do not think that will work for wireless evo. Wireless requies some sort of manager or you can manually use the iwconfig command to get it going.

If you have the most recent version of iwconfig you can connect to almost any kind of network. You can use iwconfig --help to get all the options but the most of the time you would do something like this assuming your wireless card is eth1 and your wireless is named tacos :P
Code:
 
iwconfig eth1 essid "TACOS" 
iwconfig eth1 key <-- This should be the passkey or the hex key from line 1 
iwconfig channel 11 <--- this may not be needed but needs to be the right channel if you use it. 
you would then need to setup dhcp somehow if you have dhcpcd you can just do dhcpcd eth1

NOTE:This is no permanent and will not auto configure when you reboot so making a script that you can run as root would be helpful.
 
Old 11-30-2009, 08:32 PM   #19
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Correct it won't work for wireless, but I don't recall the OP saying they had wireless. Anyway, the equivalent entry in /etc/network/interfaces for wireless with wep would look something like:

Code:
allow-hotplug eth0
iface eth0 inet dhcp
wireless_key abcd123456 # Use this format for hex
#wireless_key s:foobar # Use this format with the "s:" for ascii
wireless_essid mynetwork
wireless_mode managed
Basically the lines starting with "wireless_" are passed to iwconfig, so that you don't have to run it manually.

Cheers,

Evo2.

PS. Oops, the OP did specify wireless: my bad.

Last edited by evo2; 11-30-2009 at 08:34 PM. Reason: PS.
 
Old 12-01-2009, 11:27 AM   #20
eeeBu
Member
 
Registered: Nov 2009
Distribution: Ubuntu karmic koala
Posts: 71

Original Poster
Rep: Reputation: 16
yeh i did :P

why cant there be an app that runs on gnome to work alongside enlightenment!!!
this is become a mission...

i'll give it a try later on and get back to you guys
thanks for the replies
 
Old 12-01-2009, 09:22 PM   #21
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
why cant there be an app that runs on gnome to work alongside enlightenment!!!
this is become a mission...
As has been suggested, you can try wicd since it has no desktop dependencies.

Additionally, it seems there is a wicd compatible e17 module that you can enable within e17. Did you try?

Evo2.

Last edited by evo2; 12-01-2009 at 09:22 PM. Reason: s/code/quote/g
 
Old 12-02-2009, 02:51 PM   #22
eeeBu
Member
 
Registered: Nov 2009
Distribution: Ubuntu karmic koala
Posts: 71

Original Poster
Rep: Reputation: 16
nope nothing with the name WCID dude

also, when i login to Enlightenment, there are afew desktop items (HD) and when i logout and come back to gnome, those icons appear on this desktop but i cant use them....
 
Old 12-02-2009, 06:38 PM   #23
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by eeeBu View Post
nope nothing with the name WCID dude

also, when i login to Enlightenment, there are afew desktop items (HD) and when i logout and come back to gnome, those icons appear on this desktop but i cant use them....
It does not have the name WCID (or WICD), just look for something network related. Do you know how to search for and enable modules in e17?

Evo2.
 
Old 12-03-2009, 10:07 AM   #24
eeeBu
Member
 
Registered: Nov 2009
Distribution: Ubuntu karmic koala
Posts: 71

Original Poster
Rep: Reputation: 16
Nope :/

any suggestions?
 
Old 12-03-2009, 05:33 PM   #25
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by eeeBu View Post
any suggestions?
Yes post #19 or google and you will find pages like

http://watchwolf.fr/wiki/doku.php?id=exalt

Edit: Ok, not sure where you got your e17 packages from, but did you install a package called emodule-net?

Evo2.

Last edited by evo2; 12-04-2009 at 04:58 AM.
 
Old 12-04-2009, 12:07 PM   #26
eeeBu
Member
 
Registered: Nov 2009
Distribution: Ubuntu karmic koala
Posts: 71

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by evo2 View Post
Yes post #19 or google and you will find pages like

http://watchwolf.fr/wiki/doku.php?id=exalt

Edit: Ok, not sure where you got your e17 packages from, but did you install a package called emodule-net?

Evo2.
nope i havent installed anything except E17 through the terminal.

how would i go about installing something on E17 if i cant logonto the net?
 
Old 12-13-2009, 09:01 AM   #27
resetreset
Senior Member
 
Registered: Mar 2008
Location: Cyberspace
Distribution: Dynebolic, Ubuntu 10.10
Posts: 1,340

Rep: Reputation: 62
I've always wondered why they don't include E17 with mainstream distros. It used to look *bloody* awesome when I tried it back in '96 or '97.
 
Old 12-13-2009, 09:33 PM   #28
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Hey I was wonderin if anyonne knew if I could install e17-svn while at the command line, no X, no desktop
just do a minimal ubuntu install and then install e17?

will it work?
 
Old 12-14-2009, 03:53 AM   #29
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
Originally Posted by linus72 View Post
Hey I was wonderin if anyonne knew if I could install e17-svn while at the command line, no X, no desktop
just do a minimal ubuntu install and then install e17?

will it work?
try

Code:
sudo sh -c "echo 'deb http://cafelinux.org/Downloads/oz-os tinwoodman main' >> /etc/apt/sources.list"
wget -q http://cafelinux.org/Downloads/oz-os/key.asc -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install e17-svn
 
Old 12-14-2009, 06:40 AM   #30
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
WOW

totally awesome!
I made a script that takes a ubuntu-mini-remix-9.10.iso and makes it into a working e17 Livecd thats installable!

Holy S^%$!
I didn't think it would work...but it did!

However, when booting the cd at desktop you gotta click a few buttons to set up e17 how you want
then it pops up great!

so, anyway I'm writing the short How-To and will post it in General directly
if any e17 experts please post as I know little about it overall...

you will need a runinng 9.10 hd install or a livecd with access to a 3+ GB free space
and the script and mini=-remix iso(150MB)
and an internet connection, of course
and it will copy your existing /etc/apt folder to the livecd squashfs, so have your repos setup too

anyway, gotta go finish it....
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 and gnome daedalusonlinux SUSE / openSUSE 1 11-22-2005 11:34 PM
Enlightenment over gnome winner Linux - Software 1 01-15-2005 06:35 PM
Enlightenment and Gnome sslinx Linux - Software 0 10-26-2004 02:05 PM
enlightenment as wm for GNome 2.2.2 freenet Linux - Software 4 08-05-2003 09:25 PM
Enlightenment & Gnome dnar Linux - Software 5 12-21-2002 12:51 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 06:04 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