I know many people who are still confused if they should switch to Linux or at least give it a go. In this article series I'll taking you through the steps I followed and my experience while switching to Linux and how I learn and do python projects solely on Linux.
Just in case, I'm not saying you should switch to Linux, if you're curious or want to try something new just give it a try, fun fact it's free!
Let's get started with installing Linux on your device.
This series will be focusing on Ubuntu since that's what I'm using now and writing this article on.
- First you'll need an USB stick, I recommend minimum of 8gbs. Now let's download everything that you'll be needing.
Note- if you follow the videos mentioned below, follow the steps they show on what to and how to download.
- I'll be leaving here the video tutorials which I followed here since I'm no expert in partitioning and things.
Install the drivers and software packages.
- If you're using a device with an nvidia gpu check out this video.
- If you're using a device with built in gpu or an amd gpu, you should be fine.
- Now let's run the command to update your system and installed softwares first
$ sudo apt update
$ sudo apt upgrade
- Now you're almost good to go and download any software you wish to, you don't need to use the terminal to install software if you don't want to. However, there's several ways to intall software on linux:-
- Use snap packages, you can use snap packages, ubuntu comes prebuilt with snap support since snap is developed by canonical, the same company which developes ubuntu. You can open the software centre and most software there will be snaps by default.
- Use aptitude, you can use
apt
to install software directly from ubuntu's repositories. For eg,
$ sudo apt install vlc
- Use deb packages, like windows' exe and msi packages you can download software's deb file which works very much like exe or msi packages, just click on it and it'll install the software. One benefit is that the deb file will add it's repository on your device so you can update it directly from you terminal or software center.
- flatpak, flatpak is very much like snap but flatpaks generally have faster load times compared to snaps. Check out this video to see how you can install flatpak on ubuntu.
Forums and help
Ubuntu is one of the biggest and most used distro out there, if you have an issue the chances are it's already solved by someone else just give it a google search.
In next article, I'll be writing how I setup my device while I'm mastering python.
Top comments (3)
such an outstanding article! waiting for the next post!
Some comments may only be visible to logged-in visitors. Sign in to view all comments.