Skip to main content

A beginner to Fedora OS

Source:fedoramagazine.org/announcing-fedora-30
 
Hey guys. Let me be very straight πŸ˜€. I used Ubuntu 16.04 for nearly 3 years and before that I had Windows 10 on my system. But Ubuntu's programming environment enticed meπŸ˜‹. In the beginning, I had to face lots of challenges and sharing here is beyond the scope of this article. But thanks to its large community and groups which got me to solve the problems easily.
 
Just a few days before, my device showed problems like, shutting down all of a sudden even during the power supply, freezing suddenly amidst a session. This happened quite frequently, sometimes thrice at a time and all I had to do was a force shutdown. Gosh! I can't tell you how that felt experiencing the same problem again and again. It was a total headache.πŸ˜“

That is what urged me to install Fedora 30 LTS, for having an experience of working in a new environment. So I thought of writing an article including the necessary things to do for getting used to Fedora. Thanks to Ubuntu from which I learned a lot of things which is helping me get used to Fedora in many ways (even though these two OS differ a lot).

The first thing that I wanted to do was customizing my desktop. I found Fedora OS different in many ways from Ubuntu. For making myself used to Fedora, I first installed the GNOME Tweaks tool from the Software Center.

#GNOME Tweaks
You might experience some difficulty with the mouse clicks, so first let's do something. For that, open GNOME Tweaks > click on Keyboard & Mouse. From here make changes as per your necessity.

The second thing you may want to do is, enabling the Maximize and Minimize buttons. So open the GNOME Tweaks > click on Window Titlebars > Enable Maximize and Minimize button.

#Dash to dock
In Fedora, you'll find Dash in the overview which might be quite tedious when you have to work with many programs. For this, you'll need Dash to dock extension which you can find in the Software center. Install it and open it to customize your desktop and make Fedora friendlier to use.

#Launching a Terminal
Basically there is no shortcut key to launch Terminal in Fedora. But guess what, we can add a shortcut key. Open Settings > Scroll down to Devices > Select Keyboard > Scroll down and click + . Give a Name to the shortcut, I named it as Launch New Terminal. In the command include
  gnome-terminal &
Then choose a shortcut as you wish to, for me I prefer, Ctrl + Alt + T. This has become more handy to me.


Comments

Popular posts from this blog

Image Compression and Color Quantization using K-Means Clustering

In this post, you'll able to compress an image of higher size relatively to a smaller size. Here size I mean the image's memory consumption, not the aspect ratio (though it is also somewhat related to the size). Before we begin, let's be familiar with what Image Compression, Color Quantization and K-Means Clustering is. Basically  K-Means Clustering  is used to find the central value (centroid) for k  clusters of data. Then each data point is assigned to the cluster whose center is nearest to k . Then, a new centroid is calculated for each of the k  clusters based upon the data points that are assigned in that cluster. In our case, the data points will be Image pixels. Assuming that you know what pixels are, these pixels actually comprises of 3 channels, Red, Green and Blue . Each of these channels' have intensity ranging from 0 to 255, i.e., altogether 256. So as a whole, total number of colors in each pixel is, 256 x 256 x 256.  Each pixel(color) has 2^...

Simple Face Recognition Project using OpenCV python Deep Learning

Okay, not from completely scratch though, in this Article you are going to learn to build a simple face detection and recognition console based application using Opencv python and Deeplearning Before Starting: If you don't have enough time to read the whole article or you are too lazy to read articles  Scroll all the way down and there is source code at last heading Resources. If you really love to learn step by step, there are lots of comments inside the code. I highly recommand you to read and go through it And at last, Don't panic :D Lets start: Installing Libraries: dlib (by davis king) Face_recognition (by adam geitgey ) (wraps around dlib’s facial recognition functionality making it to work easily with dlib) we also need to install imutils. Actually imutils is used to make basic image processing functions such as translation, rotation, resizing, skeletonization, and displaying Matplotlib images easier with OpenCV but we will be using it to maintain di...

Region Based Convolutional Neural Networks: How you can achieve your own object detector with transfer learning.

In this article we will try to cover the R-CNN object detector implementation and how transfer learning could h elp in to classify object. We are going to build a raccoon detector using R-CNN by classifying a raccoon and no raccoon from the raccoon dataset by dat train using transfer learning with fine tuning approach (another approach is feature extraction). The reason I've choose the raccoon dataset is that it has a nice annotation files for every faces of raccoon in the images and many more research has gone through this dataset for object detection. Before Starting: This article is going to be a bit long so I highly recommend you to s3et yourself free to read it and actually implement it. In this tutorial we will be using selective search algorithm to find ROIs (Region of Interest), boundaries and also be using transfer learning. To read and learn these I recommend the series of objection detection blog and theany line you didn’t get tutorials from pyimagesearch by ...