Linux Download Password Protected Large ISO Images [ Authentication Credentials ]

To download a password-protected large ISO image in Linux, you’ll need to provide the authentication credentials (username and password) to the server. The following is a general guideline for downloading a password-protected ISO image: Open a terminal window. Use the wget command to download the ISO image: $ wget –user=<username> –password=<password> <URL_of_the_ISO_image> Replace <username> and … Read more

Linux Delete / Remove MBR

To delete or remove the Master Boot Record (MBR) in Linux, you can use the dd command. The dd command can be used to overwrite the MBR with zeros or other data. Here’s how you can use dd to delete the MBR: Determine the device name of the disk you want to delete the MBR … Read more

RHEL 6 / CentOS 6: Install Adobe Flash Player For Firefox Browser

To install Adobe Flash Player on Red Hat Enterprise Linux (RHEL) 6 or CentOS 6 for the Firefox browser, you can follow these steps: Install the required dependencies: $ sudo yum install nspluginwrapper alsa-plugins-pulseaudio libcurl Download the Adobe Flash Player for Linux from the official Adobe website: $ wget https://fpdownload.adobe.com/get/flashplayer/pdc/27.0.0.187/flash-player-27.0.0.187-release.x86_64.rpm Install the Adobe Flash Player … Read more

CentOS / RHEL: Install gpass Password Manager For GNOME2 Desktop

To install gpass password manager on CentOS or Red Hat Enterprise Linux (RHEL) with the GNOME2 desktop environment, you can follow these steps: Install the required dependencies: $ sudo yum install gnome2-devel gnome-keyring-devel libgnome-keyring-dev gtk2-devel Download the source code for gpass from its official website or Github repository: $ wget https://github.com/gpass/gpass/releases/download/v0.5.1/gpass-0.5.1.tar.gz Extract the source code: … Read more