Skip to main content

CREATE A BOOTABLE USB

​Creating a bootale usb in Linux is much easier than that in Windows.

First what you need to have is the iso image of the OS which you wish to install, which can be either downloaded from the internet. In case you do not have an iso but you have the setup files, in the sense all the files that are to be included in the iso, then you should create an iso with those files.

In ubuntu or anyother Linux distros, it can be done the following way:Select all the files to be included in the iso image and right click and then select CompressA window apppers asing for the location and the type of the compressed file. There you select .iso and click 'Create'.It is done

Now, after you have the iso image ready, place it in an accessable directory. To simplify the case, lets put it in the Desktop. Then folow the steps,

Open the terminal (Ctrl+Alt+T).Type in 

sudo fdisk -l.    

This command will give you the list of all the harddrives connected to you PC and there you can can find out the name of your flash drive. It will be in the form /dev/sdb<?>

Then change the working directory to the location where you have placed the iso. Here we are in the Desktop. So, type in cd Desktop/. (In general, cd /home/userName/path)sudo dd if=iso_name.iso of=/dev/sdb/<?>

Here, iso_name refers to the name of the iso which you want to write to the flash drive and /dev/sdb<?> is the name of your USB/flash drive.

Wait for a few minutes till the process is completed. When completed successfully, few messages will be displayed. Later you can reboot your PC to install the OS.

In windows, there are applications like rufus which is a very small and effecient portable application which allows you to boot a USB Drive.

Comments

Popular posts from this blog

SNIFF GSM USING HACKRFX

​TOOLS  USED: •  ha ckrf_kali • brategnuradio-companion • gr-gsmgqrx • wireshark INSTALL REQUIREMENTS: First thing, you want to make sure you have all the required software installed, you can install most of them and their dependencies using your distribution package manager. Let’s start with the libraries and tools for the hackrf itself, on a Debian/Ubuntu distro you’ll install them like so: sudo  apt-get install  hackrf   libhackrf -dev libhackrf0 Once these libraries are installed, you can plug your hackrf into one of your USB ports and execute the  hackrf_info  command, at this point you should see something like the following: # hackrf_info Found  HackRF  board. Board ID Number: 2 ( HackRF  One) Firmware Version: 2014.08.1 Part ID Number: 0x00574746 0x00574746 Serial Number: 0x00000000 0x00000000 0x14d463dc 0x2f4339e1 You will now install  gnuradio  which is the software we’ll use to decode the RF signals,...

FORMAT A USB IN LINUX

​Run the below commands to format the usb to fat32 filesystem from terminal, Type in: lsblk It gives the list of the filesystems on your device. Select the partition. It will be something like /dev/sdbx umount /dev/sdxx then format your device to FAT32 mkdosfs -F 32 -I /dev/ sdx There are also inbuilt packages/softwares which comes with almost all the Linux distributions  which can be used for formatting drives.

MORE ABOUT RANSOMWARES. PART 1

 Not long ago, a man committed suicide after an automatically generated notice from a computer virus threatened him with jail unless he paid a ransom thousands of dollars. The year was 2014. As incredible as the story seems, it marked the first known time a computer virus actually killed somebody. The next generations stole cash from users around the globe, and Cryptolocker raised the stakes – holding data of hundreds of thousands of users hostage. Despite successive short-lived take downs, the malware has made a comeback as CTB (Curve-Tor-Bitcoin) Locker. This challenging breed of malware is continuously improving, reaching new levels of complexity as smartphones and tablets are increasingly used to store crucial personal and enterprise-level documents. Bitdefender, the anti-malware solutions provider, zooms in on the subject to show how this type of virus works and to tell users how to prevent being locked out and extorted. What is ransomware? Ransomware is a type of malware th...