* Re: a simple browser
2002-04-08 13:57 a simple browser G Anna
@ 2002-04-08 16:30 ` Elias Athanasopoulos
2002-04-08 16:32 ` Pierre Rousselet
` (5 subsequent siblings)
6 siblings, 0 replies; 19+ messages in thread
From: Elias Athanasopoulos @ 2002-04-08 16:30 UTC (permalink / raw)
To: anna7sept; +Cc: linux-newbie
On Mon, Apr 08, 2002 at 07:27:28PM +0530, G Anna wrote:
> Can anybody suggest a good and simple browser? Netscape core dumps
> very often, Mozilla is very very slow and I do not know of any other
> browser. (Most of the websites nowadays doesn't care about Lynx :-(
Lately, I use Galeon. It utilizes the Mozilla engine, but it is quite
more lighter than Mozilla itself (my machine is a K6/266Mhz/96MB).
I had a good experience, as far as the performance is concerned, with
Opera, in the past. I stopped using it, due to the bad support for
the Greek language (I live in Greece).
Opera is the fastest Web browser I have ever used in my machine.
Elias
--
http://gnewtellium.sourceforge.net MP3 is not a crime.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: a simple browser
2002-04-08 13:57 a simple browser G Anna
2002-04-08 16:30 ` Elias Athanasopoulos
@ 2002-04-08 16:32 ` Pierre Rousselet
2002-04-08 19:29 ` Install location(s) Christoph
` (4 subsequent siblings)
6 siblings, 0 replies; 19+ messages in thread
From: Pierre Rousselet @ 2002-04-08 16:32 UTC (permalink / raw)
To: anna7sept; +Cc: linux-newbie
G Anna wrote:
> Dear All,
>
> Can anybody suggest a good and simple browser? Netscape core dumps
> very often, Mozilla is very very slow and I do not know of any other
> browser.
mozilla and netscape-6.x are the same. I've tried recently konqueror
(with kde-3.0), galeon, opera and keep using mozilla as a browser and
mail tool. The 0.9.9 version of mozilla is quite stable on my box (PIII
650).
Pierre
--
------------------------------------------------
Pierre Rousselet <pierre.rousselet@wanadoo.fr>
------------------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Install location(s)
2002-04-08 13:57 a simple browser G Anna
2002-04-08 16:30 ` Elias Athanasopoulos
2002-04-08 16:32 ` Pierre Rousselet
@ 2002-04-08 19:29 ` Christoph
2002-04-08 21:02 ` Pierre Rousselet
2002-04-09 6:02 ` a simple browser cr
` (3 subsequent siblings)
6 siblings, 1 reply; 19+ messages in thread
From: Christoph @ 2002-04-08 19:29 UTC (permalink / raw)
To: linux-newbie
Apologies if this is a stupid question. And apologies for all
the stupid questions that are sure to come from me in the
weeks to follow. :p I take heart that since this is a newbie
list, I'm sure that you guys have fielded plenty.
In any case, my question: where should you typically install
new software? For example, I'm getting ready to look into
and install Samba on my Linux (RH 7.2) box. I've DL'd it
already and have been reading the documentation but have
yet to make and install it. So, where should it (and anything
else I plan to install) go to make it easier to manage and
administer?
thnx,
Christoph
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: Install location(s)
2002-04-08 19:29 ` Install location(s) Christoph
@ 2002-04-08 21:02 ` Pierre Rousselet
0 siblings, 0 replies; 19+ messages in thread
From: Pierre Rousselet @ 2002-04-08 21:02 UTC (permalink / raw)
To: Christoph; +Cc: linux-newbie
Christoph wrote:
> Apologies if this is a stupid question. And apologies for all
> the stupid questions that are sure to come from me in the
> weeks to follow. :p I take heart that since this is a newbie
> list, I'm sure that you guys have fielded plenty.
>
> In any case, my question: where should you typically install
> new software? For example, I'm getting ready to look into
> and install Samba on my Linux (RH 7.2) box. I've DL'd it
> already and have been reading the documentation but have
> yet to make and install it. So, where should it (and anything
> else I plan to install) go to make it easier to manage and
> administer?
1) If the management of installed packages is a concern, you would
better unpack a RH binary package.
2) I assume many ready made scripts coming with RH expect to find the
software installed as per their own specs. The box would not boot if a
startup script has a line as "/bin/mount / ro" when mount is installed
in /usr/bin. For this reason, you must be carefull when installing
util-linux, sh-utils, textutils, net-tools and all the basic utilities.
3) A package is compiled with a given --prefix --exec-prefix
--sysconfdir and so on, you easily break the software when you split the
executable, the libraries, the config files in directories which are not
the ones given at compile time. If you install samba in /usr/local/samba
the config file smb.conf is looked for in /usr/local/samba/lib.
4) For most applications (internet, multimedia, office...) you are quite
free to choose the install path provided that the environment variables
are properly set to tell the system where the binaries and the libraries
are.
5) If you build samba yourself, the default install path is
/usr/local/samba. It is not necessary to add /usr/local/samba/bin to
your PATH if you write a start-samba script and put it /usr/bin. It
would have the lines:
#!/bin/sh
/usr/local/samba/bin/smbd -D
/usr/local/samba/bin/nmbd -D
Pierre
--
------------------------------------------------
Pierre Rousselet <pierre.rousselet@wanadoo.fr>
------------------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2002-04-08 13:57 a simple browser G Anna
` (2 preceding siblings ...)
2002-04-08 19:29 ` Install location(s) Christoph
@ 2002-04-09 6:02 ` cr
2002-04-09 12:46 ` ichi
` (2 subsequent siblings)
6 siblings, 0 replies; 19+ messages in thread
From: cr @ 2002-04-09 6:02 UTC (permalink / raw)
To: anna7sept, G Anna, linux-newbie
On Tuesday 09 April 2002 01:57, G Anna wrote:
> Dear All,
>
> Can anybody suggest a good and simple browser? Netscape core dumps
> very often, Mozilla is very very slow and I do not know of any other
> browser. (Most of the websites nowadays doesn't care about Lynx :-(
>
> Thanks for your time.
>
> anna
Depends which distribution of Linux you're using, but:
KDE Konqueror (comes with KDE 2.2 IIRC). I use it from Gnome - you don't
*have* to be running KDE to use it.
Or Opera for Linux, which is 'adware' (a little panel on the top right shows
ads), but other than that is a very nice-handling browser. (If you want it
without ads you can always pay $$ and register). www.opera.com
Or Galeon (which I think is based on Mozilla?)
All the above (except or maybe including Opera, I can't recall) came with Red
Hat 7.2.
My favourite's Opera, myself. But I'd suggest you could try one of those.
cr
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: a simple browser
2002-04-08 13:57 a simple browser G Anna
` (3 preceding siblings ...)
2002-04-09 6:02 ` a simple browser cr
@ 2002-04-09 12:46 ` ichi
2002-04-09 15:54 ` Sean Rima
2003-03-12 7:02 ` pshook
6 siblings, 0 replies; 19+ messages in thread
From: ichi @ 2002-04-09 12:46 UTC (permalink / raw)
To: anna7sept; +Cc: linux-newbie
G Anna wrote:
>
> Can anybody suggest a good and simple browser? Netscape core dumps
> very often, Mozilla is very very slow and I do not know of any other
> browser. (Most of the websites nowadays doesn't care about Lynx :-(
Have you tried "links"?
-----------------------------------------------
http://artax.karlin.mff.cuni.cz/~mikulas/links/
-----------------------------------------------
Its layout is good (much better than lynx) and it does cookies
and SSL. Images are not displayed on the page, but if you click
on an image, it will be displayed on a separate screen (using zgv).
Cheers,
Steven
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: a simple browser
2002-04-08 13:57 a simple browser G Anna
` (4 preceding siblings ...)
2002-04-09 12:46 ` ichi
@ 2002-04-09 15:54 ` Sean Rima
2003-03-12 7:02 ` pshook
6 siblings, 0 replies; 19+ messages in thread
From: Sean Rima @ 2002-04-09 15:54 UTC (permalink / raw)
To: linux-newbie
Originally to: G Anna
G Anna was alleged to have written to All
GA> Dear All,
GA> Can anybody suggest a good and simple browser? Netscape core dumps
GA> very often, Mozilla is very very slow and I do not know of any other
GA> browser. (Most of the websites nowadays doesn't care about Lynx :-(
(tried to send this before but made a mistake)
Try W3M which is console based but showed graphics under Xterm. http://w3m.sf.net
Sean
Sean Rima http://www.tcob1.net
Linux User: 231986 Jabber: tcobone@jabber.org
THE VIEWS EXPRESSED HERE ARE NOT NECESSARILY THOSE OF MY WIFE.
... Linux -- Find out what your missing while you've been rebooting Windows
<-> Gateway Information.
This message originated from a Fidonet System (http://www.fidonet.org)
and was gated at TCOB1 (http://www.tcob1.net)
Please do not respond direct to this message but via the list
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: a simple browser
2002-04-08 13:57 a simple browser G Anna
` (5 preceding siblings ...)
2002-04-09 15:54 ` Sean Rima
@ 2003-03-12 7:02 ` pshook
2003-03-12 12:30 ` Rodrigo Gesswein
2003-03-12 19:16 ` Haines Brown
6 siblings, 2 replies; 19+ messages in thread
From: pshook @ 2003-03-12 7:02 UTC (permalink / raw)
To: linux-newbie
Try opera, I think at www.opera.com
G Anna wrote:
> Dear All,
>
> Can anybody suggest a good and simple browser? Netscape core dumps
> very often, Mozilla is very very slow and I do not know of any other
> browser. (Most of the websites nowadays doesn't care about Lynx :-(
>
> Thanks for your time.
>
> anna
>
> --
>
> Get your free e-mail account at http://www.linuxmail.org
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: a simple browser
2003-03-12 7:02 ` pshook
@ 2003-03-12 12:30 ` Rodrigo Gesswein
2003-03-12 12:57 ` Mateusz Łoskot
2003-03-12 19:16 ` Haines Brown
1 sibling, 1 reply; 19+ messages in thread
From: Rodrigo Gesswein @ 2003-03-12 12:30 UTC (permalink / raw)
To: linux-newbie
Hi!
Also try Dillo! at http://dillo.auriga.wearlab.de/
Regards!
Rodrigo...
--
On Tue, 11 Mar 2003, pshook wrote:
> Try opera, I think at www.opera.com
>
> G Anna wrote:
>
> > Dear All,
> >
> > Can anybody suggest a good and simple browser? Netscape core dumps
> > very often, Mozilla is very very slow and I do not know of any other
> > browser. (Most of the websites nowadays doesn't care about Lynx :-(
> >
> > Thanks for your time.
> >
> > anna
> >
> > --
> >
> > Get your free e-mail account at http://www.linuxmail.org
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at http://www.linux-learn.org/faqs
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
>
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-12 12:30 ` Rodrigo Gesswein
@ 2003-03-12 12:57 ` Mateusz Łoskot
2003-03-12 14:39 ` James Miller
0 siblings, 1 reply; 19+ messages in thread
From: Mateusz Łoskot @ 2003-03-12 12:57 UTC (permalink / raw)
To: linux-newbie
Hello,
I may suggest to use Mozilla-based browser, but very small, without any
other Mozilla components.
It is called Phoenix, and installation is very easy.
http://www.mozilla.org/projects/phoenix/
Best regards
--
Mateusz £oskot
E-mail: m.loskot@chello.pL Mobile: +48 (0) 693456131
GNU/Linux (Slackware 8.1) http://counter.li.org: #220771
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: a simple browser
2003-03-12 12:57 ` Mateusz Łoskot
@ 2003-03-12 14:39 ` James Miller
2003-03-12 14:54 ` Mateusz Łoskot
0 siblings, 1 reply; 19+ messages in thread
From: James Miller @ 2003-03-12 14:39 UTC (permalink / raw)
To: linux-newbie
On Wed, 12 Mar 2003, m.loskot@chello.pl wrote:
> Hello,
> I may suggest to use Mozilla-based browser, but very small, without any
> other Mozilla components.
> It is called Phoenix, and installation is very easy.
>
Be aware that "very small" in this case is a relative characterization
(relative to the full Mozilla). In the case of Phoenix, very small = 9MB
download. That said, I use Phoenix and like it. It takes up more room
in RAM than Opera, though. On one system I have, Opera (6.1) occupied 23
MB RAM, while Phoenix took 30 MB.
James
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-12 14:39 ` James Miller
@ 2003-03-12 14:54 ` Mateusz Łoskot
2003-03-12 15:06 ` Carl
0 siblings, 1 reply; 19+ messages in thread
From: Mateusz Łoskot @ 2003-03-12 14:54 UTC (permalink / raw)
To: linux-newbie
U¿ytkownik James Miller napisa³:
> On Wed, 12 Mar 2003, m.loskot@chello.pl wrote:
>>Hello,
>>I may suggest to use Mozilla-based browser, but very small, without any
>>other Mozilla components.
>>It is called Phoenix, and installation is very easy.
>>
>
> Be aware that "very small" in this case is a relative characterization
> (relative to the full Mozilla). In the case of Phoenix, very small = 9MB
> download. That said, I use Phoenix and like it. It takes up more room
> in RAM than Opera, though.
Yes, James is right.
I mean "very small" related to the Phoenix's bigger sister - Mozilla.
Very small is Dillo, but is is very simple, it may be compared to Links,
but for X Windows (GUI).
> On one system I have, Opera (6.1) occupied 23
> MB RAM, while Phoenix took 30 MB.
In my Celeron 466, 256 RAM, Abit BX-133 RAID, Phoenix takes 20,3 MB RAM
at this moment (i run Gnome 2).
Opera may be faster, but I like mozilla-style of HTML rendering, and
it is free, what is important for me, no adds, etc.
--
Mateusz £oskot
E-mail: m.loskot@chello.pL Mobile: +48 (0) 693456131
GNU/Linux (Slackware 8.1) http://counter.li.org: #220771
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-12 14:54 ` Mateusz Łoskot
@ 2003-03-12 15:06 ` Carl
2003-03-12 15:54 ` Mateusz Łoskot
2003-03-12 18:28 ` James Miller
0 siblings, 2 replies; 19+ messages in thread
From: Carl @ 2003-03-12 15:06 UTC (permalink / raw)
To: linux-newbie
At 15:54 12/03/2003 +0100, =?ISO-8859-2?Q?Mateusz_=A3oskot?= wrote:
>Opera may be faster, but I like mozilla-style of HTML rendering, and
>it is free, what is important for me, no adds, etc.
You can stop Opera downloading the ads by blocking with ad blocking software or carefully configured
firewall.
--
Carl
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-12 15:06 ` Carl
@ 2003-03-12 15:54 ` Mateusz Łoskot
2003-03-12 18:28 ` James Miller
1 sibling, 0 replies; 19+ messages in thread
From: Mateusz Łoskot @ 2003-03-12 15:54 UTC (permalink / raw)
To: Carl; +Cc: linux-newbie
U¿ytkownik Carl napisa³:
> At 15:54 12/03/2003 +0100, =?ISO-8859-2?Q?Mateusz_=A3oskot?= wrote:
>
>>Opera may be faster, but I like mozilla-style of HTML rendering, and
>>it is free, what is important for me, no adds, etc.
>
> You can stop Opera downloading the ads by blocking with ad blocking software or carefully configured
> firewall.
You are right, but it is not that way I'd like to use Web.
If there is something free (GNU GPL), why not to use it.
Mozilla / Phoenix are my favourite browsers.
Best regards
--
Mateusz £oskot
E-mail: m.loskot@chello.pL Mobile: +48 (0) 693456131
GNU/Linux (Slackware 8.1) http://counter.li.org: #220771
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: a simple browser
2003-03-12 15:06 ` Carl
2003-03-12 15:54 ` Mateusz Łoskot
@ 2003-03-12 18:28 ` James Miller
1 sibling, 0 replies; 19+ messages in thread
From: James Miller @ 2003-03-12 18:28 UTC (permalink / raw)
To: linux-newbie
On Wed, 12 Mar 2003, Carl wrote:
>
> You can stop Opera downloading the ads by blocking with ad blocking software or carefully configured
> firewall.
>
Could you please elaborate? Like, what kind of ad blocking software (name
of the package) or tips on firewall configuration. Are you talking about
using something like squidguard? Can this be done via ipchains/iptables?
Thanks, James
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-12 7:02 ` pshook
2003-03-12 12:30 ` Rodrigo Gesswein
@ 2003-03-12 19:16 ` Haines Brown
2003-03-13 8:10 ` ichi
1 sibling, 1 reply; 19+ messages in thread
From: Haines Brown @ 2003-03-12 19:16 UTC (permalink / raw)
To: pshook; +Cc: linux-newbie
> Try opera, I think at www.opera.com
Yes, I was until now an Opera enthusiast. But with the upgrade to RH
8.0, it performs very badly. I'm slowly migrating to Galeon, which is
also a full featured browser, but is faster than Opera and so far has
spared me some pain. So I suggest you consider it as well. There's
KDE Konqueror, but not only do I prefer the gnome side, but it won't
start, so can't comment on it.
Haines
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-12 19:16 ` Haines Brown
@ 2003-03-13 8:10 ` ichi
2003-03-13 1:25 ` Haines Brown
0 siblings, 1 reply; 19+ messages in thread
From: ichi @ 2003-03-13 8:10 UTC (permalink / raw)
To: brownh; +Cc: linux-newbie
Haines Brown wrote:
>
> I'm slowly migrating to Galeon, which is also a full
> featured browser, but is faster than Opera
Really? That is not my experience (on a P166 with 64mb RAM).
I found Galeon slower and larger (much larger) than Opera.
Cheers,
Steven
______________________________
http://www.volny.cz/basiclinux
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: a simple browser
2003-03-13 8:10 ` ichi
@ 2003-03-13 1:25 ` Haines Brown
0 siblings, 0 replies; 19+ messages in thread
From: Haines Brown @ 2003-03-13 1:25 UTC (permalink / raw)
To: ichi; +Cc: linux-newbie
Steven,
I reply not to disagree, but to flesh out some of the specifics.
First, I'm running 1.9GHz with 1 Gb RAM. While that would perhaps run
apps a little faster, I don't see how it would cause us to have quite
opposite experience in comparing Opera and Galeon speed.
Let me give an example of my frustrations with Opera. If I hit K2 to
bring up the Go to Page dialog, it pops up a bit slowly, but it takes
a couple additional seconds for the window to gain content and even
more to acquire the focus. If I have a URL in my clipboard to paste,
bringing up the dialog empties the clipboard. If instead I type the
URL, the first letter goes not type. I waste a lot of time playing
games just to visit a URL.
Another problem is web page loading hangs. I'll click on a link, and
the load hangs. I go and do something else for a few more minutes and
come back to find the page has finally loaded.
Another petty example. I go to use the Search text field. If there is
a string still there from my previous search, I select it, but DEL
won't get rid of it, more often than not. I have to delete it letter
by letter and type in what I want.
It's the accumulation of these annoyances that are driving me away
from Opera.
Haines
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 19+ messages in thread