<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Ubuntu on Vineet Kumar</title><link>https://new.vineetkumar.me/tag/ubuntu/</link><description>Recent content in Ubuntu on Vineet Kumar</description><generator>Hugo</generator><language>en</language><lastBuildDate>Sun, 17 May 2015 14:18:51 +0000</lastBuildDate><atom:link href="https://new.vineetkumar.me/tag/ubuntu/index.xml" rel="self" type="application/rss+xml"/><item><title>Auto Mounting Drives in Ubuntu</title><link>https://new.vineetkumar.me/2015/05/auto-mounting-drives-in-ubuntu/</link><pubDate>Sun, 17 May 2015 14:18:51 +0000</pubDate><guid>https://new.vineetkumar.me/2015/05/auto-mounting-drives-in-ubuntu/</guid><description>&lt;p&gt;If you are using Ubuntu in dual mode with Windows you must be having a few partition that are NTFS. By default these NTFS drives are not auto mounted. So while you have the partitions, you won’t be able to access them if you don’t mount it.&lt;br&gt;
As you already may know that in Ubuntu (and Linux in general) there are no drives. Combine it with the fact that the root directory starts from a forward slash (&lt;strong&gt;/&lt;/strong&gt;). Every drive in Linux is ‘&lt;strong&gt;mounted&lt;/strong&gt;‘. So when you insert a DVD disk the content of the disk may be mounted to a directory &lt;strong&gt;/media/username/DvdLabel&lt;/strong&gt;. Here &lt;strong&gt;DvdLabel&lt;/strong&gt; is the name of the mounted directory which was taken from the label of the disk.&lt;br&gt;
Similarly if you have a partition with the label, say, &lt;strong&gt;Documents&lt;/strong&gt; when you click the Documents partition, it is then that the &lt;strong&gt;Documents&lt;/strong&gt; partition (or drive) is mounted to &lt;strong&gt;/media/Documents&lt;/strong&gt;.&lt;br&gt;
By default Ubuntu doesn’t mount the partitions when it starts. You have to click the partition in Nautilus (or &lt;strong&gt;Files&lt;/strong&gt;, the file explorer) once so that it can be mounted. This can be irritating since when an application starts which requires a partition they will result in error. Eg, if you have set dropbox to sync to files to Documents drive or Transmission to download files to Multimedia drive.&lt;br&gt;
You can make these NTFS drives automount with Ubuntu by various method as described in &lt;a href="https://help.ubuntu.com/community/MountingWindowsPartitions" target="_blank" rel="noopener noreferrer"&gt;this page&lt;/a&gt;. But its a long and complicated read. So here is the method explained simply.&lt;/p&gt;
&lt;h3 id="find-out-label-and-uuid" class="relative group"&gt;Find out Label and UUID &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#find-out-label-and-uuid" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;First you need to know the exact Labels and UUID of the drives. Consider UUID (&lt;em&gt;&lt;a href="http://en.wikipedia.org/wiki/Universally_unique_identifier" target="_blank" rel="noopener noreferrer"&gt;Universally Unique Identifier&lt;/a&gt;&lt;/em&gt;) as a unique identifier for the drive which will never change (unless you format the drive, re-partition it, or manually change it). To know the Label and UUID you need to use the command blkid command. This command when used with sudo will give you a list of all the partitions along with its Label and UUID. Like below:&lt;/p&gt;
&lt;pre&gt;vyom@VyomNix:~$ &lt;strong&gt;sudo blkid&lt;/strong&gt;
[sudo] password for vyom:
/dev/sr0: LABEL="Alpha_0515" TYPE="udf"
/dev/sda1: UUID="30986b83-1234-4eeb-a30a-482223df145f" TYPE="ext4"
/dev/sda2: LABEL="WinServer" UUID="3F1234AB1233423C" TYPE="ntfs"
/dev/sda3: LABEL="Recovery" UUID="A12345E12345AF1B" TYPE="ntfs"
/dev/sda4: UUID="0659-9A568" TYPE="vfat"
/dev/sda6: UUID="b1234321-ad5f-4ddd-89ac-eed1234c56c7" TYPE="swap"
/dev/sda7: LABEL="Digital" UUID="33FA6E12GA6DF687" TYPE="ntfs"
/dev/sda9: LABEL="Entertainment" UUID="123FHE3E3N98BF65" TYPE="ntfs"
/dev/sda10: LABEL="Documents" UUID="37MME50B21B7C65B" TYPE="ntfs"
/dev/sda11: LABEL="Spare1" UUID="654EF123456CAF7E" TYPE="ntfs"
/dev/sda12: LABEL="Spare2" UUID="68D774EB5DBFPOOI" TYPE="ntfs"
vyom@VyomNix:~$&lt;/pre&gt;</description></item><item><title>Creating a Startup Application Script in Ubuntu</title><link>https://new.vineetkumar.me/2015/05/creating-a-startup-application-script-in-ubuntu/</link><pubDate>Sat, 16 May 2015 15:25:35 +0000</pubDate><guid>https://new.vineetkumar.me/2015/05/creating-a-startup-application-script-in-ubuntu/</guid><description>&lt;p&gt;If you are new to Ubuntu and have installed various softwares, eventually there comes a time when you want the applications to start automatically just after the system boots.&lt;br&gt;
Following are two ways to add applications to startup list. First is Windows method, while the second method is geeky way (as you must have guessed, it’s my favourite).&lt;/p&gt;
&lt;h2 id="easy-method" class="relative group"&gt;Easy method &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#easy-method" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Just like Windows have a startup folder where you can place shortcut files and which would let you start the applications when user logs in, in Ubuntu there is a &lt;strong&gt;&lt;code&gt;~/.config/autostart&lt;/code&gt;&lt;/strong&gt; folder where you can place the shortcut files. (Just to recall &lt;del&gt;/ is your home folder. So **&lt;/del&gt;/.config** = &lt;strong&gt;/home/username/.config&lt;/strong&gt;).&lt;br&gt;
You can also use the &lt;strong&gt;Startup Applications&lt;/strong&gt; tool (ships inbuilt with Ubuntu) which lets you add startup applications to that folder. Shortcut files in Ubuntu are files which ends with &lt;strong&gt;.desktop&lt;/strong&gt;. The folder where you can find most of the .desktop files is &lt;strong&gt;/usr/share/applications&lt;/strong&gt;. So you can just find the desktop file related to the particular application and copy the .desktop file into the &lt;strong&gt;&lt;code&gt;~/.config/autostart&lt;/code&gt;&lt;/strong&gt; folder.&lt;br&gt;
If you want to start the application for &lt;strong&gt;every user&lt;/strong&gt; then you would need to copy the .desktop file in &lt;strong&gt;&lt;code&gt;/etc/xdg/autostart&lt;/code&gt;&lt;/strong&gt; folder.&lt;/p&gt;
&lt;figure id="attachment_991" aria-describedby="caption-attachment-991" style="width: 1010px" class="wp-caption aligncenter"&gt;[&lt;img loading="lazy" decoding="async" class="size-full wp-image-991" src="https://new.vineetkumar.me/wp-content/uploads/2015/05/StarupApplications.png" alt="Starup Applications Folder and Tool" width="1010" height="452" /&gt;][1]&lt;figcaption id="caption-attachment-991" class="wp-caption-text"&gt;Autostart Folder on the left and Startup Applications Tool on the right&lt;/figcaption&gt;&lt;/figure&gt;</description></item><item><title>How Ubuntu screwed me over and why I still love it</title><link>https://new.vineetkumar.me/2015/04/how-ubuntu-screwed-me-over-and-why-i-still-love-it/</link><pubDate>Fri, 17 Apr 2015 07:19:53 +0000</pubDate><guid>https://new.vineetkumar.me/2015/04/how-ubuntu-screwed-me-over-and-why-i-still-love-it/</guid><description>&lt;p&gt;As humans, memories have a special place in our heart. Nothing can prepare us if something goes wrong and god forbid you lose them. It’s hard but imagine losing months of snaps that you shot over the trips you made across city or continent, documents accumulated over the course of your research on some project, also those rare songs and movies you got your hands on. It could be a frustrating experience if you didn’t have a backup of the data you lost.&lt;br&gt;
Something like that happened with me over the last week. I was playing with Ubuntu Operating System from last few months but in a virtual environment. On one fine weekend I thought I am ready to finally install Ubuntu 14.04 LTS on a dedicated partition and to use it as my primary OS. I created a bootable USB and rebooted PC. Ubuntu asked me if I want to “&lt;strong&gt;Replace the OLD Ubuntu&lt;/strong&gt;” with the new one. I thought, “&lt;em&gt;Ok, Cool, sure do. I don’t need old Ubuntu&lt;/em&gt;”. And it did remove old Ubuntu and nicely completed the rest of the installation.&lt;br&gt;
When the Unity desktop showed up, it was all too familiar since I have been working on it for quite some time. Except when I tried to watch an episode of “The Flash” kept on my Multimedia drive. I couldn’t find it. I was like, “&lt;em&gt;Why isn’t my other drives showing up? Are those not mounted?&lt;/em&gt;”. I was use to unusual things over my time with playing Ubuntu in virtual environment. But nothing could prepare me for what lay ahead. It was when I opened the “Disks” application that the reality hit me hard. Ubuntu had not only replaced old Ubuntu, but it had also wiped the existence of every other partition and the data along with it while installing itself.&lt;br&gt;
Do you know that feeling? At first you feel numb. You think, “&lt;em&gt;WTH just happened?&lt;/em&gt;“. The denial phase, “&lt;em&gt;No, it can’t be happening&lt;/em&gt;”. Then the shock overtakes you. “&lt;em&gt;NOOO, MY DATA!&lt;/em&gt;”. It soon turns into rage, “&lt;em&gt;WTF Ubuntu, HOW CAN YOU DO THIS?&lt;/em&gt;”. You try to remember,“&lt;em&gt;Did I do something wrong?&lt;/em&gt;”. Then you realize you didn’t. You just selected the automated install as opposed to let you choose your own partition. It’s then when you realize you DID made a huge mistake by choosing the automated install. Finally, you try to remember when was the last time you did a backup. Eyes wide open, “&lt;em&gt;It was long time ago!&lt;/em&gt;“.&lt;br&gt;
I had backed up my data about 3-4 months before. 3-4 months was a long time. A lot had happened since then. “&lt;em&gt;I must have my data back&lt;/em&gt;”, I thought with a determined look in my face. The following week I used my secondary PC to recover the data back from the HDD using application known as &lt;strong&gt;MiniTool Power Recovery&lt;/strong&gt;. It took it’s time. Juggling day job in the morning I only had nights to work on the recovery. Complete night to scan for partitions and data. Next two nights to actually recover the data. Another night to make sure I had not left anything else.&lt;br&gt;
As I found out later that Ubuntu wiping out whole of the physical HDD and all its partitions without so much so as a warning “&lt;strong&gt;You are going to loose ALL YOUR DATA&lt;/strong&gt;”, was actually a bug in the version I was using: 14.04**.1**. This bug was discovered about &lt;a href="https://launchpad.net/ubuntu/+source/ubiquity/+bug/1265192" target="_blank" rel="noopener noreferrer"&gt;a year ago&lt;/a&gt; and all it required to fix it was probably just to reword the statement “Replace Old Ubuntu” with something like, “&lt;em&gt;All your disk is going to be wiped out. Please make sure you are not installing this OS while drunk&lt;/em&gt;”. Let me tell you, that would have made a lot of difference. Had Ubuntu said something like that, I could have chosen the custom install instead. This bug was recently fixed in the update 14.04**.2** but only after making a lot of people who trusted “automated install” to get pissed in the process.&lt;br&gt;
Anyway, what happened couldn’t be roll backed. But I did manage to recover all my data. Though all the software that I had accumulated as giveaways were lost, along with all the customization that I had on my Windows Server 2008 R2 OS, but those can be acquired again.&lt;br&gt;
This incident taught me quite a few important lessons. Of course the first one is not to trust “Automated installations”, especially when it comes to installing a complete OS. Other was to keep regular backups. Importance of cloud backup is especially important considering that it happens automatically once you set it up.&lt;br&gt;
Let’s see what things I had already backed up. I had all my:&lt;/p&gt;</description></item><item><title>Concept of Installing Applications in Ubuntu</title><link>https://new.vineetkumar.me/2015/04/concept-of-installing-applications-in-ubuntu/</link><pubDate>Sat, 11 Apr 2015 19:06:36 +0000</pubDate><guid>https://new.vineetkumar.me/2015/04/concept-of-installing-applications-in-ubuntu/</guid><description>&lt;p&gt;Until now we have discussed how to install Ubuntu, &lt;a href="https://new.vineetkumar.me/2015/03/the-user-experience-of-using-ubuntu/" target="_blank" rel="noopener noreferrer"&gt;concepts around files&lt;/a&gt;, &lt;a href="https://new.vineetkumar.me/2015/03/the-user-experience-of-using-ubuntu/" target="_blank" rel="noopener noreferrer"&gt;keyboard shortcuts&lt;/a&gt; to navigate easily and various ways to customize Ubuntu with &lt;a href="https://new.vineetkumar.me/2015/01/making-ubuntu-personalized-gnome/" target="_blank" rel="noopener noreferrer"&gt;Gnome shell&lt;/a&gt;. Today I am going to discuss how to install applications in Linux along with the various ways to do them, and will end with a special note that would explain how “running” applications in Ubuntu is fundamentally different than Windows.&lt;br&gt;
You must be used to installing softwares in Windows by downloading .EXE files or .MSI installers. You open these files and click Next -&amp;gt; Next and viola. Installing applications in Ubuntu is a bit different and safer than Windows in some cases. But before we get into the steps its important to understand the concept of Packages in Ubuntu.&lt;/p&gt;
&lt;h3 id="what-is-a-package" class="relative group"&gt;What is a Package? &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#what-is-a-package" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;A package can be considered a collection of files bundled into a single file. Package contains among other things, the installation script which tells where the files will be copied and what settings needs to be changed once the package is installed.&lt;br&gt;
In essence, the output of a package is equivalent to .exe or .msi installers, that is they install a software on the OS. There are many ways to install a package on Linux. You can install a package using Package manager which itself are categorized in Low-Level and High-Level package managers. You can also download packages over the Internet and use it to install it on the system (more on this later in this article).&lt;br&gt;
Low level package managers are &lt;strong&gt;dpkg&lt;/strong&gt; (for Debian based Linux like Ubuntu) and &lt;strong&gt;rpm&lt;/strong&gt; (for SUSE and Fedora). While high level package managers are &lt;strong&gt;apt-get&lt;/strong&gt; (for Debian), &lt;strong&gt;zypper&lt;/strong&gt; (for SUSE) and &lt;strong&gt;yum&lt;/strong&gt; (for Fedora).&lt;br&gt;
Packages can depend on other package to be installed first. Say if you want to install some software which was written in PHP, you may need to install the PHP package first. This concept is called &lt;strong&gt;dependency&lt;/strong&gt; and is usually taken care of itself if you are using a high level package managers.&lt;/p&gt;
&lt;h3 id="advanced-packaging-tool-apt" class="relative group"&gt;Advanced Packaging Tool (APT) &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#advanced-packaging-tool-apt" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;The underlying package manager in Ubuntu (or any Debian based Linux) is APT. You can use the command &lt;strong&gt;apt&lt;/strong&gt; to install or remove packages on your system. APT is also used in background in GUI based package managers like &lt;strong&gt;Ubuntu Software Center&lt;/strong&gt; and &lt;strong&gt;synaptic&lt;/strong&gt;.&lt;br&gt;
EDX have a pdf which lists some basic commands to using package managers. Download it &lt;a href="https://courses.edx.org/asset-v1:LinuxFoundationX+LFS101x.2+1T2015+type@asset+block@Basic_Packagaing_Commands.pdf" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id="what-is-source-and-binary" class="relative group"&gt;What is Source and Binary? &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#what-is-source-and-binary" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;</description></item><item><title>The User Experience of using Ubuntu</title><link>https://new.vineetkumar.me/2015/03/the-user-experience-of-using-ubuntu/</link><pubDate>Fri, 27 Mar 2015 16:07:41 +0000</pubDate><guid>https://new.vineetkumar.me/2015/03/the-user-experience-of-using-ubuntu/</guid><description>&lt;p&gt;In &lt;a href="https://new.vineetkumar.me/technology/ubuntu/" target="_blank" rel="noopener noreferrer"&gt;previous articles&lt;/a&gt; we installed Ubuntu, learned how to use Gnome shell on Ubuntu and customize it as per needs. In this article I would be dealing on some more points which makes it easier to understand the aspects of Ubuntu for those who are still deeply wrapped up in the world of Windows. Then we will learn how you can use keyboard shortcuts to improve the User Experience of using Ubuntu. In the end we will see how you can use built in ways to help yourself if you ever needed to learn more about Ubuntu and Terminal commands.&lt;/p&gt;
&lt;h2 id="philosophy-of-linux-over-windows" class="relative group"&gt;Philosophy of Linux over Windows &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#philosophy-of-linux-over-windows" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;There are a few structural changes one notices when they migrate to Linux based OS like Ubuntu as compared to Windows. Following is a list that explains some of them:&lt;/p&gt;
&lt;h3 id="1-disk-system" class="relative group"&gt;&lt;strong&gt;1. Disk System&lt;/strong&gt; &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#1-disk-system" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;In Windows each partition of the HDD is referred as Disk1, Disk2 etc. While in Ubuntu it is termed as sda1, sda2. Here sda stands for one physical hard disk. And sda1 stands for Storage Device “A” partition 1 on a single physical HDD.&lt;/p&gt;
&lt;h3 id="2-file-system-type" class="relative group"&gt;&lt;strong&gt;2. File System Type:&lt;/strong&gt; &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#2-file-system-type" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;Filesystem is a way for the OS to keep the data on the HDD and a way to access it. Windows user would be familiar with NTFS and FAT32 but on Ubuntu, EXT3 or EXT4 is used primarily while EXT2 and XFS are also common.&lt;/p&gt;
&lt;h3 id="3-drive-naming-convention" class="relative group"&gt;&lt;strong&gt;3. Drive Naming Convention:&lt;/strong&gt; &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#3-drive-naming-convention" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;In  Windows people are too familiar with drives named on alphabet like C, D, E and F. It’s the C: drive which is the root drive and where OS is installed. Ubuntu is radically different  where the naming convention is considered.&lt;br&gt;
In Ubuntu, root is a single forward slash. That is, “&lt;strong&gt;/&lt;/strong&gt;“. So suppose I create a directory (another term for “folders”) called &lt;strong&gt;home&lt;/strong&gt; in the root folder. The path for that would be &lt;strong&gt;/home&lt;/strong&gt;.&lt;br&gt;
Due to this convention, the way removable drives are handled is also different in Linux. A CD you insert with label &lt;strong&gt;projectone&lt;/strong&gt; in the CD drive will be “mounted” and can be accessed from say, &lt;strong&gt;/media/username/projectone&lt;/strong&gt;.&lt;br&gt;
Lastly, in Linux, file and folder names are case sensitive. So, &lt;strong&gt;/home/user&lt;/strong&gt; is different from &lt;strong&gt;/home/User&lt;/strong&gt; and &lt;strong&gt;/home/USER&lt;/strong&gt;.&lt;/p&gt;
&lt;figure id="attachment_815" aria-describedby="caption-attachment-815" style="width: 672px" class="wp-caption aligncenter"&gt;[&lt;img loading="lazy" decoding="async" class="wp-image-815 size-full" src="https://new.vineetkumar.me/wp-content/uploads/2015/02/Nix-File-System.jpg" alt="A typical Directory Structure in Linux" width="672" height="464" /&gt;][1]&lt;figcaption id="caption-attachment-815" class="wp-caption-text"&gt;A typical Directory Structure in Linux. Image Courtesy: edx.org&lt;/figcaption&gt;&lt;/figure&gt;</description></item><item><title>Making Ubuntu Personalized with GNOME</title><link>https://new.vineetkumar.me/2015/01/making-ubuntu-personalized-gnome/</link><pubDate>Sat, 31 Jan 2015 14:55:31 +0000</pubDate><guid>https://new.vineetkumar.me/2015/01/making-ubuntu-personalized-gnome/</guid><description>&lt;p&gt;Until now we got familiar with Ubuntu and know &lt;a href="https://new.vineetkumar.me/2015/01/ubuntu-updating-and-setting-up-softwares/" target="_blank" rel="noopener noreferrer"&gt;how to install updates and softwares&lt;/a&gt;, as well as know how to use a few commands using Terminal. And now that we know what is Unity and the Unity bar, it’s time to dump it! Seriously, there are cooler alternatives out there. One such alternative is GNOME. GNOME was native part of Ubuntu until a few versions ago. But Canonical switched it for Unity later. And while Unity may provide a very good shell I don’t think it’s on par with modern era.&lt;br&gt;
In this guide I will install GNOME  and write about how to customize it with extensions.&lt;/p&gt;
&lt;h3 id="gnome" class="relative group"&gt;&lt;strong&gt;GNOME:&lt;/strong&gt; &lt;span class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100"&gt;&lt;a class="group-hover:text-primary-300 dark:group-hover:text-neutral-700" style="text-decoration-line: none !important;" href="#gnome" aria-label="Anchor"&gt;#&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;GNOME shell provides a fully customized UI on top of Ubuntu. Consider a shell akin to a completely new theme in Windows, except, shell is much more than &lt;em&gt;just a theme&lt;/em&gt;. It actually is a complete &lt;a href="http://en.wikipedia.org/wiki/Desktop_environment" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;Desktop Environment&lt;/strong&gt; (DE)&lt;/a&gt; and contains completely different and sometimes a unique set of features which other shell lacks.&lt;br&gt;
Unlike Windows, you can  choose to use any DE right before you login from the login page. So while one user might be using Unity, you on the same Ubuntu can use GNOME. I should warn though that GNOME is a little heavy on resources than Unity, but it’s beautiful and that there are some sacrifices which have to be made for “elegance”. Without wasting more time lets just install GNOME and see it in action.&lt;br&gt;
To install GNOME run following command on Terminal (again Ctrl + Shift + T) while entering password when asked:&lt;/p&gt;
&lt;pre&gt;sudo apt-get install gnome&lt;/pre&gt;
&lt;p&gt;This will install &lt;a href="https://wiki.gnome.org/Apps" target="_blank" rel="noopener noreferrer"&gt;a bunch of packages&lt;/a&gt; (around 500 MBs) which are included in GNOME by default.&lt;/p&gt;</description></item><item><title>Ubuntu: Updating and Setting up Softwares</title><link>https://new.vineetkumar.me/2015/01/ubuntu-updating-and-setting-up-softwares/</link><pubDate>Sun, 25 Jan 2015 20:31:22 +0000</pubDate><guid>https://new.vineetkumar.me/2015/01/ubuntu-updating-and-setting-up-softwares/</guid><description>&lt;p&gt;In my &lt;a href="https://new.vineetkumar.me/2015/01/ubuntu-the-stage-is-set/" target="_blank" rel="noopener noreferrer"&gt;last article&lt;/a&gt; I wrote about my first impressions of freshly installed Ubuntu 14.04 and shared what I knew about Unity interface which Ubuntu comes bundled with. Today I am going to update the OS and install various softwares. You can follow the steps to replicate the same on your copy of the OS or skip a few steps as per your requirements.&lt;br&gt;
Installing updates is the first thing which one should do after installing a fresh copy of Ubuntu. Updates may include feature enhancement or security bugs. There are two methods to update Ubuntu. For first you can press “&lt;strong&gt;Dash Home&lt;/strong&gt;” button on top of the Unity bar and type update, then select “&lt;strong&gt;Software Updater&lt;/strong&gt;“.&lt;/p&gt;
&lt;figure style="width: 1036px" class="wp-caption alignnone"&gt;&lt;img loading="lazy" decoding="async" src="https://new.vineetkumar.me/wp-content/uploads/2015/01/Software-Updater.png" alt="Software Updater" width="1036" height="686" /&gt;&lt;figcaption class="wp-caption-text"&gt;Software Updater&lt;/figcaption&gt;&lt;/figure&gt;
&lt;figure id="attachment_643" aria-describedby="caption-attachment-643" style="width: 486px" class="wp-caption aligncenter"&gt;[&lt;img loading="lazy" decoding="async" class="size-full wp-image-643" src="https://new.vineetkumar.me/wp-content/uploads/2015/01/Software-Updater-Checking-for-Updates.png" alt="Software Updater Checking for Updates" width="486" height="134" /&gt;][1]&lt;figcaption id="caption-attachment-643" class="wp-caption-text"&gt;Software Updater Checking for Updates&lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;This would check for updates and give you an option to install the updates right away. But there’s no fun in that. And I on the other hand will use more traditional way to update my OS…&lt;/p&gt;</description></item><item><title>Ubuntu: The Stage is Set</title><link>https://new.vineetkumar.me/2015/01/ubuntu-the-stage-is-set/</link><pubDate>Fri, 23 Jan 2015 18:59:46 +0000</pubDate><guid>https://new.vineetkumar.me/2015/01/ubuntu-the-stage-is-set/</guid><description>&lt;p&gt;So we have installed &lt;a href="https://new.vineetkumar.me/2015/01/ubuntu-beginning-to-walk-on-unchartered-territory/" target="_blank" rel="noopener noreferrer"&gt;Ubuntu in a Virtual Environment&lt;/a&gt; and know that some (or a lot) of the things in Ubuntu differs from windows, like filesystem and how removable drive works. In this article I will be starting from a fresh install of Ubuntu and try to get familiar with the User Interface. In the upcoming post I will proceed to set it up with softwares and settings.&lt;br&gt;
I will literally be writing this article “while” I am using my PC, so this is not just a guide but more of a walk-through. Hence, please excuse my remarks which I sometimes make to emphasize my excitement (or disappointment) when I discover something.&lt;br&gt;
Here’s what a freshly booted Ubuntu looks like:&lt;figure style="width: 1440px" class="wp-caption alignnone"&gt;
&lt;img loading="lazy" decoding="async" src="https://new.vineetkumar.me/wp-content/uploads/2015/01/001-Freshly-booted-Ubuntu-Lavels1.jpg" alt="Freshly booted Ubuntu" width="1440" height="805" /&gt; &lt;figcaption class="wp-caption-text"&gt;Freshly booted Ubuntu&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;p&gt;We can notice a few things now:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The &lt;strong&gt;taskbar&lt;/strong&gt; is above the screen. It have the text “Ubuntu Desktop” written in right side of the taskbar. It also includes some icons on the top right corner including a clock and an icon on extreme right which looks like “Settings” icon.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Unity bar&lt;/strong&gt; which runs across the left side of the desktop, containing some icons of softwares like Firefox, Libre Office and System Settings. You will also notice an icon of Recycle bin down below.&lt;/li&gt;
&lt;li&gt;Rest of the screen is just &lt;strong&gt;plain desktop&lt;/strong&gt; with no other stuff than default Orange wallpaper.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now that we know about these three things, we would like to know how does these differ in functionality. Nice! Now we are getting into the good stuff …&lt;/p&gt;</description></item><item><title>Stuff I do in Windows that needs an alternative in Linux</title><link>https://new.vineetkumar.me/2015/01/stuff-i-do-in-windows-that-needs-an-alternative-in-linux/</link><pubDate>Tue, 20 Jan 2015 06:51:30 +0000</pubDate><guid>https://new.vineetkumar.me/2015/01/stuff-i-do-in-windows-that-needs-an-alternative-in-linux/</guid><description>&lt;p&gt;In my &lt;a href="https://new.vineetkumar.me/2015/01/ubuntu-beginning-to-walk-on-unchartered-territory" target="_blank" rel="noopener noreferrer"&gt;previous post&lt;/a&gt; I said I would be looking an alternative in Linux for everything I do in Windows. Here’s an initial list of the applications that I am finding an alternative to. I would be updating this post fairly regularly, adding more things to the list and their alternatives, until I am confident that I can plan to make Ubuntu as my primary OS.&lt;br&gt;
 &lt;/p&gt;</description></item><item><title>Ubuntu: Beginning my Walk on Uncharted Territory</title><link>https://new.vineetkumar.me/2015/01/ubuntu-beginning-to-walk-on-uncharted-territory/</link><pubDate>Fri, 16 Jan 2015 18:39:56 +0000</pubDate><guid>https://new.vineetkumar.me/2015/01/ubuntu-beginning-to-walk-on-uncharted-territory/</guid><description>&lt;p&gt;I had a long awaited dream of migrating from Windows to Linux. I was exposed to Windows since more than a decade and made aware of Linux a lot later. But when I did, sheer glimpse of Linux use to make me feel all geeky inside, but I never really gave Linux a chance. I was too engrossed by the ease of use of Windows and just-reinstall-windows as the default option to get out of any misery I face in Windows. Till the time I get to know the real power of Linux in the form of Ubuntu and the general open source nature of it it was very late. I had become so dependent on Windows for my daily tasks that I started to avoid Nix for all the reasons.&lt;/p&gt;</description></item></channel></rss>