I don't know about opera in linux, but a very easy way of downloading pages in linux is by using the wget utility.
try using wget with these options wget -r -nc -t 30 -k <some url here> where r = recursive nc = no clobber, if a file has been downloaded will not be downloaded again -t n = no of 'n' tries , 30 is a good number IMHO -k = convert pages for offline viewing read man wget for more options an example : wget -r -nc -t 30 -k http://www.googleguide.com/ Also rather than remembering all these options create a file say offlinedw. Add this command to it wget -r -nc -t 30 -k $1 do a chmod u+x offlinedw and then use it as ./offlinedw <http://someurl> i hope this helps :) On Tue, 2004-01-20 at 23:20, K. Ghosh wrote: > When Web Pages from the internet are downloaded via IE in Windows, > the pages (and the links contained therein) are readable in offline > mode. > > The same does not happen when the web pages are downloaded by > say Opera browser under Linux. In offline mode the links in the > downloaded page continue pointing to the website instead of the > directory into which the page has been downloaded, and the links fail to > open. > > I have tried to look into the settings in both IE as well as Opera, but > could not make out what changes to make to Opera. > > Can someone please guide me ? > Thanks & regards, -- Akash Mahajan www.akashm.com Everyone was born right-handed. Only the greatest overcome it. ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
