Olimex Support Forum

OLinuXino Android / Linux boards and System On Modules => A20 => Topic started by: neslekkim on September 29, 2013, 07:24:02 PM

Title: Browser?
Post by: neslekkim on September 29, 2013, 07:24:02 PM
Starting "startx" after getting debian running gave me no browser, as if the menuselection points to an uninstalled program.

so, I'm trying to use apt-get install chromium, which says that chromium-browser replaces it, so I try that, but no:

http://instagram.com/p/e2cmlTDOuJ/

Yes, I'm n00b at this :)
Is it possible to install debian in the NAND?
Title: Re: Browser?
Post by: pinnchus on September 29, 2013, 07:26:47 PM
apt-get install iceweasel
Title: Re: Browser?
Post by: tlhingan on September 29, 2013, 07:34:06 PM
Quote from: neslekkim on September 29, 2013, 07:24:02 PM
so, I'm trying to use apt-get install chromium, which says that chromium-browser replaces it, so I try that, but no:
I believe chromium and chromium-browser cannot run on this version of Debian. I don't remember what the issue was, but I had to go looking for an other browser myself.

Quote from: pinnchus on September 29, 2013, 07:26:47 PM
apt-get install iceweasel
This is what I'm using too, it's basically a repackaging of Firefox, but Mozilla won't let them call it Firefox, so they changed fire to ice and fox to weasel.
:)

Quote from: neslekkim on September 29, 2013, 07:24:02 PM
Is it possible to install debian in the NAND?
I believe the Android image is the only thing that can run in the NAND right now.
Title: Re: Browser?
Post by: neslekkim on September 29, 2013, 07:48:02 PM
ifconfig actually list only "lo", and when I tried apt-get update, then I get this:
http://instagram.com/p/e2eXbADOhK/
(Sorry for the blurry image)

So I guess I somehow have to enable eth? (Oh yes, I'm very n00b at debian)
Title: Re: Browser?
Post by: pinnchus on September 29, 2013, 08:01:25 PM
use ifconfig -a to show all the interfaces

ifconfig eth0 up   to startup the interface ethernet 0

dhclient eth0 to get an ip from your dhcp server o access point.

Regards,
Title: Re: Browser?
Post by: neslekkim on September 29, 2013, 08:11:22 PM
ah, I found in another thread that I had to edit /etc/resolv.conf because my gateway is anoter ip
edited /etc/network/interfaces to set "auto eth0" (not sure what that does, did not help)

after booting again it looked like this (ok, still looked like this, the interfaces file is not edited yet in that pic)
http://instagram.com/p/e2h1nDDOoj/

But using dhclient eth0 did the trick, thanks!
But is that persitent?, do I need to do this after each boot??
Title: Re: Browser?
Post by: pinnchus on September 29, 2013, 08:18:51 PM
Not, it is not persistent with those commands, to get it persistent you need to modify network configurations. Init the xsession with startx and use the configuration utilities in settings.

http://www.tldp.org/HOWTO/NET3-4-HOWTO-5.html#ss5.2

Regards,
Title: Re: Browser?
Post by: neslekkim on September 29, 2013, 08:19:27 PM
Quote from: tlhingan on September 29, 2013, 07:34:06 PM
I believe the Android image is the only thing that can run in the NAND right now.

What about the sata interface?, I have an small 24GB ssd (but in msata package), would have been cool to get something like that up.
I guess SD card have short lifespan for this usage?
Title: Re: Browser?
Post by: Lurch on September 29, 2013, 08:36:16 PM
You can use the SATA, but not to boot - uboot doesn't support it for booting.
There is a thread in the A20 forum about how to boot and use SATA for root, though.
Title: Re: Browser?
Post by: tlhingan on September 30, 2013, 05:46:40 AM
Quote from: neslekkim on September 29, 2013, 08:11:22 PM
edited /etc/network/interfaces to set "auto eth0" (not sure what that does, did not help)
That enables the ethernet interface.
:)