Menu
TAG

Uncategorized

Fedora 30 Wallpapers Available To Download
Fedora 2 min read

Fedora 30 Wallpapers Available To Download

Fedora 30 is scheduled to be released on 30, July this year. The new Fedora 30 wallpapers have been made available to download. For each new release, wallpapers are selected by the community through voting. A total number of 56 wallpapers were submitted out of which 16 have been voted in by 128 contributors. Enjoy the new wallpapers before you get them in the actual release –  

FedoranewsUncategorized
Host Website On Our Own Server - Web Server Setup Series
Setup web server 4 min read

Host Website On Our Own Server - Web Server Setup Series

Today we’ll continue our web server setup series. In this series, we’ve already installed and setup our web server, configured & secured cPanel and point domain name to the server. At any time if you’ve trouble setting something up something, let me know in the comment section below. In this article, we’ll go about hosting a website on our server. Let’s do it. Setting up a website is as simple as uploading a single file on our server. We can write a simple HTML page and it’ll work. But t

Setup web serverUncategorizedtutorial
10 Best Flat Icon Gnome Themes
Reviews 3 min read

10 Best Flat Icon Gnome Themes

Every Linux distribution comes with a couple of nice and clean icons themes. Many users just stick to only those themes and never try other awesome themes they’ve in the bag. In this article, I’m going to list out 10 best Flat design icon Gnome themes that you’re going to love. So let’s start. Best Linux Icon Themes 1. Vimix Icon Theme If you’re also a fan of the new Sleek design that is popular on the web, you will like Vimix. Its sleek design makes it stand out to number on

ReviewsUncategorizedreview
Import & Export Databases In MySQL Ubuntu CLI - Part 5
MySQL series 2 min read

Import & Export Databases In MySQL Ubuntu CLI - Part 5

In this article of MySQL series, we’ll learn to import & export DBs. When you work with SQL, you will often be taking a backup of your databases. You will also be importing previously taken backups. All of this is an integral part of learning MySQL. Exporting a Database We first need a database that can be exported. You can see in the image below that I have a database named theitstuff. We will be exporting it here. To export the database we need to open our command line and ty

MySQL seriesUncategorizedhow-to
Install Dropbox To Share Files Between Linux And Windows
Linux Tutorials 3 min read

Install Dropbox To Share Files Between Linux And Windows

Today we will see how to install Dropbox to be able to use it without any type of problem in dual boot systems. There are many users who have a dual boot with windows and one of the many existing Linux distros. To be able to access Dropbox content in both Linux and windows without having to duplicate the content, we have to install Dropbox in the following way: STEP 1. Mount the NTFS or FAT partition properly so that Dropbox works on both Windows and Linux 1. The location of the D

Linux TutorialsUncategorizedhow-to
How To Automatically Change GNOME Background In Intervals Using BASH
Linux Tutorials 4 min read

How To Automatically Change GNOME Background In Intervals Using BASH

Have you ever wanted to have that automatic background switching the feature on your GNOME Linux distro? I missed that feature after I switched from Cinnamon to GNOME 🙁 Searched for apps in the software center and alas there is none that I could find. However, today I’m happy to let you know that there is a workaround to this missing feature through the use of BASH scripting language. Requirement Not much, all you need is a text editor to edit some lines of code on the script fi

Linux TutorialsUncategorizedhow-to
FocusWriter An App For Distraction-Free Writing
Reviews 5 min read

FocusWriter An App For Distraction-Free Writing

FocusWriter is a distraction-free word processor program that hides all the interfaces: menu bar, toolbar, status bar, etc and starts in fullscreen mode to enable the user fully immersed in their work. The program’s primary feature is to focus only on user’s writing productivity and not provide another full-fledged word processor like LibreOffice Writer or Calligra Word Processor. Installing FocusWriter Launch Ubuntu Software and type in “FocusWriter”. Click the application name to

ReviewsUncategorizedreview
Inserting Data Into Tables - MySQL Series Part 4
MySQL series 2 min read

Inserting Data Into Tables - MySQL Series Part 4

Data insertion is very important in understanding MySQL databases. If the right data is not inserted in the right columns, we may get a lot of errors. Let us quickly create a small employee table by running the following command. create table employee(name varchar(20), city varchar(10), salary int); Once we are done with creating the table we can start inserting some data into it. Follow the complete MySQL Series here. Inserting Single Record To insert one record in

MySQL seriesUncategorizedtutorial
New Tabbed Layout Coming On LibreOffice v6.2
news 1 min read

New Tabbed Layout Coming On LibreOffice v6.2

LibreOffice, the most popular open-source office suite program is set to feature a new look and feel in the coming v6.2 release, called the tabbed layout. As of now, the current stable version is in v6.1.4 and its default look currently mimics the traditional menu-based GUI and some toolbars. One can download the latest testing version from its official website. LibreOffice features commonly used applications a user can expect on any office suite program such as a word processor prog

newsUncategorized#Import 2024-11-04 15:59
Ways To Contribute Back To Linux Community
Reviews 5 min read

Ways To Contribute Back To Linux Community

So you’ve been a part of the huge collaborative Linux community and have learned or benefited a lot from them. And now you hear about contributing back some love to the community through various means: developing software, maintaining, documenting, sharing, etc Maybe you are stuck figuring out at which to choose right now. Or have no idea at all where to start. Even I found myself lost when I wanted to give something back to the Linux community not knowing how or where to start. If you f

ReviewsUncategorizedhow-to
3 Most Popular NoSQL Databases To Start In Cloud
Reviews 6 min read

3 Most Popular NoSQL Databases To Start In Cloud

The path of the Cloud generally starts in migrations to infrastructure platforms as a Service (IaaS); where we make a virtual mirror of our physical structure on which we deploy our applications. The next step comes when we recognize that the true value and productivity of the Cloud is in the Platform as a Service (PaaS), and we face new challenges in the form of software transformation and reconstruction in the search for the optimal cost/benefit ratio. And one of the initial decis

ReviewsUncategorizedreview
Creating and Modifying Tables - MySQL Series Part 3
MySQL series 4 min read

Creating and Modifying Tables - MySQL Series Part 3

Today we’ll continue our MySQL series and learn how to create and modify tables. MySQL tables are the containers that actually hold data. A table with multiple columns and records can be seen as an excel sheet. In this article, we will try to create some tables that can hold our data and also modify them. So fire up your mysql command line clients and Let’s learn.   Creating Tables The first thing we will do is create a table. To do this we need to select the database we w

MySQL seriesUncategorizedtutorial