I’m still a heavy user of the text-only Lynx web browser. It was my first browser, and it’s still near and dear to my heart.
These days I mostly use Lynx on the server side to navigate web pages that lead to software downloads. It saves transferring from my local machine to a remote machine.
Today, downloading a particularly huge 500MB file from IBM, I found that Lynx was placing its temporary file for the download in my home directory, which, alas, had little space, and certainly not enough to hold 500MB of data.
The solution?
export LYNX_TEMP_SPACE=/directory/with/lots/of/space
Set this environment variable, and then run Lynx, and you’ll find that Lynx will use the location you specify as its location for the temporary file.
Comments
To download files to a server
To download files to a server, I typically browse for a file with Mozilla on my desktop and then copy/paste the link into a terminal window that’s logged into the server. The link can then be used with wget to download the file.
You’re a life savior :)I had
You’re a life savior :)
I had the exact same problem and I was playing around linking temp folders…
Thanks!
wget only possible for
wget only possible for permanent link, sometimes there are cases when we face only temporary link.
You saved my life :’)
You saved my life :')
Worked like a charm!
Worked like a charm!
I like
I like
export LYNX_TEMP_SPACE=.
which means they go straight to the current directory
Ran into the same problem all
Ran into the same problem all these years later with Lynx downloading a very large file into a live system running in RAM.
It can be hard to find these tips quickly, especially in the Lynx documentation.
Add new comment