I have a website which is being hosted by a Linux Server. I can access my files of my website using SSH. I was thinking if it is possible to install a web browser into my linux server so that I can browse websites in it.
I hope you understand what I'm trying to do here.
If that is possible, can you show me how to do it.
Your help would be greatly appreciated!
Thanks!
4 Answers
From my understanding of your question, I think you want a visual browser in linux server. there are other several browsers for linux. The easiest one would be
w3m -v There is another similar question here.
0If you have only SSH access to your server, I'm not sure if a graphical browser would work without installing Xorg on server side, as the packages pull Xorg as a dependency, however you could try to install a Web-Browser from a tar.gz file and forward X over SSH by using ssh -x.
If you just want a command line browser, you should install links.
4If you have administrative privileges on the system, and you know what package manager it uses, you can simply install the browser like you normally would. However, I suspect you only have access to a subset of the files.
In that case, take a look at . They have builds of Firefox and Chromium that run out of a local directory. All you need to do is drop their files on the target computer and run the executable inside, independent of the installed packages on the system.
You may encounter problems giving the executable the necessary permissions to run; you ability to run code from your folders is set by the web server's administrative policies.
I'm surprised that no one ever mentionned Lynx. I used it since I started web developement.
According to Wikipédia : "Lynx is a highly configurable text-based web browser for use on cursor-addressable character cell terminals. It is the oldest web browser currently in general use and development, having started in 1992 and as of 2013, 21 years later, still in use and development."
You can install it with sudo apt-get install lynx. Start it with lynx nameofthewebsite and you are done !