<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux &#8211; TECH POINT MAGAZINE</title>
	<atom:link href="https://techpointmag.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://techpointmag.com</link>
	<description>-Beyond Technology-</description>
	<lastBuildDate>Wed, 19 Apr 2023 18:55:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>

<image>
	<url>https://techpointmag.com/wp-content/uploads/2019/06/cropped-tech-point-logo@2x-3-32x32.png</url>
	<title>Linux &#8211; TECH POINT MAGAZINE</title>
	<link>https://techpointmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">141627558</site>	<item>
		<title>Here are the best Top 5 basic Linux Commands you should know</title>
		<link>https://techpointmag.com/here-are-the-best-top-5-basic-linux-commands/</link>
		
		<dc:creator><![CDATA[Staff Editor]]></dc:creator>
		<pubDate>Wed, 19 Apr 2023 18:55:20 +0000</pubDate>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Picks]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Basic Linux Commands]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<guid isPermaLink="false">https://techpointmag.com/?p=16478</guid>

					<description><![CDATA[Are you new to Linux and wondering where to start? It’s important to keep in check with at least the best top 5 basic Linux commands to get you started. Whether you are a beginner or used to desktop Linux distributions like Ubuntu and Linux Mint that offer a Windows-like experience, the top 5 Linux [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Are you new to Linux and wondering where to start? It’s important to keep in check with at least the best top 5 basic Linux commands to get you started. Whether you are a beginner or used to <a href="https://techpointmag.com/the-best-5-beginner-friendly-linux-distros/" data-type="post" data-id="12367">desktop Linux distributions</a> like Ubuntu and Linux Mint that offer a Windows-like experience, the top 5 <a href="https://techpointmag.com/how-to-install-powershell-on-linux/" data-type="post" data-id="16328">Linux </a>commands listed in this article can help you do most tasks on the distribution.</p>



<p>The commands discussed in this article are essential for navigating and managing files on your Linux system. By practicing these top 5 basic Linux commands, you will be able to execute regular tasks like a professional user.</p>



<p>Within the wide array of beginner Linux commands, <code>ls</code>, <code>cd</code>, <code>pwd</code>,<code>mkdir</code>, and <code>rm</code> are the top 5 Linux commands you should know as a beginner or intermediate user to carry out terminal operations on your Linux powered system as explained below.</p>



<h2 class="wp-block-heading">The Top 5 basic Linux commands you need</h2>



<h3 class="wp-block-heading">ls &#8211; List</h3>



<p>The <strong>ls</strong> command list the files and directories in your current working directory.  The current working directory is your present cursor position in the file system. By default, it is set to your home directory <code>~</code>.</p>



<pre class="wp-block-code"><code>$ ls</code></pre>



<p>When you enter <strong>ls</strong> in the terminal, a list of all available files and directories display in alphabetical order. The command is essential for navigating and finding files easily, and you can also extend it by showing file sizes as described below.</p>



<p>Long list files with sizes in bytes.</p>



<pre class="wp-block-code"><code>$ ls -l</code></pre>



<p>Long list files with sizes in Megabytes</p>



<pre class="wp-block-code"><code>$ ls -lh</code></pre>



<p>For more information about the <code>ls</code> command, simply read it&#8217;s manual by running the following command.</p>



<pre class="wp-block-code"><code>$ man ls</code></pre>



<h3 class="wp-block-heading">cd &#8211; Change Directory</h3>



<p>The <strong>cd</strong> command is used to change your current working directory by switching to a subdirectory, or to your home directory when run without any argument. It helps you switch to any directory on your system. For example, to switch to your Downloads folder, simply run:</p>



<pre class="wp-block-code"><code>$ cd Downloads</code></pre>



<p>Please note that Linux directories and files are case-sensitive, so, <code>Downloads</code> and <code>downloads</code> are interpreted as two separate directories. For clarity, run the following command to switch to the <code>Documents</code> directory if it&#8217;s available in your home directory.</p>



<pre class="wp-block-code"><code>$ cd Documents</code></pre>



<p>So, the <code>cd</code> command is important for moving around in the file system and accessing different directories on your Linux system. When you run the command directly as below, it will switch your position to the home directory.</p>



<pre class="wp-block-code"><code>$ cd</code></pre>



<p>For more information about the <code>cd</code> command, view its manual as below:</p>



<pre class="wp-block-code"><code>$ man cd</code></pre>



<h3 class="wp-block-heading">pwd &#8211; Print working directory</h3>



<p><code>pwd</code> displays your current working directory path. It&#8217;s a simple yet very essential command that helps you keep track of where you are in the file system. For examole, when you use the <code>cd</code> command, you can switch to different directories. But to know the current path from your main directory, the <code>pwd</code> helps you print the position as below.</p>



<pre class="wp-block-code"><code>$ pwd</code></pre>



<p>Output:</p>



<pre class="wp-block-code"><code>/home/user/myfiles</code></pre>



<p>The <code>pwd</code> command supports several arguments, to find out more on the command, view its manual as below.</p>



<pre class="wp-block-code"><code>$ man pwd</code></pre>



<h3 class="wp-block-heading">mkdir &#8211; Make directory</h3>



<p>If you want to create a new directory or a new subdirectory within a main directory, the <code>mkdir</code> command helps you achieve that. You can either create a directory path away from your current position, or simply add it to your current working directory as below.</p>



<p>Syntax</p>



<pre class="wp-block-code"><code>$ mkdir &#91;option] directory-name</code></pre>



<p>Example</p>



<pre class="wp-block-code"><code>$ mkdir -p myfiles</code></pre>



<p>To create a directory using a path, run the following command as long as your account has write privileges to the destination directory.</p>



<pre class="wp-block-code"><code>$ mkdir ~/Documents/myfiles/hello-directory</code></pre>



<p><code>mkdir</code> is a very important command you can use to organizing files and keeping your file system tidy. For more about the <code>mkdir</code> command, view additional info as below.</p>



<pre class="wp-block-code"><code>$ info mkdir</code></pre>



<h2 class="wp-block-heading">rm &#8211; Remove</h2>



<p><code>rm</code> just like the name sounds gets rid of any files and directories you no longer need. Unlike desktop deleting options, when you <a href="https://techpointmag.com/how-to-delete-files-on-linux-using-the-rm-command/" data-type="post" data-id="16238">remove files using the rm command</a>, they are permanently deleted, and you can use the command as below.</p>



<p>Syntax</p>



<pre class="wp-block-code"><code>$ rm &lt;option> file</code></pre>



<p>Remove a single file. For example <code>hello.txt</code>.</p>



<pre class="wp-block-code"><code>$ rm hello.txt</code></pre>



<p>To remove a directory, use the command recursively with the <code>-r</code> argument as below.</p>



<pre class="wp-block-code"><code>$ rm -r myfiles</code></pre>



<p>To delete everything within your current directory, run the command as below.</p>



<pre class="wp-block-code"><code>$ rm -r *</code></pre>



<p>For more information about the rm command, please view its manual with the following command.</p>



<pre class="wp-block-code"><code>$ man rm</code></pre>



<h2 class="wp-block-heading">Conclusion</h2>



<p>You have learned some of the best top 5 Linux commands every beginner or intermediate user should know. You don’t need to be an expert or developer to use the <a href="https://techpointmag.com/install-a-lemp-stack-on-centos-alma-linux-rocky/" data-type="post" data-id="14961">Linux</a> operating system, you simply need to have commands ready at your finger tips to perform most operations.</p>



<p>To extend your ability, you can use the best Linux commands for system management that entail more commands to automate and execute tasks on your system.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16478</post-id>	</item>
		<item>
		<title>How to Install and Run Android Apps on Linux without an Emulator</title>
		<link>https://techpointmag.com/how-to-install-and-run-android-apps-on-linux/</link>
		
		<dc:creator><![CDATA[Humphrey Mpairwe]]></dc:creator>
		<pubDate>Sat, 18 Sep 2021 20:46:46 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Android Apps on Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[waydroid]]></category>
		<guid isPermaLink="false">https://techpointmag.com/?p=14883</guid>

					<description><![CDATA[Android is the most popular mobile operating system in the world and this can be attributed to its open-source status. Over the years, mobile applications have become key and running them on a computer has become a choice every user would prefer to make. Well, like any other desktop computer operating system, you can run [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Android is the most popular mobile operating system in the world and this can be attributed to its open-source status. Over the years, mobile applications have become key and running them on a computer has become a choice every user would prefer to make.</p>



<p>Well, like any other desktop computer operating system, you can run Android Apps on Linux through multiple methods with the easiest of them all being the use of an emulator. But since Linux and Android share the same DNA as open-source products, it’s now possible to install and run Android Apps on Linux without an emulator.</p>



<p>This is possible through a tool dubbed Waydroid that allows users to run Android Apps on Linux with better performance and optimizations like they would on a Smartphone. The tool runs as a container and gives you a feeling of android apps natively running on your Linux Machine.</p>



<p>However, since Linux is not like <a href="https://techpointmag.com/full-list-of-windows-keyboard-shortcuts/" data-type="post" data-id="10500">Windows 11</a> where you simply jump-start your journey to the store, Waydroid requires preset dependencies and system updates in order to run on Linux. To do this, you simply have to enter the tool’s secure packages and get started to install and run Android Apps on Linux.</p>



<h2 class="wp-block-heading">Install and Run Android Apps on Linux with Waydroid</h2>



<p>First, you need access to your Linux computer’s Terminal, accessible via Ctrl, Alt, T on your keyboard, or through the applications menu depending on your Linux distro. Also, you need to login as a local user and not a guest to conveniently install Waydroid through the following commands.</p>



<p>Depending on your Linux Distribution, Install Curl (If not pre-installed already)</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo apt install curl</pre>



<p>Once Installed, describe your Linux system’s distro name. For instance, for Ubuntu, use focal, Debian use bullseye, Linux Mint use Tessa and so on. If not declared, you may accounter “Permission denied” prompts during the Waydroid installation process.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo export DISTRO=”focal”</pre>



<p>Once executed, you now need to download the Waydroid GPG Key – a secure file used to decrypt a file generated using the GNU privacy Guard (GnuPG) program. Using the curl command, you must download it to your computer and move it to the keyrings directory for easy access.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo curl https://repo.waydro.id/waydroid.gpg &gt; /usr/share/keyrings/waydroid.gpg</pre>



<p>The above command downloads the waydroid gpg file and stores it (using &gt;) in the <em>/usr/share/keyrings </em>directory. You must run the command with root rights in order to write to the directory. To switch to root, simply type sudo su, then enter your computer password.</p>



<p>Now, with the waydroid secure key installed, you need to add the waydroid repository to your system sources list. To do this, you can echo the key location and repository link for entry in your sources list with the command.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">echo "deb [signed-by=/usr/share/keyrings/waydroid.gpg] https://repo.waydro.id/ $DISTRO main" &gt; /etc/apt/sources.list.d/waydroid.list</pre>



<p>It’s time to update your system dependencies for Linux to know where to download waydroid from. To do this, simply run the apt update command in your Linux Terminal.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo apt update</pre>



<p>If convenient, you can also upgrade all dependencies with apt upgrade.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo apt upgrade</pre>



<p>Finally, it’s time to Install waydroid. Your Linux machine knows where to locate waydroid on your dependencies list and now, you need to download the application to your computer. To do this, you can use the command apt install waydroid</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo apt install waydroid</pre>



<p>Once installed, you then need to download an Android Image for Waydroid to use, with an estimated size of about 600MB, you can download the image using the command waydroid init to initiate an Android Image from the application’s sources.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo waydroid init</pre>



<p><strong>DONE:</strong> All you have to do now is start the waydroid container, and also start a session to get started with installing your first Android App on Linux with the commands below.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ sudo systemctl start waydroid-container &amp;&amp; waydroid session start</pre>



<p>Finally, use the show-full-ui command to open up a waydroid window on your Linux screen to start running Android Apps.</p>



<pre class="wp-block-preformatted has-white-color has-vivid-cyan-blue-background-color has-text-color has-background">$ Waydroid show-full-ui</pre>



<p>Enjoy Installing and running Android Apps on Linux than ever before.</p>



<p class="has-white-color has-black-background-color has-text-color has-background"><strong>Editor&#8217;s Note: </strong>For now, Waydroid runs on Debian-based Linux distros only, with time, other Linux releases may be supported with information from the developers team.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">14883</post-id>	</item>
		<item>
		<title>Here are the best 5 Beginner Friendly Linux distros you can install on your computer</title>
		<link>https://techpointmag.com/the-best-5-beginner-friendly-linux-distros/</link>
		
		<dc:creator><![CDATA[Makanga Silver Evans]]></dc:creator>
		<pubDate>Sun, 08 Nov 2020 20:20:52 +0000</pubDate>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://techpointmag.com/?p=12367</guid>

					<description><![CDATA[Beginner friendly Linux distros (Distributions) are often the starting point for each and everyone that would love to taste an all-purpose operating system aside giving Windows a break. With Microsoft windows as the most popular operating system in the world, Linux is one to watch. Across the world, sophisticated servers and computers all run Linux. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Beginner friendly Linux distros (Distributions) are often the starting point for each and everyone that would love to taste an all-purpose operating system aside giving Windows a break. With Microsoft windows as the most popular operating system in the world, Linux is one to watch.</p>



<p>Across the world, sophisticated servers and computers all run Linux. Currently, several distros exist in the world, and commonly, Linux powers <a href="https://techpointmag.com/how-to-connect-and-signup-for-starlink-internet/" class="rank-math-link">Rocket launches</a>, self-driving cars, Smartphones, Airplanes, data centers, among other crucial use cases around the globe.</p>



<p>Most purists rarely refer to Linux as an operating system, and this is attributed to the fact that Linux is just a kernel used to bridge software to hardware with open source standards for everyone to use. A complete Linux Distro is composed of the Linux Kernel, GNU tools, a Package Manager, and other 3rd party software.</p>



<p>With less of the Operating system family&#8217;s beginnings by Linus Torvalds in 1994, and its open-source distribution standards. You can install Linux on your computer with ease, and if you&#8217;re migrating from a graphical OS like <a href="https://techpointmag.com/full-list-of-windows-keyboard-shortcuts/" class="rank-math-link">Windows</a> or <a href="https://techpointmag.com/macbooks-that-can-run-macos-big-sur/" class="rank-math-link">macOS</a>, then, you will definitely need a beginner-friendly distro to start with.</p>



<p>Popularly, most distros are either based on Debian or Redhat, with others running custom package managers like Pacman for Arch Linux based distros. However, Debian rocks as the most used upstream source with the best beginner friendly Linux distros.</p>



<p>By creation, most distributions conform to a wide pool of user preference, Some are built for maximum security, programming, high-performance apps, and mathematical scientific projects, while others are simply built for a swift graphical user interface similar to that of macOS or Windows.</p>



<p>Well, whatever your passion and intention is for using Linux, a stable yet fast distro is available for you to try out, and here are the best 5 beginner friendly Linux distros you can consider.</p>



<h2 class="wp-block-heading">Beginner Friendly Linux Distros you can Install on your computer </h2>



<h2 class="wp-block-heading">Elementary OS</h2>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="750" height="422" src="https://techpointmag.com/wp-content/uploads/2020/11/elementary-os-on-a-laptop.jpg" alt="elementary OS" class="wp-image-12425" srcset="https://techpointmag.com/wp-content/uploads/2020/11/elementary-os-on-a-laptop.jpg 750w, https://techpointmag.com/wp-content/uploads/2020/11/elementary-os-on-a-laptop-300x169.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" /></figure>



<p>Elementary OS is one of the best most beautiful desktop operating systems of all time. If you&#8217;re used to a macOS graphical interface, then Elementary is a fast, less bloated features and crisp interface OS you can consider running on your computer</p>



<p>Elementary ships with a sleek Pantheon desktop environment evidenced with a bottom center applications launch bar. OS menus are customisable and can be altered depending on your user preferences through an easy to use procedure.</p>



<p>By Default, <a class="rank-math-link" href="https://elementary.io/" target="_blank" rel="noopener">elementary OS</a> ships with a bunch of most used applications. To install and add new applications, an App center is available on the system for download of new Apps and software. </p>



<p>However, in case you&#8217;re a fan of CLI (Command-line Interface), applications can be installed using dpkg in terminal with main support for .deb (Debian) packages.</p>



<h2 class="wp-block-heading">Ubuntu OS </h2>



<figure class="wp-block-image size-large"><img decoding="async" width="750" height="450" src="https://techpointmag.com/wp-content/uploads/2020/11/Ubuntu-OS.jpg" alt="ubuntu linux" class="wp-image-12424" srcset="https://techpointmag.com/wp-content/uploads/2020/11/Ubuntu-OS.jpg 750w, https://techpointmag.com/wp-content/uploads/2020/11/Ubuntu-OS-300x180.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" /></figure>



<p>Ubuntu is a Linux distro based on Debian and serves as the most popular desktop variant. The operating system is ranked as the most beginner-friendly distro since it ships a simple Gnome user interface, and user-specific Apps upon installation.</p>



<p>Currently, the Ubuntu 20.04LTS (Long term support) is the most recent version of the operating system you can easily download and install on your computer.</p>



<p>Given the fact that Ubuntu is based on Debian, you can install a wide range of applications on your computer with an upper advantage of running Windows applications the same you would on Chrome OS.</p>



<p>Ubuntu is easy to install on your computer and can be installed alongside Windows OS or <a href="https://techpointmag.com/how-to-turn-on-firewall-on-mac-with-best-settings/" class="rank-math-link">macOS</a>. On installation, it ships with starter applications like Firefox, Libre office suite, Thunderbird email client, Skype, and Rhythmbox media player.</p>



<p>To <a href="https://ubuntu.com/desktop" class="rank-math-link" target="_blank" rel="noopener">download Ubuntu</a>, simply visit the distro&#8217;s main download page and choose your preferred flavor that ships with GNOME as the default desktop environment. However, several versions also exist with KDE, Mate, Xfce environments that can also be installed manually on your system.</p>



<h2 class="wp-block-heading">Linux Mint</h2>



<figure class="wp-block-image size-large"><img decoding="async" width="750" height="422" src="https://techpointmag.com/wp-content/uploads/2020/11/Linux-Mint.jpg" alt="beginner friendly linux distros like Linux Mint" class="wp-image-12429" srcset="https://techpointmag.com/wp-content/uploads/2020/11/Linux-Mint.jpg 750w, https://techpointmag.com/wp-content/uploads/2020/11/Linux-Mint-300x169.jpg 300w" sizes="(max-width: 750px) 100vw, 750px" /></figure>



<p>Linux Mint is a beginner friendly distro based on Ubuntu, and its computing experience is highly preferred by users as compared to Ubuntu. With a fast-growing community, the distro developers have dedicated a lot of time to maintain its elegance and user-friendliness.</p>



<p>9Linux Mint is available in three desktop flavors, Cinnamon, Mate, and Xfce. The most popular is Cinnamon because of its similarity to Windows, and so, users switching from Windows often prefer the flavor to any other.</p>



<p>Linux Mint has a rich set of desktop backgrounds, pre-installed applications, and fewer system requirements making it compatible on even old Pentium processor computers. Additionally, the stacking on Apps under categories makes Linux Mint Cinnamon a great flavor for beginners with a straight forward menu.</p>



<p>To <a class="rank-math-link" href="https://linuxmint.com/" target="_blank" rel="noopener">download Linux Mint</a>, simply visit the Project&#8217;s main website Downloads page to choose your preferred desktop flavor.</p>



<h2 class="wp-block-heading">Zorin OS</h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="750" height="443" src="https://techpointmag.com/wp-content/uploads/2020/11/Zorin-OS.jpg" alt="zorin os" class="wp-image-12423" srcset="https://techpointmag.com/wp-content/uploads/2020/11/Zorin-OS.jpg 750w, https://techpointmag.com/wp-content/uploads/2020/11/Zorin-OS-300x177.jpg 300w, https://techpointmag.com/wp-content/uploads/2020/11/Zorin-OS-357x210.jpg 357w" sizes="auto, (max-width: 750px) 100vw, 750px" /><figcaption>Zorin OS can run on multiple devices including desktops and tablets</figcaption></figure>



<p>Developed by Zorin, the distribution is based on Ubuntu and was developed in 2009 with an aim of merging great performance and user-friendliness for beginner Linux users. Its desktop flavor has a Windows 7 texture to it, and this eases the learning curve to migrating Windows users.</p>



<p>Zorin OS is available in 4 flavors, Core, Lite, Education, and Ultimate editions. Apart from Ultimate which is prices at $39 to help the project developers, all other flavors are free. </p>



<p>Zorin Core comes ships GNOME as its default desktop environment, then Lite ships Xfce as the desktop environment, as Education and Ultimate ship both GNOME and Xfce selectable on installation.</p>



<p>To <a href="https://zorinos.com/" class="rank-math-link" target="_blank" rel="noopener">download Zorin OS</a>, simply visit the project&#8217;s official Website to get an ISO image of your choice and install it on your computer as per system requirements. For low CPU systems, Zorin is a great distro to run with vast applications like Wine and PlayonLinux as attractive services.</p>



<h2 class="wp-block-heading">Manjaro OS</h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="750" height="430" src="https://techpointmag.com/wp-content/uploads/2020/11/Manjaro-OS.jpg" alt="Manjaro OS" class="wp-image-12426" srcset="https://techpointmag.com/wp-content/uploads/2020/11/Manjaro-OS.jpg 750w, https://techpointmag.com/wp-content/uploads/2020/11/Manjaro-OS-300x172.jpg 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<p>Based on Arch Linux, Manjaro OS is one of the best beginner friendly Linux distro with easy accessibility and environment friendliness. Given the fact that Arch Linus is rated non-beginner friendly, Manjaro OS is the desktop variant developed to make its underlying core easy to use.</p>



<p>Despite it being highly stable and very fast, Arch-Linux is considered highly complex for beginner Linux users. Manjaro OS is based on Arch-Linux and incorporates its positive features with easy accessibility and user-friendliness.</p>



<p>Manjaro has 3 desktop environments Gnome, Xfce, and KDE plasma. Upon installation, Manjaro auto-detects all hardware components and installs necessary applications and rivers contact to its mother system &#8216;Arch Linux&#8217; where you have to install each component separately.</p>



<p>To <a href="https://manjaro.org/download/" class="rank-math-link" target="_blank" rel="noopener">download Manjaro OS</a>, simply visit the Project&#8217;s main website to get the latest IOS image for installation. Once Installed, Manajor ships default applications like Firefox, Libre Office, Rythmbox, among others.</p>



<h2 class="wp-block-heading">What do to before Installing Beginner Friendly Linux Distros on your computer</h2>



<p>In case you&#8217;re new to Linux, download your preferred Linux Distro, burn it on a Flashdisk or compact disk (CD), then Enter your computer&#8217;s Installation mode to run a live version of the operating system without actually installing it.</p>



<p>By this, you&#8217;ll be able to access the operating system without making any changes to your computer, nor even installing the distro until you make a choice. </p>



<p>But once you&#8217;re ready with the best operating system you prefer, then, back up your computer&#8217;s files if you don&#8217;t intend to dual boot with an already existing OS like Windows in order to limit any data loss.</p>



<p>Otherwise, all Desktop Linux distros are great, and depending on what catches your eye faster, you might want to consider a blend of Elementary, Ubuntu, or Linux Mint as your next computer operating system built with security in mind. And so, don&#8217;t expect the Term &#8216;Computer Virus&#8217; to even knock by your Login window.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">12367</post-id>	</item>
		<item>
		<title>How to run Windows Apps on your ChromeBook using Wine</title>
		<link>https://techpointmag.com/run-windows-apps-on-chromebook/</link>
		
		<dc:creator><![CDATA[Humphrey Mpairwe]]></dc:creator>
		<pubDate>Wed, 08 Jan 2020 17:54:57 +0000</pubDate>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">http://techpointmag.com/?p=9219</guid>

					<description><![CDATA[Buying a Chromebook laptop is now a new trend to cruise with Google&#8217;s Chrome OS powering the opensource laptops project. But, the only ugly side of Chromebooks is that you can&#8217;t directly run Windows apps on them, this means you have to depend on Linux repositories to get viable alternatives Interestingly you don&#8217;t have to [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Buying a Chromebook laptop is now a new trend to cruise with Google&#8217;s Chrome OS powering the opensource laptops project. But, the only ugly side of Chromebooks is that you can&#8217;t directly run Windows apps on them, this means you have to depend on Linux repositories to get viable alternatives</p>



<p>Interestingly you don&#8217;t have to run Windows apps as a must since various alternatives are optimized for Chromebooks. For Instance, Apps like Firefox can be run directly since they support Chrome OS, while other developers limited their app&#8217;s usage to the Windows shell</p>



<p>It&#8217;s through this fashion that you need to Install WINE as the best solution to help you install almost all Windows apps/software on your Chromebook and here is how you can run the fully installed Windows apps.</p>



<h2 class="wp-block-heading">What you need to know about WINE</h2>



<p>WINE is a 3rd party Linux application that was built by the open-source community to allow users continue to have a taste of the Windows shell without dual-booting. The application runs virtual Windows drives on your Linux computer without any fatal changes on your hard drive</p>



<p>You can think of WINE as a convenient version of emulators like Virtual Box except that it only allows you to install the Windows apps and not the full operating system. To Install the App you need to have root (super user) permissions through the ChromeOS terminal.</p>



<h2 class="wp-block-heading">How to Install WINE</h2>



<ul class="wp-block-list"><li>First,  refresh the computer by running the update command to fetch new repositories and ensure update of existing packages</li></ul>



<pre class="wp-block-preformatted">Sudo apt-get update</pre>



<ul class="wp-block-list"><li>Then, Open Terminal (Command-line Interface, shortcut Ctrl + Alt + T), type Sudo su (for root permissions), type your password, then type <em>apt-get install wine </em>to begin the installation process or simply use the keyword Sudo in front of your command</li></ul>



<pre class="wp-block-preformatted">apt-get Install Wine <strong>OR</strong> sudo apt-get install Wine</pre>



<figure class="wp-block-image size-large"><img decoding="async" src="https://beebom.com/wp-content/uploads/2020/01/How-to-Use-Windows-10-Apps-on-Chromebook-Using-Wine-1.jpg" alt="How to Use Windows 10 Apps on Chromebook Using Wine 1"><figcaption>The Wine Installation command PHOTO: Beebom</figcaption></figure>



<ul class="wp-block-list"><li>Now that Wine is Installed, you might want to add 32bit support in order to support both legacy and modern Windows apps. To do this, simply run:</li></ul>



<pre class="wp-block-preformatted">sudo dpkg --add-architecture i386
Then
sudo apt-get install wine32</pre>



<p><strong>DONE:</strong> You just Installed Wine on your Chromebook, next up is to install and run windows applications on your Chromebook pc</p>



<h2 class="wp-block-heading">Installing and using Windows apps on your Chromebook</h2>



<p>Now that you just Installed Wine, what you need to do is download Windows Apps for installation on your Chromebook. You could start with a download manager like IDM or Microsoft&#8217;s Paint App.</p>



<p>Better way, if you already have setup files .exe from a Windows computers, then all you have to do is open your .exe files with Wine to Install the software to be run on your Chromebook. Nonetheless, here is how you can open your Windows installation files with Wine.</p>



<ul class="wp-block-list"><li>Right click your Windows .exe file and choose open with Wine or simply open the file to be grabbed automatically by Wine</li></ul>



<ul class="wp-block-list"><li>Once opened, Install your software the same way you would on a Windows computer</li><li>Incase you have trouble on how to Install Windows software and Apps, then read our quick guide on Windows installation</li><li>DONE: Your Installed Windows program will now work on your Chromebook each time you open it</li></ul>



<figure class="wp-block-image size-large"><img decoding="async" src="https://beebom.com/wp-content/uploads/2020/01/How-to-Use-Windows-10-Apps-on-Chromebook-Using-Wine-4-1.jpg" alt="How to Use Windows 10 Apps on Chromebook Using Wine 4 1"><figcaption>IDM Open on a Chromebook</figcaption></figure>



<p>By default, Wine creates shortcuts of Installed Windows applications on your Chromebook or Linux pc. But if it doesn&#8217;t then you need to locate the Wine directory from the directory below and create a manual shortcut from the program files</p>



<pre class="wp-block-preformatted"><strong>Method 1:</strong> home/your username(Computer Username)/.wine/drive c/program files/ SOFTWARE NAME</pre>



<pre class="wp-block-preformatted"><strong>Method 2:</strong> Through the File Manager, click Files, Then Home, Toggle view hidden files, then choose the folder .Wine where you can locate the C drive and program files -> The dot standarding for its hidden status.</pre>



<p>That&#8217;s all you will enjoy almost all Windows Apps on your Chromebook or Linux computer with ease. We&#8217;ve tested the methods before by using Kali Linux and all popular applications could run with the emulator. Another tool you may choose to play with apart from Wine would be &#8221; Play with Linux)</p>



<p>Otherwise, we shall be publishing Linux tech guides on how you can run various applications and tweaks on your Chromebook or Linux computer in our next series of guides.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">9219</post-id>	</item>
	</channel>
</rss>
