Quantcast
Image

Search Results for: explore

How to install Internet Explorer in Linux

By  •  May 28, 2018

The prerequisites for installing IE in Linux is wine and cabextract. To install these 2 packages in Ubuntu, simply run the following command;

$ sudo apt-get install wine cabextract

Next is to download and run the installer script provided by the nice guys at the IEs4Linux project;

$ wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
$ tar xf ies4linux-latest.tar.gz
$ ies4linux-*/ies4linux

The installer will then download and install the neccessary files and programs after clicking the Ok button at the following screen;

In the end, just execute the following command to run the installed Internet Explorer version of choice;

$ ~/bin/ie6

How to create private AWS S3 bucket

By  •  November 28, 2023

S3 buckets can be used to store all kinds of objects, not just for website assets such as JavaScript, CSS, or image files. It can also be used to …
Read More

How to install AWS CLI on Windows

By  •  November 28, 2023

AWS Command Line Interface (CLI) is a Python-based suite of tools available as a pip package. You can choose to install AWS CLI using pip if you already have …
Read More

How to disable directory listing in Apache

By  •  November 28, 2023

If no DirectoryIndex (normally configured as index.html, index.htm, index.php, welcome.html) present in a directory, and if mod_autoindex is enabled (which by default is normally enabled), Apache would list the directory contents, as the following;

While useful for some cases, you would want to disable this feature (perhaps for security reason). There are few ways to do this.

How to burn CD/DVD ISO image in Windows 7

By  •  May 28, 2023

Windows 7 has built in support to burn ISO images, and so no external CD/DVD burning program is required to burn the ISO file.

To burn the ISO file, run Windows Explorer by clicking both the <Win> (the button with the Windows logo) and <e> together, or double click on the My Computer icon on your desktop.

From there, find your ISO image and right-click on the file. You’ll get a menu similar to the screenshot below.

Make sure you have a blank CDR/CDRW/DVDR/DVDRW in your optical drive’s tray, and click on the Burn disc image option.

Now you can sit back and relax while waiting for your ISO image to be written to your optical disc.

How to change user agent for Scrapy spiders

By  •  December 2, 2021

User-agent is a string that browsers use to identify themselves to the webserver. It is sent on every HTTP request in the request header, and in the case of …
Read More

How to access shared printer in Windows

By  •  December 2, 2021

A network printer or a local printer that is shared by other computers can be accessed by Windows. You can connect to printers shared by Windows or any other …
Read More

How to share folder in Windows

By  •  December 2, 2021

You can allow other people in the network to access your folder or directory with the file sharing feature in Windows. The feature is provided by the File and …
Read More

How to access shared folder in Windows

By  •  December 2, 2021

Folders shared by other computers in the same network can be accessed from Windows even if it's shared by different operating systems and distributions such as Ubuntu Linux or …
Read More

How to burn ISO image to CD/DVD/Blue Ray in Windows

By  •  December 2, 2021

ISO image is typically used to store operating system installers and needs to be burned to writable optical media such as CDR, CDRW, DVDR, DVDRW, BD-R, and BD-RW before …
Read More

Top