Skip to main content

Frequently Asked Questions about Ubuntu Linux Installation

If you have just heard about Ubuntu Linux and want to try it out, chances are you are all confused about a lot of things. This post will explain some of those FAQ - Frequently asked questions often asked about Ubuntu Linux.

1) What partition should i install Ubuntu Linux ?


Ubuntu Linux uses EXT4 formatted partition. So, you can't directly install it on to your regular NTFS or FAT32 partitions. The mount point the operating system install on to is denoted as '/' ( root partition ).

2) I see two different versions on Ubuntu Download website. Which one should i download and Install ? LTS ( 18.04 currently ) or the other one ( 19.10 currently ) ?

Generally, there are two versions of Ubuntu available to download - LTS version and a regular version with latest software and kernel. LTS means long term support - Five Years of updates will be provided. Regular version with latest software comes with Nine Months of support only. However, you can always upgrade it to the next version and continue to get new softwares and updates without any issues. 

So if you are wondering which one to get for your Desktop, get the latest version instead of LTS. If you are installing Ubuntu at Work, then grab the LTS version as it is more stable and can get longer updates without needing to upgrade.

Some Useful Tutorial Links.
How to Burn a Ubuntu Bootable CD on Windows? ( check here )
How to Create a Bootable Ubuntu Live USB Drive on Windows ? ( check here )
Detailed - How to Install Ubuntu Desktop ? ( check here )

3 ) While Installing Ubuntu, how much drive space should i allocate for Ubuntu main partition ?

5GB is the minimum storage needed to install Ubuntu. However, that's not a good amount at all. Give it at least 25GB of storage space. I have mine at 52GB. 

4) What is meant by Ubuntu Live CD ?

Live CD allows you to try out Ubuntu on your Laptop or Desktop without installing. This come in handy when you are trying to install it on older laptops. When you boot from a bootable Ubuntu CD or USB Stick, you are given two option - Try Out Ubuntu without Installing or Install Ubuntu. I would recommend you try out Ubuntu first and see if everything is working properly, then go ahead with the install.

5) If i install ubuntu will it delete windows 10 ?

No. Ubuntu installs Grub Bootloader, which lets you choose which OS to boot to during startup. Both Windows 10 and Ubuntu Linux will be listed on it. Choose the one you want and it will boot up without any issues.

If you accidently install Ubuntu on to the Windows 10 Drive, then, Yes,  you will lose Windows 10 or any OS that's receding on that particular drive.

6) Can i see my Windows 10 Drives on Ubuntu ?

Yes. Ubuntu can mount NTFS and FAT 32 formatted Drive. You can find it under 'Other Locations' in File Explorer.  Click on it and it will mount the partition. You can copy, paste and delete files as well. If a Drive is encrypted, then you wouldn't be able to access it via Ubuntu Files. 

If you have any more questions related to Ubuntu, feel free to post it under the comments here. I will update this post with more FAQ questions about Ubuntu.

7) Is it true there are NO Viruses in Ubuntu Linux

That statement is half true. There are viruses made for Linux, but they normally can't do much damage like they do on Windows systems. Also, the viruses made for Windows can't be run on Ubuntu. So Yes, Ubuntu Linux is much safer to use without an Antivirus software. 



Comments

Popular posts from this blog

[ Solved ] SBI ATM 055 Ineligible Transaction Error FIX

Are you experiencing 055 Ineligible Transaction Error every time when you use your SBI ATM Card ? I have a easy FIX for you. What is SBI 055 Ineligible Transaction Error ? It means you are doing a transaction which you or your bank has blocked for security or safety issues. Normally, a user blocks International Usage of a particular Debit / Credit card so that it won't be used by hackers or scammers from other parts of the world. The reason why you are seeing this 055 error in India is probably because your ATM Card's Domestic Usage option is Disabled - either you accidently disabled or your Bank Branch did it. Don't worry. It's easy to fix it. Go to  https://www.onlinesbi.com/  and login with your internet banking username and password. Go to ATM Card Services in the Menu, Select the Card you are have issues and the Click on Change Channel Type . You can see the current status of your Domestic Usage when you click on that. If it's Disabled, simply enab...

[ FIX ] Ubuntu 20.04 Bluetooth doesn't Turn On

I have been using a Logitech Bluetooth keyboard for a while now with my Ubuntu 20.04. Everything worked well without any issues until one day the operating system refused to turn on the Bluetooth. I could toggle Bluetooth On button from the Settings, but it did nothing.  After spending some time Google Searching why my Bluetooth started not working all of a sudden, and after trying a variety of commands to troubleshoot the problem, I finally found a working fix for this issue. Open a Terminal ( Ctrl + Alt + T )  and enter below commands one after another.  sudo rmmod btusb sudo modprobe btusb That's it. Your Bluetooth issue would be now solved.  I can guarantee you this problem is going to pop-up every now and then. So copy the above commands to a text file for future uses. Sometimes, even after entering above commands the bluetooth would refuse to turn on. In such cases, just Suspend the system and then wake up it again and check.

Reduce External Monitor Brightness on Ubuntu 20.04, 21.10

External Monitors are a great addition to any workspace. I have a Full HD Benq one connected with my laptop via HDMI cable to do multi-tasking. What I don't like about this setup is the external screen is still very bright even after setting it to the lowest possible setting via physical buttons present on the monitor. Changing brightness on the Laptop doesn't affect the brightness of the external monitor. However, In Ubuntu, you can adjust the brightness level of any connected monitor by opening up a terminal/command line and entering a few comments. Xrandr is the command we would be using to achieve this. How to change External Monitor Brightness on Ubuntu Linux Open a Terminal ( Ctrl + Alt + T ) Enter the command xrandr -q | grep " connected" and press Enter. Find the external monitor name displayed in this command's output. In my case, it is  HDMI-1 To change the brightness enter this command xrandr --output HDMI-1 --brightness 0.5 and press Ente...