Skip to main content

Why to Use Ubuntu






Why Ubuntu



Brief Intro to Ubuntu

This section follows the legacy of article writting in which an intro to the subject is necessary. Ubuntu, as you all know, is an operating system under linux distribution. Ubuntu started as a command like operating system but now it offers the gui also to accompalish all the tasks. Ubuntu is open source software so it comes free. Using it is easy and it suits best for development process. The next section of this article describes the benefits come along with ubuntu.

What comes in the box ?

There are so much benefits which ubuntu brings. But listing all of them is not necessary. The following few things about ubuntu will be enough to persuade you to use it or atleast give it a try.

  • Open Source: What it means is that it is totally free of cost. It also specifies that there are thousands of developers sitting who are willing to help you anytime you are stuck with your machine. New updates come regularly and bugs are tackled as soon as they are confirmed. Not only this, thousands of applications built for ubuntu are also open source. So you can think, there is a family of open source softwares which come along with ubuntu for free.
  • Fully Customizable: This is also one of the best features which only an open source software can provide. You can customize the code as you like(If you want to but why would you). If you have ever rooted your phone then you know whats it like to have a fully customizable operating system.
  • Powerful file handling: It is incredible the way we can handle our files in ubuntu. Just one command and we can make our file restricted. Just one command and we can delete the whole operating system files. Password protected files, hidden files, directories and links are easy to create and delete.File compression and decompression can easily be done either via gui or cli.
  • Incredible Package Management: The reason why developers prefer linux based operating system is its awesome package management capabilities. Ubuntu has got a
    Advanced Packaging Too(apt)
    which can install almost any package in your system. apt-get install is the most basic command we use to install/update the applications.
  • Superb Network Management: When we think about networking or network sharing then our thoughts are very limited to routers, adapters and ip addresses. But what is behind all these is the management of these. In ubuntu, network management is so handy that you can learn it easily. Changing IP addresses is just a child's play. You can learn more about networking through various sources which can be found at the end of this article which is about to come.

Getting Ubuntu on your machine

After reading all of the above points, you are definitely thinking of trying ubuntu atleast once. In this section i'll tell you how to get it ready on your machine. There are basically 3 methods to use ubuntu.A detailed description of each is not necessary in this article because there are already the official documentation of each method on the internet. But still to reduce your google work, i have posted the links to those documentations at the end of the article.

  • Using Virtual machine: Virtual machine is a software which can run system images (iso files) without affecting the other operating system in which it is running. Its the safest and easiest method to run ubuntu. Just install the virtual machine and run the iso file using it. The detailed documentaion is available on howtogeek website.(link is at the bottom). Its good to use virtual machine to get started with ubuntu but virtual machine degrades the performance of the OS, so use it temporarily.
  • Using Live CD/pendrive: Live CD is another safer option to try ubuntu but its just for the trial basis. You can look and try the ubuntu features and work for as long as the cd/pendrive is inserted in your machine.
  • Dual boot: Once you have tried ubuntu then if you want it permanently then dual booting is the only option. It will install the grub(a software to manage os booting) and you can switch between windows and ubuntu by just restarting. However, the process of dual booting is longer than the rest two.

So thats all. I love ubuntu and thought everyone should give it a try, so wrote this article. If you are also an ubuntu lover then encourage your friends by sharing this article to them or if you are new to ubuntu and have some questions then comment it below and i'll defintely try to help you out. In the next article, i'll highlight some wonderful ubuntu commands. Till then, Hakuna Matata.

Helpful Links

Comments

  1. Online Casino No Deposit Bonus Codes 2021
    › online-casin › online-casin Online Casino choegocasino.com twitter No Deposit Bonuses 2021 — Online 퍼스트 카지노 Casino No Deposit Bonuses 2021 Best 제왕 카지노 코드 no deposit bonuses Online Casino No Deposit Bonuses 2021 Best no deposit bonus codes 2021 온카지노 검증 Best no 제왕 카지노 deposit bonus codes

    ReplyDelete

Post a Comment

Comment on articles for more info.

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i