Skip to main content

INSTALLING UBUNTU IN YOUR PC

 

Ubuntu is a Linux distribution based on the Debian architecture. It is usually run on personal computers, and is also popular on network servers, usually running the Ubuntu Server variant, with enterprise-class features. Ubuntu runs on the most popular architectures, including Intel, AMD, and ARM-based machines.

 Ubuntu is perfect OS for begginer Linux Users , as it have a cool Graphical Interface, and runs almost everything that Linux is well-known for.

So, My friends were asking about installing Linux, I recommended them with Ubuntu, and decided to write this down.

I'm coming direct to the point.

1-  Download a Ubuntu .ISO CD image file, from ubuntu.com , or Download it from BitTorrent Client by clicking here, as it's 1GB large file. 

As we want ubuntu for PC, so it is important that you download the Desktop version. If you download the Server version it will not install any graphical desktop and you will have to add that manually.

Now, we have downloaded the matter, here are some essential things required:

  • Connect your laptop to a power source.
  • Ensure you have at least 5GB of free storage space.
  • Have access to either a DVD or a USB flash drive containing the version of Ubuntu you want
    to install.
  • Make sure you have a recent backup of your data. While it's unlikely that
    anything will go wrong, you can never be too prepared
 Actually this is list of recommended requirements by ubuntu.com.

2- Now, we need to create a bootable USB or CD Drive for ubuntu.

I'll recommend Rufus to creat bootable USB, just download executable file from rufus.com , and run it.

Run it, select the ISO file and the USB Drive...

Wait for some moments, you got your Bootable USB Drive ready.

Plug in the USB , restart your PC.

It will take you to Installation.

3- Setup the Ubuntu.

You need to setup mlanguage , location , etc. to install UBUNTU.


SELECT A LANGUAGE

 Here click Download Updates while Installing and Install This Third-Party Software. Either way Ubuntu will download the bulk of the operating system from the internet.


You may select "Erase data and Install Ubuntu".
Or It might get very complicated , unless you're a well known programmer.
Make sure about creating a Back-Up of your data.
As I told, earlier.

Click on Continue. To install it.

Select Your Location.

Select a preferred Keyboard Layout.

Fill in your details, to create a used profile.
This will be the account of SuperUser.

After some moments, Installation will be completed, restart your PC to continue.

Finally, Create a Password for SuperUser.

 

You got your one of Ideal OS.

 

THANKS FOR READING THE POST!
 STAY TUNED FOR MORE!

 We will be back soon with more articles 

 Till then...

 Follow me on Instagram 

 There you will find some awesome programming memes!

 

 

Comments

Resources

Popular posts from this blog

WHAT IS OBFUSCATION? AND HOW TO OBFUSCATE DIFFERENT PROGRAMMING LANGUAGES!

OBFUSCATION - A very important part of closed source programming! That helps in security of apps, websites,softwares, etc. We'll mention about obfuscating code of different languages, if we're missing something, that you were expecting, tell in comments, I'll add that one! But first of all,what is obfuscation? Dictionary meaning of obfuscation is , the action of making something obscure, unclear, or unintelligible. It's so similar in programming too, so in programming,   It's simply conversion of a code in a computer language into some secret unreadable, non-understandable code! That could be understood by only compiler or the machine you are running on! Why obfuscation? It's too easy to decompile C# or Java code, and it could allow goons to read all the code of a program, and then he/she may copy it or even harm the organization! So, most of languages have a compiler that converts your raw code into Byte Code , that either converts it into non...

WEB SERVER FINGERPRINTING USING NETCAT- INFORMATION GATHERING

Hey There! I just thought about starting a Web Security Testing Series! So , here it is! I just started the Series with Information Gathering, so it's a part of Information Gathering that is- "Web Server Fingerprinting" If you are beginner , it could be good start, because the information gathering is one of most initial stages of Web Security Testing (aka Hacking). Objective of Information gathering is to get more and more info about victim, so we can select the perfect attack or exploit , that could easily Find a vulnerability and get your way into system! I'll perform fingerprinting using Netcat Tool, that is pre-installed in Kali Linux, but it's bright side is that you could use it on WINDOWS, It's compiled to Windows Executable File by a non-official authority, so go and get it here ! And If it's not installed on your Linux System, run following command in Terminal! sudo apt-get install netcat Netcat is called Swiss Army Knife of Hack...

INSTALLING ALL KALI LINUX TOOLS ON OTHER LINUX OS

Whenever it comes to Penetration and Security Testing , KALI LINUX is considered one of best ever penetration testing Operating System. As It have hundreds of security testing tools. However there are some disadvantages of Kali. Like, you can use STEAM OS as your Linux Preference, You may use Ubuntu as beginner, but they don't have those all tools that are present in Kali. So here I want to introduce a tool that can install all Kali Linux tools in your Linux OS (obviously, other then kali) . It's KATOOLIN  , It's a Python-Based Tool , available on GITHUB, CLICK HERE. OR Directly Clone it into your system from terminal by copying following line: git clone https://github.com/LionSec/katoolin.git So now you have Katoolin installed. Next step is to make it executable. Do it by copying following command to your Terminal chmod +x /usr/bin/katoolin usr/bin/katoolin is location where katoolin script is saved. Next, run katoolin by simply typing katoolin in T...