Menu
Mohd Sohail
AUTHOR

Mohd Sohail

965
Posts
Shared hosting Vs. Dedicated hosting
Web hosting 4 min read

Shared hosting Vs. Dedicated hosting

Almost every business is trying to come online by having its own identity on a website. And getting a website up and running is not a worry anymore with a huge list of web hosting services. Right? Well, let’s talk about it in detail. * Ask questions in the comment section * How websites are hosted? * Create Virtual Computers or Shared Servers * What’s Shared Hosting * Pros of shared hosting * Cons of shared hosting * Dedicated Hosting * Pros of dedicated hosting * Co

Web hostingreview#Import 2024-11-04 15:59
Linux Mint 20 Codenamed Ulyana & More
Linux Mint 2 min read

Linux Mint 20 Codenamed Ulyana & More

The news came on the last day of the month from Linux Mint. The new version of Linux Mint which is Linux Mint 20 will be called Ulyana. What is Ulyana? Linux Mint release post has not released anything other than the name. But a simple google search shows the word “Ulyana” comes from the Russian origin and it means Youthful. Linux Mint 20 “Ulyana” Base Linux Mint 20 “Ulyana” will be based on the upcoming Ubuntu release, 20.04 “Focal Fossa”. Focal Fossa is scheduled to be

Linux MintnewsUncategorized
Obarun - An Arch Based Linux Distro Without Systemd
Arch Linux 4 min read

Obarun - An Arch Based Linux Distro Without Systemd

Today’s Linux distribution review is not just for distro hoppers who love to try something new, but it’s for people who have a specific purpose, such as a Linux system without systemd. Systemd, as we all know, has always been criticized by a lot of developers and Linux users. What’s special about Obarun? Obarun is packed with enough utilities to install & start a vanilla Arch Linux without any trouble. I have written an article on how to install Arch step by step, and it is a long

Arch LinuxUncategorizedreview
Manage Linux Users & Linux Groups
Linux Tutorials 9 min read

Manage Linux Users & Linux Groups

Linux, as we all know, is a multi-user operating system. If you have multiple users on a desktop or a server, you can easily manage multiple Linux user accounts and provide permissions to each account. In this article, you will learn – * How to manage users and groups on a Linux system * Create a new user account in Linux * Add user to a group in Linux * Create user group in Linux * Remove user group in Linux * Manage Linux Users * Linux User Groups * Create a new u

Linux TutorialsUncategorizedhow-to
Microsoft Releases Windows Defender ATP Preview For Linux
news 1 min read

Microsoft Releases Windows Defender ATP Preview For Linux

As we all know how much Microsoft has started loving Linux. 🙂 For some, it’s some sort of plan to take over Linux Kernel and build a Microsoft operating system based on Linux. Previously we have seen that Microsoft made many of its popular projects open source including Microsoft web browser Edge, Calculator, vscode, terminal and many more. For the complete list, you can visit opensource.microsoft.com. Now the company that powers most of the Desktop computers has released the publi

newsUncategorized#Import 2024-11-04 15:59
How To Install Firejail In Linux
firejail 4 min read

How To Install Firejail In Linux

One of the best benefits of any open source project is that it never runs out of ideas. Independent developers can contribute to the project’s development and fix bugs and vulnerabilities as quickly as possible. Every Linux distribution has a large community working on the development and taking care of the security and stability of the system. Even then, if you run an untrusted application, it may risk your data and overall system security. There are different approaches to solving this

firejailUncategorizedhow-to
How to Install Eclipse on Ubuntu
Linux Tutorials 5 min read

How to Install Eclipse on Ubuntu

Eclipse is an open-source integrated development environment (IDE) widely used for Java development. It is one of the most popular IDEs for Java developers due to its rich features and plugins. Eclipse is also used to develop programming languages like Python, C++, and PHP. In this article, we will get familiar with Eclipse features and how to install Eclipse on Ubuntu. * Eclipse Features * User Interface * Code Editor * Debugging * Top 7 Linux Window Managers *

Linux TutorialsReviewsUncategorized
How to Install AppImage on Ubuntu: A Step-by-Step Guide
Linux Tutorials 6 min read

How to Install AppImage on Ubuntu: A Step-by-Step Guide

The majority of Linux users have no issues installing or removing applications. Every distro you use will have a package manager that can handle anything. But as the Linux community grows, developers try to keep things even more straightforward and stable for end-users and developers. * One file equals One app * How to install appimage on Ubuntu? * Integrate appimage with system * How To Migrate WordPress Manually To New Host * Uninstall appimage from Ubuntu * Update appima

Linux TutorialsUncategorizedhow-to
Copy files & directories in Linux
Linux Tutorials 6 min read

Copy files & directories in Linux

In Linux, we copy files as we do in any other operating system available today. We open up a file manager, select a file to copy, and paste it anywhere we want. But what if you want or need to copy files or directories in Linux through the command line or apply some additional filters before copying? Well, that’s easy. Copying files or directories locally If you need to copy files or directories locally from one directory to another, there is a simple command for that – cp. c

Linux TutorialsUncategorizedhow-to
Zorin OS to release Zorin Grid for centralized management of Linux desktops
Uncategorized 2 min read

Zorin OS to release Zorin Grid for centralized management of Linux desktops

Zorin OS 15 lite came out in December last year with a great number of updates. In each release, the team is focusing on making it way easier to hop on to it from Windows, and I congratulate the team that it has done it so well. Zorin OS is a great choice for Windows users. One could get everything on Windows, from day-to-day use software to playing games through wine. It has got all of that. Now Zorin OS is also focusing on replacing Windows systems with Zorin OS in Schools, busine

Uncategorizedzorin gridZorin OS
Public, Private, Protected Access Modifiers and No Modifiers in Java
Java 12 min read

Public, Private, Protected Access Modifiers and No Modifiers in Java

Levels of AccessPrivateNo ModifierProtectedPublicSame ClassYesYesYesYesSame Package Sub ClassNo YesYesYesSame Package Non-Sub ClassNoYesYesYesDifferent Package Sub ClassNoNoYesYesDiffernt Package Non-Sub ClassNoNoNoYes Note – In this table, Sub Class means a child-parent relationship is involved between the two classes. If you do not understand the above table, do not worry because you will understand it after going through the complete article. Why I am writing this in-depth

JavaUncategorizedtutorial
Interfaces in Java
Java 3 min read

Interfaces in Java

We have already learned about the class. A class is a way of defining how an object would look and behave. A class contains variables and methods. Variables define how an object looks and feels. Methods inside a class define how an object behaves. An interface is a special type of class. We need to understand what makes an interface special. An interface is a way of defining that the object made using this interface will have to have the methods with its implementation declared in the in

JavaUncategorizedtutorial