Jump to content

Welcome to CodeNameJessica

Welcome to CodeNameJessica!

💻 Where tech meets community.

Hello, Guest! 👋
You're just a few clicks away from joining an exclusive space for tech enthusiasts, problem-solvers, and lifelong learners like you.

🔐 Why Join?
By becoming a member of CodeNameJessica, you’ll get access to:
In-depth discussions on Linux, Security, Server Administration, Programming, and more
Exclusive resources, tools, and scripts for IT professionals
A supportive community of like-minded individuals to share ideas, solve problems, and learn together
Project showcases, guides, and tutorials from our members
Personalized profiles and direct messaging to collaborate with other techies

🌐 Sign Up Now and Unlock Full Access!
As a guest, you're seeing just a glimpse of what we offer. Don't miss out on the complete experience! Create a free account today and start exploring everything CodeNameJessica has to offer.

  • Entries

    64
  • Comments

    0
  • Views

    2413

Entries in this blog

by: Community


Using Emacs as Terminal Multiplexer on Windows

If you're a developer or a power user, you probably understand the importance of having an efficient and organized workflow.

Whenever I get to work with a Windows-based system, I really miss the terminal emulator along with the ability to quickly switch between different terminal sessions. Not to mention, sometimes I need to gather 2-3 command sessions in a single view. There are many scenarios where I need to run multiple commands simultaneously. 

Sure, we have the command prompt, or Windows terminal to use, but it is not enough for a similar experience.

💡

Windows 11 Terminal does provide you the ability to create multiple panes within a tab. You can use the shortcut Alt + Shift + - and Alt + Shift + + to create horizontal and vertical panes, respectively.

With Linux, I had access to terminal multiplexers like tmux and screen.

But, wait, there is a solution on Windows 10 and Windows 11 that can work as a terminal multiplexer and a text editor – all in one!

Enter Emacs 🤩

Why Use Emacs as a Terminal Multiplexer?

While I have already mentioned why we are looking at a solution like Emacs, let me give highlight some more reasons you want to try this out (apart from the fact that it is open source and super awesome):

1. Less is More

Emacs is an all-in-one solution. It can work as a terminal, text editor, file manager, email client, calculator, a text-based web browser. All these features are packed in a 150 MB zipped file. Pretty crazy, right? You won't know all this until you give it a try!

2. Powerful Customization

Emacs is famously customizable. You can tweak almost everything: keybindings, window layouts, themes, and even the behavior of your terminal sessions. This allows you to tailor the environment to your exact needs, providing a highly efficient experience.

3. Integrated Shell Support

Emacs allows you to open a shell session inside a buffer, and with its support for eshell, shell, you can run shell commands, manipulate files, and perform operations right alongside your text editing. 

4. Flexibility with Windows

Emacs is great at handling multiple buffers in a single window. You can split your window into multiple panes (or "windows," as Emacs calls them), just like with tmux, enabling you to work on different tasks simultaneously without feeling cluttered.

Using Emacs as Terminal Multiplexer

Now that you know the benefits, to help you use it, let me give you a walkthrough on using Emacs as a terminal multiplexer.

Step 1: Install Winget

Winget comes as a part of the App Installer package. So, you need to first install the App Installer from Microsoft Store:

Using Emacs as Terminal Multiplexer on Windows

Step 2: Install Emacs on Windows 11 or Windows 10

Winget makes it super simple to install Emacs. Simply run this command:

winget install emacs

Step 3: Open Emacs 

Open Emacs from the Windows 11 Start menu.

Step 4: Run shell

Within emacs, press Alt + X, and type shell and hit Enter to get the interactive user interface.

Using Emacs as Terminal Multiplexer on Windows

💡

In Emacs terminology, the Alt key is often referred to as M, and Ctrl is referred to as C. I have used C, and M to represent the same throughout the article.

Now, with Emacs, you will realize the following benefits:

  • A nice auto-completion system

  • Ability to edit any previous command at a point

  • Quickly jump between different command sessions.

Using Emacs as Terminal Multiplexer on Windows

Autocomplete selection

To see autocomplete in shell buffer, simply type in 'a' and then hit Tab, you’ll be presented with a list of options. You can select one of the options with a mouse click as shown above.

Using Emacs as Terminal Multiplexer on Windows

📋

If you see terms like C-s, or C-u, or Alt-x, read it as Ctrl + s/u or Alt + x.

To search for previous commands and outputs, hit C-s <your-term>. This is what I referred to when I mentioned consistent keybindings for all of your workflow. Within your Emacs environment, C-s will do a forward search everywhere unless you modify it.

Using Emacs as Terminal Multiplexer on Windows

To edit your previous commands, move your cursor to the previous command or do a quick search, make the necessary adjustments, and hit enter. 

If you want to open another shell, press C-u keys, and then Alt-x to open another shell.

By default, this buffer will be named “Shell 2”. And you can navigate between these different shells by C-x b and Tab. Use the mouse for selection. We’ll make it more efficient in the next section.

Terminal Multiplexing

Now here comes the magic. If you want to create two vertical layouts, simply use the keybinding C-x + 3. Then, if you want two horizontal layouts, use the shortcut C-x + 2.

Using Emacs as Terminal Multiplexer on Windows

For navigation to other panes, you can use your mouse or use Emacs shortcut
C-x + o

Auto-completion and multi-window layouts

Another quick tip. With just one line configuration, Emacs can provide useful completions based on your action with ido-mode

Save the line below in a new .emacs file usually located at your user C:/Users/YourUser/AppData/Roaming. After saving, you don’t need to restart Emacs.

(ido-mode 1)

Let’s enable winner-mode as well to undo and redo multi-window layouts. Add the line below to the config file like you did above:

(winner-mode 1)

Finally, save this two-line configuration

Simply, do Alt + x and then type eval-buffer.

Using Emacs as Terminal Multiplexer on Windows

Now with ido-mode, you can simply switch to shell 2 buffer using C-x b 2.

Using Emacs as Terminal Multiplexer on Windows

With winner-mode in place, if you want to get a full preview of a single pane, press C-x + 1, and then to go back to the previous layout, run

winner-undo

You can save yourself time by mapping a keybinding for winner-undo and winner-redo commands.

Keybindings Cheatsheet

Here’s a list of all keybindings we used throughout this tutorial.

Keybinding Shortcut

What it does

C-x C-s

Saves the file

Alt-x

Opens mini prompt to enter interactive commands

C-s

Forward Search

C-u Alt-x

Run another instance of the command

C-x b

Navigates between the buffer

C-x 2

Splits into two horizontal layouts

C-x 3

Splits into two vertical layouts

C-x o

Move to another pane

C-x 1

Get a full view of a particular pane

💬Do you love having multiple terminal sessions as well? Let me know your thoughts in the comments!

Author Info

Using Emacs as Terminal Multiplexer on Windows

Bhuwan Mishra is a Fullstack developer, with Python and Go as his tools of choice. He takes pride in building and securing web applications, APIs, and CI/CD pipelines, as well as tuning servers for optimal performance. He also has passion for working with Kubernetes.

by: Sreenath


Taking Screenshots in Hyprland

Hyprland is a highly customizable Wayland tiling compositor known for its eye-catching aesthetics and impressive performance. With such a high degree of customization, one important feature that many users seek is the ability to take screenshots.

Whether for sharing on social media or saving essential screen details for future reference, capturing your screen is an essential task.

In this article, we will explore various methods to set up screenshot functionality on your Hyprland installation.

First Option: Grimblast

Grimblast is an official Hyprland screenshot utility offering various options.

It is a shell script, that uses tools like grim and slurp to take screenshots.

Installing Grimblast

Before installing Grimblast, we need to get the required dependencies. On Arch Linux, use the following command:

sudo pacman -Syu jq grim slurp wl-clipboard libnotitfy hyprpicker

🚧

For other distributions, you should check the official program pages for installation instructions.

Grimblast is not available in the package manager of applications. To install, first go to the official repo of the project and go to the grimblast folder.

Taking Screenshots in Hyprland

Click on grimblast

Here, go to the script file 'grimblast' and click on it to access.

Taking Screenshots in Hyprland

Click on grimblast script file

Here, click on the download icon on the top-right corner of the code page to start downloading it.

Taking Screenshots in Hyprland

Download grimblast script

Download Grimblast Script

🚧

You should keep an eye on the project for updates/commits.

Once downloaded, go to the download location and give it execution permission.

chmod +x ./grimblast

Now, copy the file to a directory that is in your PATH.

sudo cp ./grimblast /usr/local/bin/

Using Grimblast

Grimblast has several useful options. We will be taking a look at some items in the table below:

Command

Description

grimblast save active

Save the screenshot of active window

grimblast save area

Save the screenshot of a rectangular area selectable with mouse.

grimblast --notify copy active|area|output|screen

Take the screenshot of respective area and copy it to clipboard and notify the user.

grimblast --cursor copysave area

Copy the screenshot of the selected window area along with cursor to the clipboard. Also save the image to Pictures directory.

Grimblast supports the following area of screenshots:

  • active: Current active window.

  • screen: All visible outputs.

  • output: Currently active output/monitor.

  • area: Manually selected rectangular area/window.

1. Open the image in an editor

Grimblast supports opening the screenshot in a selected image editing application. By default, this is set as GIMP.

So, if you have GIMP installed, you can use the command:

grimblast edit area

The above command will take a screenshot of an area and open it in GIMP.

If you are using another image editor like Photoflare, you can use that program by configuring the GRIMBLAST_EDITOR environment variable.

On your ~/.config/hypr/hyprland.conf file, use the following line:

env = GRIMBLAST_EDITOR,photoflare

That's it. Now, when a screenshot is taken, it is opened in the selected editor.

2. Move the screenshot area

While taking region screenshots, you can move the screenshot view port. For this, when the screenshot key is pressed, and a region is selected, hold down the Space key without releasing the mouse click.

Now, without releasing the mouse click, drag the mouse to move around the screenshot area.

You can release the space key, and continue the resizing of the screenshot as well.

3. Add Grimblast Keybindings

You should be using Grimblast only through keybindings.

On Hyprland configuration file, add the line:

bind = , PRINT, exec, grimblast copysave area
bind = $mainMod_SHIFT, PRINT, exec, grimblast copysave output

The above command will save a screenshot of the selected area or window to ~/Pictures directory when you hit the PrtScr key. It will also be copied to your clipboard. The Super + SHIFT + PrtScr key will save a screenshot of currently active output, with the same will be copied to clipboard as well.

Second Option: Hyprshot

Hyprshot is an exclusive screenshot utility designed specifically for Hyprland.

It is a straightforward tool that does exactly what it's meant for: taking screenshots.

If you have read through the GitHub page of this tool, you will realize that it is primarily a shell script that serves as a wrapper around tools like grim, slurp, and others to take screenshots in Wayland environment. Furthermore, it is specially tailored to work with Hyprland, which is the most important thing here.

Installing Hyprshot

Before installing Hyprshot, first we need to get the dependencies. On Arch Linux, use the following command:

sudo pacman -Syu jq grim slurp wl-clipboard libnotitfy hyprpicker

Once the dependencies are installed, let's install Hyprshot:

yay -S hyprshot

If you are using any other distribution, go to the official GitHub page of Hyprshot and download the release file.

Download Hyprshot

Once done, extract the archive file, and you will get a shell script file called hyprshot. Go inside the extracted location and make this script file executable:

chmod +x ./hyprshot>

Now, copy this file to a directory in your PATH to make it available everywhere.

sudo cp ./hyprshot /usr/local/bin/

That's it!

Setting Hyprshot

Once installed, it's time to configure. Open your hyprland.conf file using any of your favorite text editor.

nano ~/.config/hypr/hyprland.conf

Inside this file, go to the end and add a key binding for Hyprshot. To make everything look neat, we will create a section using comment called Hyprshot Screenshots.

# Hyprshot Screenshots
bind = , PRINT, exec, hyprshot -m region
bind = $mainMod_SHIFT, PRINT, exec, hyprshot -m window

Here, we have set two keybindings with the values. To take a screenshot of a rectangular region:

hyprshot -m region

💡

While selecting a region, without releasing the mouse left-click press the space and drag the mouse. This will move the selection area. A video is shown in the Grimblast section.

And to take the screenshot of an open window, you type in:

hyprshot -m window

There are other options available with Hyprshot, let's take a brief look:

Option

Description

hyprshot -m window

Take the screenshot of open window.

hyprshot -m region

Take the screenshot of a rectangular region.

hyprshot -m output

Take the screenshot of a selected display/monitor.

hyprshot -m active

Take the screenshot of an active window.

--clipboard-only

Use this option with other options to not save the image, but only copy to clipboard.

Did you know you can also freeze the screen?

An interesting use-case that you can pull off is to freeze the screen while taking a screenshot. For this to work, you should have hyprpicker installed.

Once you have Hyprshot and Hyprpicker, you can use the -z option to freeze the screen.

For example, to take the screenshot of a rectangular region with screen frozen, use the command:

hyprshot -zm region

To add this to the Hyprland config, use the keybinding command:

bind = , PRINT, exec, hyprshot -zm region

For those who only need to add it to the clipboard without saving, use:

bind = , PRINT, exec, hyprshot -zm region --clipboard-only

💡

If you have a notification daemon like dunst is running, Hyprshot will notify you about the screenshot.

Third Option: Flameshot

Flameshot is a great screenshot taking utility for Linux. But the default package available in the repos of distribution works mainly on Xorg-based distributions.

But, you can use the git version of Flameshot in Wayland-based systems like Hyprland. Let me tell you how.

Install Flameshot

First, remove any other Flameshot instance installed on your system (this is applicable for Arch users):

sudo pacman -Rs flameshot

Next, install the git version of Flameshot from the AUR. We will recommend using an AUR helper like yay to install the package.

yay -S flameshot-git

Wait for some time to compile the program and installation process to complete.

Once completed, you can open Flameshot from your app menu:

Flameshot offers better screenshot options compared to other items mentioned here. But, you should keep in mind that Flameshot is developed mainly for Xorg sessions, and the packaged versions may not work properly in Hyprland.

So, try out Flameshot as an experiment if you do not like the first two options.

Wrapping Up

While starting with Hyprland can be challenging for new users, you can do a great deal of things with ease, as mentioned above.

💬 How do you take screenshots on Hyprland? Let me know your thoughts in the comments below!

by: Abhishek Kumar


SSH into Raspberry Pi from Outside Home Network Using Tailscale

Earlier, I shared how you can use Cloudflare Tunnels to access Raspberry Pi outside your home network.

A few readers suggested using Tailscale. And indeed, this is a handy tool if your aim is to ssh into your Raspberry Pi securely from outside your home network.

In this article, I'll be covering how you can use Tailscale VPN to remotely connect to your Raspberry Pi without the hassle of complicated network setups.

What is Tailscale?

Tailscale is a zero-config VPN built on the WireGuard protocol, designed to securely connect devices across different networks as if they were on the same local network.

It simplifies private networking by establishing a mesh VPN that routes traffic between your devices, no matter where they are.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Tailscale is available for multiple platforms, including Linux, macOS, Windows, Android, and embedded devices like the Raspberry Pi, making it a versatile solution for remote access.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

How Tailscale Works

At the heart of Tailscale is WireGuard, a fast and modern VPN protocol.

Tailscale uses this protocol to create encrypted connections between your devices, while managing all the networking complexities behind the scenes.

Its key mechanics include:

  • Mesh Networking: Devices in your Tailscale network (or "tailnet") connect directly to each other where possible, creating a mesh of encrypted connections.

  • End-to-End Encryption: All traffic is encrypted from one device to another, ensuring privacy and security.

  • NAT Traversal: Tailscale automatically handles NAT traversal and firewall configurations, so you don’t need to worry about setting up port forwarding or exposing services.

  • Auto-Routing: Once your devices are connected to the tailnet, Tailscale automatically routes traffic between them as needed.

This makes it an excellent option for remotely accessing your Raspberry Pi or any other device, eliminating the hassle of configuring VPNs, firewalls, or DNS settings.

Installing Tailscale on Raspberry Pi

Tailscale can be installed easily on any Linux-based system, including the Raspberry Pi. Here’s how to set it up:

Update your system:

sudo apt update && sudo apt upgrade -y

Install Tailscale:

curl -fsSL https://tailscale.com/install.sh | sh

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Authenticate and connect to Tailscale:

sudo tailscale up

SSH into Raspberry Pi from Outside Home Network Using Tailscale

This command will generate a URL. Open this URL in your browser to log in with your Tailscale account. Once authenticated, your Raspberry Pi will be connected to your tailnet.

Access Your Raspberry Pi: Once your Pi is part of the tailnet, you can access it remotely using its Tailscale IP address.

ssh pi@<tailscale-ip>

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Setting Up Your Tailscale Network (Tailnet)

Once you’ve created your Tailscale account, you’ll need to set up your tailnet and connect devices to it.

Tailnet Creation: The good news is that Tailscale automatically creates a tailnet for you when you log in.

There's no need for manual network setup just install Tailscale on your devices and they’ll join the same tailnet.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Tailnet IP Addresses: Every device that joins your tailnet gets its own private, secure IP address.

These IP addresses are assigned automatically by Tailscale and can be used to remotely access your devices.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Managing Devices: Once a device joins your tailnet, you can view and manage it from the Tailscale web dashboard.

From here, you can see the connection status, IP address, and name of each device. You can also remove devices or disable connections if needed.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

With your tailnet set up, you’re ready to access your Raspberry Pi from anywhere in the world, securely and without any complicated network configurations.

Pricing

Tailscale offers a straightforward pricing structure, starting with a Free Tier that supports up to 100 devices and includes all the key features needed for secure remote access—no credit card required.

For users needing more, the Personal Pro plan is $5 per user per month, with unlimited devices and 1 subnet router, while the Business Plan at $10 per user per month adds advanced features like ACLs and more subnet routers.

The Enterprise Plan offers custom solutions for larger networks.

For most personal projects, the Free Tier provides everything you need to get started easily.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Conclusion

Tailscale offers a simple solution for those needing simple, secure remote access to their Raspberry Pi or any other device.

By leveraging WireGuard for fast and encrypted connections, and simplifying the complexities of VPN setup, Tailscale allows you to focus more on your projects and less on network configuration.

The ease of installation, makes it an excellent choice for beginners, developers, and home automation enthusiasts alike.

If you have any suggestions for other apps or services you’d like us to cover, or if you want to share what systems you use for remote access, feel free to comment below! We'd love to hear your thoughts and experiences.

by: Bill Dyer

Rediscovering Plan9 from Bell Labs

During a weekend of tidying up - you know, the kind of chore where you’re knee-deep in old boxes before you realize it. Digging through the dusty cables and old, outdated user manuals, I found something that I had long forgotten: an old Plan9 distribution. Judging by the faded ink and slight warping of the disk sleeve, it had to be from around 1994 or 1995.

I couldn’t help but wonder: why had I kept this? Back then, I was curious about Plan9. It was a forward-thinking OS that never quite reached full potential. Holding that disk, however, it felt more like a time capsule, a real reminder of computing’s advancements and adventurous spirit in the 1990s.

What Made Plan9 So Intriguing Back Then?

In the 1990s, Bell Labs carried an almost mythical reputation for me. I was a C programmer and Unix system administrator and the people at Bell Labs were the minds behind Unix and C, after all. When Plan9 was announced, it felt like the next big thing. Plan9 was an operating system that promised to rethink Unix, not just patch it up. The nerd in me couldn’t resist playing with it.

A Peek Inside the Distro

Booting up Plan9 wasn’t like loading any other OS. From the minimalist Rio interface to the “everything is a file” philosophy taken to its extreme, it was clear this was something different.

Some standout features that left an impression:

  • 9P Protocol: I didn’t grasp its full potential back then, but the idea of treating every resource as part of a unified namespace was extraordinary.

  • Custom Namespaces: The concept of every user having their own view of the system wasn’t just revolutionary; it was downright empowering.

  • Simplicity and Elegance: Even as a die-hard Unix user, I admired Plan9's ability to strip away the cruft without losing functionality.

Looking at Plan9 Today

Curiosity got the better of me, and I decided to see if the disk still worked. Spoiler: it didn’t.

But thanks to projects like 9front, Plan9 is far from dead. I was able to download and image and fire it up in a VM. The interface hasn't aged well compared to modern GUIs, but its philosophy and design still feels ahead of its time.

Rediscovering Plan9 from Bell Labs

As a seasoned (read: older) developer, I’ve come to appreciate things I might have overlooked in the 1990s:

  1. Efficiency over bloat: In today’s world of resource-hungry systems, Plan9’s lightweight design is like a breath of fresh air.

  2. Academic appeal: Its clarity and modularity makes Plan9 and outstanding teaching tool for operating system concepts.

  3. Timeless innovations: Ideas like distributed computing and namespace customization feels even more pertinent in this era of cloud computing.

Why didn’t Plan9 take off?

Plan9 was ahead of its time, which often spells doom for innovative tech. Its radical departure from Unix made it incompatible with existing software. And let’s face it - developers were (and still are) reluctant to ditch well-established ecosystems.

Moreover, by the 1990s, Unix clones, such as Linux, were gaining traction. Open-source communities rallied around Linux, leaving Plan9 with a smaller, academic-focused user base. It just didn't have the commercial/user backup.

Plan9’s place in the retro-computing scene

I admit it: I can get sappy and nostalgic over tech history. Plan9 is more than a relic; it’s a reminder of a time when operating systems dared to dream big. It never achieved the widespread adoption of Unix or Linux, but it still has a strong following among retro-computing enthusiasts.

Here’s why it continues to matter:

  • For Developers: It’s a masterclass in clean, efficient design.

  • For Historians: It’s a snapshot of what computing could have been.

  • For Hobbyists: It’s a fun, low-resource system to tinker with.

Check out the 9front project. It’s a maintained fork that modernizes Plan9 while staying true to its roots. Plan9 can run on modern hardware. It is lightweight enough to run on old machines, but I suggest using a VM; it is the easiest route.

Lessons from years past

How a person uses Plan9 is up to them, naturally, but I don't think that Plan9 is practical for everyday use. Plan9, I believe, is better suited as an experimental or educational platform rather than a daily driver. However, that doesn't mean that it wasn't special.

Finding that old Plan9 disk wasn’t just a trip down memory lane; it was a reminder of why I was so drawn to computing. Plan9’s ambition and elegance is still inspiring to me, even decades later.

So, whether you’re a retro-computing nerd, like me, or just curious about alternative OS designs, give Plan9 a run. Who knows? You might find a little magic in its simplicity, just like I did.

by: Abhishek Prakash


Missing Windows from Grub After Dual Boot? Here's What You Can Do

One of the issues I encountered after dual booting Windows with Linux is the missing Windows entry from the grub menu.

Here's the scenario. Windows was present on the computer. I installed CachyOS alongside Windows. I selected to install the Grub bootloader that allows booting into Linux, Windows (and any other OS present on the system) along with the option to access UEFI.

Only this time, Grub did not show Windows in the menu 😔

Missing Windows from Grub After Dual Boot? Here's What You Can Do

Missing Windows from Grub bootloader

That was disappointing but not surprising because I am aware that this is a feature.

Let me show you how you can fix this by enabling os-prober feature in Grub and then updating it.

Step 1: Enable os-prober in grub

Grub config file is located at /etc/default/grub. If you open it via Nano or some editor, you'll see at the end of this file that os-prober is disabled by default sighting security reasons.

Missing Windows from Grub After Dual Boot? Here's What You Can Do

If you are familiar with any terminal-based text editor, use it to uncomment the line # GRUB_DISABLE_OS_PROBER=false by removing the # at the beginning of the line.

However, if you are absolutely new to the command line, you can use this command in the terminal:

echo "GRUB_DISABLE_OS_PROBER=false" | sudo tee -a /etc/default/grub

It will ask for your password. It should be the same account password you use to log in to the system.

🚧

When you type the password in Linux terminal, nothing is reflected on the screen. It feels as if your system is hanged, as there is no visible feedback. Don't worry. It's a security feature and most Linux terminals won't even show asterisks (*) as you enter the password. Just type it in and enter.

With os-prober enabled, Grub will look for the presence of other operating systems in EFI folder and will add them in the bootloader menu.

There is one little problem. The config changes won't take place unless you update grub.

Step 2: Update grub

On Ubuntu and some other distributions, there is a dedicated command to update grub:

sudo update-grub

However, on Arch and some other distributions, you'll end up with update-grub command not found error.

That's because update-grub is not a standard command. It is just la stub for this command:

sudo grub-mkconfig -o /boot/grub/grub.cfg

Run the above command if your system doesn't have update-grub.

It should show an output like this:

Missing Windows from Grub After Dual Boot? Here's What You Can Do

And as you can see in the above output, grub is probing for other OS and has found Windows boot manager. This is an indication that when you reboot the system, grub should show Windows in the available option.

Missing Windows from Grub After Dual Boot? Here's What You Can Do

And Windows is back in Grub

Still no Windows boot manager?

See, this method only works when dual boot succeeded properly and you have all EFI settings located in the same folder under the same ESP partition.

If that's not the case, you could try accessing the UEFI settings, go to boot order. Windows boot manager should be present there and if you move it up the order, you can boot from it into Windows.

This is not the most convenient option, I understand but it's a workaround until you figure out why Grub bootloader could not see Windows.

💡 Bonus tip: The time synchronization issue

Since we are discussing dual booting Windows and Linux, let me share another potential issue you'll encounter. You'll notice that system time changes when you switch between Windows and Linux. You can fix it, if you want.

[Solved] Wrong Time in Windows 10 After Dual Boot With Linux

If you dual boot Windows and Linux, you’ll notice that often one of them shows incorrect time. Here’s why that happens and what you can do to fix it.

Missing Windows from Grub After Dual Boot? Here's What You Can DoIt's FOSSAbhishek Prakash

Missing Windows from Grub After Dual Boot? Here's What You Can Do

💬 I hope this little trick helps you get a better dual booting experience. Let me know in the comments if you were able to get Windows back in Grub.

by: Community


Kew: Listening to Music in the Linux Terminal

A new (or perhaps old) way of enjoying music for the command-line enthusiasts.

I've seen things... seen things that you people wouldn't believe... Linux developed by governments, Linux on mobiles, and terminal audio players.

Yes, it could be funny, but it's real, you could play music from your command-line.

And that's just one of the many unusual things you can do in the terminal.

Subscribe to It's FOSS YouTube Channel

Meet Kew

When you use the terminal more often than the graphical tools, you would perhaps enjoy playing music from the terminal.

I came across Kew, a terminal music player fully written in C. It's small (not more than 1 MiB), with a low memory profile. You can create and play your own playlists!

Kew: Listening to Music in the Linux Terminal

Kew music player running in the terminal

First things go first: Installation

It's straightforward to install Kew because it's available in the repositories of the common Linux Distributions like Arch Linux, Debian, Gentoo., etc.

For Debian and Ubuntu-based distros, use:

sudo apt install kew

You can use an AUR helper for Arch-based distros. Let's you use yay:

sudo yay -S kew

For openSUSE, use zypper:

sudo zypper install kew 

Exploring music with Kew

One of the most interesting and surprising things it's that kew can search in your music directory (usually ~/Music, or you could change it) only with one word:

kew bruce

And you're immediately listening to the Boss!!

Kew: Listening to Music in the Linux Terminal


You can see the album cover while you're listening to it.

You can make a playlist based on the content of a directory (and the others inside it recursively). The playlist can be edited/modified inside Kew in the Playlist view.

You can play the songs from the playlist using:

kew kew.m3u

Direct Functions

Kew provides some direct functions that you can type with kew:

  • <none>: You go straight to the music library.

  • dir <album name>: Play a full directory.

  • song <song name>: Play only a song.

  • list <playlist name>: Play a playlist that you could define.

  • shuffle <album name>|<playlist name>: shuffles the album or playlist

  • artistA:artistB:artistC: shuffles all 3 artists.
    Just to mention some of their fantastic functions. You could get all the commands here.

Views

There are different views for different functions that can be accessed via a function key.

F2 : Current Playlist

Kew: Listening to Music in the Linux Terminal

F3 : Library view

Kew: Listening to Music in the Linux Terminal

F4 : Track View

Kew: Listening to Music in the Linux Terminal

Kew music player running in the terminal

F5 : Search view

Kew: Listening to Music in the Linux Terminal

F6 : Help

Kew: Listening to Music in the Linux Terminal

Press F6 to get the keyboard shortcuts info

Key bindings

If you decided to use Kew regularly, it would be much better to use and remember various keyboard shortcuts. You can surely configure your own.

Press F6 and it will show the key bindings:

  • + (or =), keys to adjust the volume.

  • ←, → or h, l keys to switch tracks.

  • space, p to toggle pause.

  • F2 or Shift + z to show/hide the playlist.

  • F3 or Shift + x to show/hide the library.

  • F4 or Shift + c to show/hide the track view.

  • F5 or Shift + v to search.

  • F6 or Shift + b to show/hide key bindings.

  • u to update the library.

  • v to toggle the spectrum visualizer.

  • i to switch between using your regular color scheme or colors derived from the track cover.

  • b to toggle album covers drawn in ascii or as a normal image.

  • r to repeat the current song.

  • s to shuffle the playlist.

  • a to seek back.

  • d to seek forward.

  • x to save the currently loaded playlist to a m3u file in your music folder.

  • Tab to switch between views.

  • gg go to first song.

  • number + G, g or Enter, go to specific song number in the playlist.

  • g go to last song.

  • . to add current song to kew.m3u (run with "kew .").

  • Esc to quit.

Conclusion

There are several terminal audio players like Cmus, MOC - Music on Console, Musikcube, etc. Kew can be placed in this list of terminal tools.

Written in C, with a small memory blueprint, Kew is worth trying for a terminal dweller.

If you give it a try, do share its experience in the comments.

Author Info

Kew: Listening to Music in the Linux Terminal

Jose Antonio Tenés
A Communication engineer by education, and Linux user by passion. In my spare time, I play chess, do you dare?

by: Sreenath


Installing Arch Linux with BTRFS and Disk Encryption

On our Arch installation video, a viewer requested a tutorial on installing Arch but with BTRFS and with encryption enabled.

And hence this tutorial came into existence.

I am using the official archinstall script. Though a command line tool, this guided installer allows even a moderate system user to enjoy the "greatness" of Arch Linux.

🚧

The method discussed here wipes out the existing operating system(s) from your computer and installs Arch Linux on it. So if you are going to follow this tutorial, make sure that you have backed up your files externally, or else you’ll lose all of them. You have been warned!

Requirements

Here's what I recommend for this tutorial:

  • An x86_64 (i.e. 64 bit) compatible machine

  • Minimum 2 GB of RAM (recommended 4-8 GB, depending upon the desktop environment or window manager you choose)

  • At least 10 GB of free disk space (recommended 20 GB for basic usage with a desktop environment)

  • An active internet connection

  • A USB drive with a minimum 4 GB of storage capacity

  • Familiarity with the Linux command line

Once you have made sure you have all the requirements, let’s install Arch Linux.

Step 1: Download the Arch Linux ISO

Download the ISO from the official website. Both direct download and torrent links are available.

Download Arch Linux

Step 2: Create a live USB of Arch Linux

You will have to create a live USB of Arch Linux from the ISO you just downloaded.

You may use the Etcher GUI tool to create the live USB. It is available for both Windows and Linux.

Installing Arch Linux with BTRFS and Disk Encryption

Etcher Live USB creation

Alternatively, if you are on Linux, you can use the dd command to create a live USB. Replace /path/to/archlinux.iso with the path where you have downloaded the ISO file, and /dev/sdx with your USB drive in the example below. You can get your drive information using lsblk command.

dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync

Basically, choose any live USB creation tool you like.

Step 3: Boot from the live USB

🚧

Do note that in some cases, you may not be able to boot from live USB with secure boot enabled. If that’s the case with you, disable secure boot first.

Once you have created a live USB for Arch Linux, shut down your PC. Plug in your USB and boot your system. While booting, keep pressing F2, F10 or F12 key (depending upon your system) to access UEFI boot settings.

Here, select to boot from USB or removable disk. Once you do that and the system boots, you should see an option like this:

Installing Arch Linux with BTRFS and Disk Encryption

UEFI Boot Screen

Select Arch Linux UEFI (x86_64) option to start the live medium.

📋

Legacy BIOS users should select the x86_64 BIOS option.

Step 4: Connect to Wi-Fi

You need an active internet connection for installing Arch Linux.

If you have wired connection, good. Else, you need to make some effort to connect to your Wi-Fi before starting the archinstall script.

First, in the Arch Linux live prompt, enter the command:

iwctl

This Internet Wireless daemon control is used to enrol Wi-Fi connection to your system. As soon as you enter the command, you can see that the prompt has changed to iwd.

Here, you need to list devices to get the name of your wireless hardware device.

Installing Arch Linux with BTRFS and Disk Encryption

List network devices

In the above screenshot, you can see the name of my Wi-Fi device is wlan0.

Now, use this device to scan available Wi-Fi connections in the vicinity.

station wlan0 scan
station wlan0 get-networks

Installing Arch Linux with BTRFS and Disk Encryption

Connect to a Wi-Fi

This will print the name of the Wi-Fi services available. Note the “Network Name”.

To connect to the network, use the command:

station wlan0 connect "Network Name"

This will ask you to enter the Wi-Fi password. Enter it and you should be now connected to internet.

Exit the iwd prompt using CTRL+D.

You can check if the network is functioning using the ping command:

ping google.com

Installing Arch Linux with BTRFS and Disk Encryption

Ping Google

Step 5: Pacman download settings

Before starting the archinstall script, let's change the download limit of pacman.

Edit the pacman configuration using:

nano /etc/pacman.conf

Here, uncomment the parellelDownload option and set a value according to your internet speed.

If you have a decent internet speed, set the parallel download count to 10.

📋

On my test system, I needed to run pacman -Sy and then pacman -S archlinux-keyring (install Arch Linux keyrings) before starting the installer. Otherwise, the installer crashed with some errors.
You may also need to read carefully what the prompt error says.

Step 6: Start Archinstall script

With the network connection ready, let's start the archinstall script with the command below:

archinstall

This will start the text-based arch installation script.

Installing Arch Linux with BTRFS and Disk Encryption

Archinstall script

Set the installation language

The first setting in the installer is the installation language. This option sets what language is used in the Terminal User Interface.

The latest archinstall provides a percentage value corresponding to each language, that describes how much translation has been completed.

Installing Arch Linux with BTRFS and Disk Encryption

Installation language

I will be going with the default English.

Locale Settings

You should set your locale and keyboard settings. Here, if you are OK with the defaults, you can skip to the next setting.

💡

Some programs like Rofi launcher may not launch if your locale is different from en_US. So, adding en_US as a locale is a good thing to avoid future headaches.

Installing Arch Linux with BTRFS and Disk Encryption

Set keyboard and locale settings

To change a setting, press the enter key to go inside and select individual items.

Installing Arch Linux with BTRFS and Disk Encryption

Inside locale settings

Mirror settings

Press the enter key on the Mirrors in the main menu of archinstall script. This will bring you to the mirror selection section.

Enter the Mirror Region.

Installing Arch Linux with BTRFS and Disk Encryption

Select the Mirror Region option.

This will provide a list of countries. You can select a country near your location for a faster network.

Installing Arch Linux with BTRFS and Disk Encryption

Mirror Countries (Click to expand the image)

💡

Use the "/" key to start a search. TAB key to select/mark an entry. Once multiple entries are marked, use the ENTER key to set those countries as mirrors.

The mirrors from selected countries will be listed. Move to “Back” and click enter.

Installing Arch Linux with BTRFS and Disk Encryption

Country-wise mirror list

Disk Configuration

Now, you need to partition your disk. The archinstall has a neat mechanism to help you here.

On the main menu, select “Disk Partition”. Inside this, select “Partitioning”.

Installing Arch Linux with BTRFS and Disk Encryption

Select Partitioning option

Here, use the option “Use a best-effort default partition layout”.

Installing Arch Linux with BTRFS and Disk Encryption

Best-effort partitioning

In the next dialog, use the TAB key to select your hard disk device and press the ENTER key.

Installing Arch Linux with BTRFS and Disk Encryption

Select Disk

Choose a partition type. Here, I am going with BTRFS partition. You can pick EXT4, a very well-tested file system, or XFS, f2fs etc.

Installing Arch Linux with BTRFS and Disk Encryption

Select BTRFS File System

On the next screen, you will be asked to use a default subvolume structure or not.

Let's say you select “Yes”.

Installing Arch Linux with BTRFS and Disk Encryption

Create Subvolumes True

You will be asked to pick compression or disable copy-on-write. It is advised to select Compression, to enable a Zstd compression.

Installing Arch Linux with BTRFS and Disk Encryption

Use Compression option

This will create a partition for you, with subvolumes for /, /home, /var/log, /var/cache/pacman/pkg, and /.snapshots.

Installing Arch Linux with BTRFS and Disk Encryption

Subvolume listing (Click to expand the image)

📋

Subvolumes are beneficial for users who want a granular control and use features like snapshots extensively.

If you are using a simple system, and not going to use such features, you can choose to avoid the subvolumes.

For this, pick “No” for BTRFS default subvolumes.

Installing Arch Linux with BTRFS and Disk Encryption

Subvolume choice

On the next screen, you should select “Use Compression” option.

Thus, you will get a simple partition for the system.

Installing Arch Linux with BTRFS and Disk Encryption

Simple no-subvolume partition.

Use the "Back" button to go to the installer main menu.

Disk Encryption

🚧

Disk encryption may introduce slight performance delay to the system. If your system is a casual home PC or an alternative system with no critical data, you can ignore the encryption.

Select the Disk Encryption option from the main menu. On the dialog box, select Encryption type and pick LUKS.

This will enable two other fields; Encryption password and Partition.

Fill the fields. Select the partitions that need to be encrypted using the TAB key.

Installing Arch Linux with BTRFS and Disk Encryption

Encryption overview (Click to expand the image)

🚧

Do not forget the encryption password. If you do, you'll lose access to the data on disk and formatting the entire operating system will be the only option for you.

Swap

Swap on zram is enabled by default in the installer. If needed, you can disable it.

Bootloader

By default, it is set to systemd-boot. This is a simple bootloader for those who expect simplicity.

If you require familar functionality, go for GRUB bootloader.

Installing Arch Linux with BTRFS and Disk Encryption

Select Grub Bootloader

Hostname

You can configure hostname here. By default, it is archlinux.

Root password

Next is Root password. Select it using enter key. Then enter and confirm a strong root password.

Installing Arch Linux with BTRFS and Disk Encryption

Root Password Setting

User creation

It is important to create a regular user account other than root account. This is for day-to-day purposes.

On User section, select "Add a user" option.

Installing Arch Linux with BTRFS and Disk Encryption

Click on "Add a user"

Here, enter the username.

Installing Arch Linux with BTRFS and Disk Encryption

Enter username

Now, enter a password.

Installing Arch Linux with BTRFS and Disk Encryption

Password for user

Confirm it by entering again when prompted. You will be asked whether the user a superuser or not.

Make the created user superuser (administrative privileges) by selecting the “Yes” option.

Installing Arch Linux with BTRFS and Disk Encryption

Admin privileges to regular user

Now, use the "Confirm and exit" option.

Installing Arch Linux with BTRFS and Disk Encryption

Exit user creation

Profile (Desktop selection)

The “Profile” field in the installer is where we will set desktop environments.

Select Profile → Type. Here, select the Desktop option.

Installing Arch Linux with BTRFS and Disk Encryption

Select Desktop Option

On the next screen, select a desktop (desktops) using the TAB key and press enter.

🚧

Try to avoid installing multiple heavy desktops in one system. Like KDE Plasma and GNOME in one system is not recommended.

Installing Arch Linux with BTRFS and Disk Encryption

Select GNOME Desktop

💡

You can choose one desktop like GNOME/Plasma and then choose one tiling window manager, making it install two desktop options.

Selecting a desktop and pressing enter will bring you to the driver selection settings.

For the test system, the installer automatically assigned all open-source drivers.

Installing Arch Linux with BTRFS and Disk Encryption

Driver packages

You can enter the “Graphics driver” settings and decide appropriate driver packs.

Installing Arch Linux with BTRFS and Disk Encryption

Available drivers are listed

Normally, you should not be doing anything on the greeter, as it will be automatically selected (GDM for GNOME, SDDM for KDE Plasma etc.)

Audio settings

For Audio settings, you can select Pipewire or pulse audio.

Installing Arch Linux with BTRFS and Disk Encryption

Select Pipewire

Kernel

You can either go with the default Linux kernel or select multiple kernels. Learn more about kernel options in Arch Linux.

The screenshot below shows two kernels selected, linux and linux-lts.

Installing Arch Linux with BTRFS and Disk Encryption

Kernel selection

Network Configuration

In the Network Configuration settings, select "Use NetworkManager" option.

Installing Arch Linux with BTRFS and Disk Encryption

Use NetworkManager

Additional Packages

If you need to install additional packages to your system, you can do it at the installation stage itself.

Press enter key on “Additional package” option in main menu.

Now, just enter the proper name of the packages you want to install, separated with space.

In the screenshot below, packages like firefox, htop, fastfetch, and starship are added.

Installing Arch Linux with BTRFS and Disk Encryption

Specify additional packages

Optional Repositories

You can enable multilib repositories using this setting. Select items using the TAB key and press enter. Learn about various Arch repos here.

Installing Arch Linux with BTRFS and Disk Encryption

Additional Repositories

Timezone

Search and set the timezone based on your location. Asia/Kolkata for Indian Standard Time, US/Central for central timezone etc.

Installing Arch Linux with BTRFS and Disk Encryption

Timezone settings

Automatic Time Sync with NTP will be automatically enabled, and no need to change.

Start the actual install

Once all the settings have been done, you can use the Install option to start the installation procedure.

Installing Arch Linux with BTRFS and Disk Encryption

Use Install button

You will be asked to verify the installation configurations you have set. Once satisfied, enter on “Yes” option.

Installing Arch Linux with BTRFS and Disk Encryption

Confirm installation (Click to expand the image)

The process will be started, and you need to wait for some time to finish all the downloads and installations.

Step 6: Post Installation

Once the archinstall script finishes, it will ask you to chroot into the system for further settings. You can give NO to the question if you have nothing planned to do.

Installing Arch Linux with BTRFS and Disk Encryption

No chroot enter

You can now shut down the system.

shutdown now

Installing Arch Linux with BTRFS and Disk Encryption

Shutdown the system

Once the system is shut down, remove the USB device from the port and boot the system.

This will bring you to the encryption page, if you have enabled encryption. Enter the password you have set.

Installing Arch Linux with BTRFS and Disk Encryption

Enter encryption password

You will reach the login page. Enter the password to log in to your system.

Installing Arch Linux with BTRFS and Disk Encryption

Log in to the system

Enjoy Arch Linux with BTRFS and encrypted drive.

by: Abhishek Kumar


Installing Add-ons and Builds in Kodi

Kodi is a versatile media player that can be customized to fit your needs, and one of the best ways to personalize your experience is by installing a Kodi build.

These builds come pre-configured with skins, addons, and settings that make your Kodi experience even better.

In this guide, I’ll walk you through the steps of installing a Kodi build, using the Diggz Xenon Build as an example. The same method is used for installing add-ons to Kodi.

Whether you're using Kodi on a Raspberry Pi, PC, or even an Android Box, these steps will work across all devices.

Step 1: Enable unknown sources

Before we can install third-party builds, we need to allow Kodi to install from unknown sources. Here's how:

Go to Kodi's Home Screen and click the Settings Cog (top-left corner).

Installing Add-ons and Builds in Kodi

Select System from the options.

Installing Add-ons and Builds in Kodi

Scroll down and choose Add-ons. On the right side, toggle the Unknown Sources option to On. A warning message will pop up; click Yes to confirm.

Installing Add-ons and Builds in Kodi

We’re enabling this because Kodi doesn’t allow third-party sources by default for security reasons, but since we trust the source, we’ll proceed.

Step 2: Add the repository source

Now, we’ll add the source for the Team Crew Repository. This is where the HomeFlix and many other amazing Kodi builds reside.

Go back to the Kodi home screen and open Settings again. Select File Manager.

Installing Add-ons and Builds in Kodi

Click on Add Source.

Installing Add-ons and Builds in Kodi

In the window that appears, click on <None>.

Installing Add-ons and Builds in Kodi

Enter the build URL, in our case: https://team-crew.github.io and click OK.

Installing Add-ons and Builds in Kodi

Name the source with any name you prefer), then click OK.

Installing Add-ons and Builds in Kodi

Step 3: Install the build repository

Now that the source is added, we’ll install the build repository.

Return to the Kodi Settings page and click Add-ons.

Installing Add-ons and Builds in Kodi

a

Choose Install from Zip File.

Installing Add-ons and Builds in Kodi

Select the source you just added.

Installing Add-ons and Builds in Kodi

Click on the zip file named repository.thevrew-X.zip (X will be the version number).

Installing Add-ons and Builds in Kodi

Wait for the notification that says The Crew Repository Add-on Installed.

Installing Add-ons and Builds in Kodi

Step 4: Install the build wizard

The next step is to install the build Wizard, which will allow us to install the specific build that we want.

From the Add-ons menu, click Install from Repository.

Installing Add-ons and Builds in Kodi

Open the Build Repository i.e Crew repo in my case.

Installing Add-ons and Builds in Kodi

Select Program Add-ons.

Installing Add-ons and Builds in Kodi

Click on build wizard i.e. The Crew Wizard

Installing Add-ons and Builds in Kodi

and then select Install.

Installing Add-ons and Builds in Kodi

A prompt will appear asking you to confirm the installation of dependent addons. Click OK.

Installing Add-ons and Builds in Kodi

Wait for the installation to complete. This may take a couple of minutes.

Installing Add-ons and Builds in Kodi

Step 5: Install the actual build

Now we’re ready to install the actual build itself. I like Homeflix because if its familiar interface with Netflix, thus I'll be installing that.

Return to the Kodi home screen and go to Add-ons.

Installing Add-ons and Builds in Kodi

Select Program Add-ons

Installing Add-ons and Builds in Kodi

and click on Chef Wizard

Installing Add-ons and Builds in Kodi

Click on Build Menu.

Installing Add-ons and Builds in Kodi

Find and select your preffered build, I'm selecting Homeflix.

Installing Add-ons and Builds in Kodi

  1. Click Continue and wait for the build to download and install. This may take a few minutes, so be patient.

Installing Add-ons and Builds in Kodi

Once the installation is complete, click OK to force close Kodi.

Step 6: Restart Kodi and Enjoy!

After the installation, simply reopen Kodi, and you’ll be greeted with the HomeFlix Build. The interface will be customized with a sleek new look, and you’ll have access to a range of addons and features.

Installing Add-ons and Builds in Kodi

Conclusion

Personally, I love the Homeflix Build by Team-Crew because it gives me that Netflix-like experience, which I find really comfortable.

It’s clean, visually appealing, and comes with tons of addo-ns pre-installed, including some premium ones like Debrid.

If you’re using premium services, you might need to configure those, but the build itself is a great starting point for anyone looking to get a smooth Kodi experience.

There are plenty of builds out there, each catering to different preferences. Whether you’re into movies, TV shows, live sports, or even gaming, there’s likely a Kodi build that fits your style.

I’ve already listed my favorite Kodi builds in a separate article, so be sure to check that out for more recommendations.

Best Kodi Builds to Spice Up Your Experience in 2025

Pimp your Kodi with a new skin and additional features by using one of the Kodi builds of your preference.

Installing Add-ons and Builds in KodiIt's FOSSAbhishek Kumar

Installing Add-ons and Builds in Kodi

Explore a few options, experiment with different builds, and find the one that enhances your Kodi experience the most.

Now that you’ve got your build installed, sit back, relax, and enjoy a fully customized Kodi setup. Happy streaming!

by: Abhishek Kumar


I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

Since the launch of DeepSeek AI, every tech media outlet has been losing its mind over it. It's been shattering records, breaking benchmarks, and becoming the go-to name in AI innovation.

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

DeepSeek v/s OpenAI benchmark | Source: Brian Roemmele

Recently, I stumbled upon a post on my X feed (don’t judge me, I’m moving to Bluesky soon!) where someone claimed to have run Deepseek on a Raspberry Pi at 200 tokens/second.

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

My head started spinning. "wHaaaTTT?!"

Naturally, I doom-scrolled the entire thread to make sense of it. Turns out, the guy used an AI accelerator module on top of the Pi to hit those numbers.

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

But curiosity is a powerful motivator. Since I didn’t have an AI module lying around, I thought, why not test the raw performance of Deepseek on a plain Raspberry Pi 5? Who's stopping me?

So, for this article, I installed Ollama on my Pi 5 (8 GB model) and downloaded Deepseek model with different parameters(i.e. 1.5B, 7B, 8B, and 14B parameters to be specific).

💡

If you're new or unsure about setting things up, don't worry, we already have a detailed guide on installing Ollama on a Raspberry Pi to help you get started.

Here’s how each one performed:

Deepseek 1.5B

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

This model was snappy. It felt surprisingly responsive and handled paraphrasing tasks with ease. I didn’t encounter any hallucinations, making it a solid choice for day-to-day tasks like summarization and text generation.

Performance stats

To test its capability further, I posed the question: What's the difference between Podman and Docker?

The model gave a decent enough answer, clearly breaking down the differences between the two containerization tools.

It highlighted how Podman is daemonless, while Docker relies on a daemon, and touched on security aspects like rootless operation.

This response took about two minutes, and here’s how the performance data stacked up:

total duration:       1m33.59302487s
load duration:        44.322672ms
prompt eval count:    13 token(s)
prompt eval duration: 985ms
prompt eval rate:     13.20 tokens/s
eval count:           855 token(s)
eval duration:        1m32.562s
eval rate:            9.24 tokens/s

Deepseek 7B

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

The 7B model introduced a fair amount of hallucination. I tried writing a creative prompt asking for three haikus, but it started generating endless text, even asking itself questions!

While amusing, it wasn’t exactly practical. For benchmarking purposes, I simplified my prompts, as seen in the video. Performance-wise, it was slower, but still functional.

Performance stats

To test it further, I asked: What’s the difference between Docker Compose and Docker Run? The response was a blend of accurate and imprecise information.

It correctly explained that Docker Compose is used to manage multi-container applications via a docker-compose.yml file, while Docker Run is typically for running single containers with specific flags.

However, it soon spiraled into asking itself questions like, “But for a single app, say a simple Flask app on a single machine, Docker Run might be sufficient? Or is there another command or method?”

Here’s how the performance data turned out:

total duration:       4m20.665430872s
load duration:        39.565944ms
prompt eval count:    11 token(s)
prompt eval duration: 3.256s
prompt eval rate:     3.38 tokens/s
eval count:           517 token(s)
eval duration:        4m17.368s
eval rate:            2.01 tokens/s

Deepseek 8B

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

This was the wild card. I didn’t expect the 8B model to run at all, considering how resource-hungry these models are. To my surprise, it worked!

The performance was on par with the 7B model, neither fast nor particularly responsive, but hey, running an 8B model on a Raspberry Pi without extra hardware is a win in my book.

Performance stats

I tested it by asking, "Write an HTML boilerplate and CSS boilerplate." The model successfully generated a functional HTML and CSS boilerplate in a single code block, ensuring they were neatly paired.

However, before jumping into the solution, the model explained its approach, what it was going to do and what else could be added.

While this was informative, it felt unnecessary for a straightforward query. If I had crafted the prompt more precisely, the response might have been more direct (i.e. user error).

Here’s the performance breakdown:

total duration:       6m53.350371838s
load duration:        44.410437ms
prompt eval count:    13 token(s)
prompt eval duration: 4.99s
prompt eval rate:     2.61 tokens/s
eval count:           826 token(s)
eval duration:        6m48.314s
eval rate:            2.02 tokens/s

Deepseek 14B ?

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn't 200 tokens/s

Unfortunately, this didn’t work. The 14B model required over 10 GB of RAM, which my 8 GB Pi couldn’t handle. After the success of the 8B model, my hopes were high, but alas, reality struck.

Conclusion

DeepSeek’s raw performance on the Raspberry Pi 5 showcases the growing potential of SBCs for AI workloads.

The 1.5B model is a practical option for lightweight tasks, while the 7B and 8B models demonstrate the Pi’s ability to handle larger workloads, albeit slowly.

I’m excited to test DeepSeek on the ArmSoM AIM7 with its 6 TOPS NPU. Its RK3588 SoC could unlock even better performance, and I’ll cover those results in a future article.

If you’re interested in more of my experiments, check out this article where I ran 9 popular LLMs on the Raspberry Pi 5.

Until then, happy tinkering, and remember: don’t ask AI to write haikus unless you want a never-ending saga. 😉

by: Sreenath


I Feel Like a Hacker Using These Cool Linux Terminal Tools

I found it cool enough to watch someone, often portrayed as a hacker, use the Linux terminal, especially in the movies. What if I try to become one of the super cool hackers from the Hollywood movies? 😎

Now that I'm older, I'm no longer fooled by those movie skits 😌 But, I'm still a kid at heart, and I want others to think that I am a secretive hacker when they see me using the terminal.

To pursue that, I started exploring a list of cool Linux terminal tools that I can use for the job.

If I can feel like a hacker with these tools, you can too! Let's give them a try!

💡

You can use CTRL+C to exit the terminal after running these tools.

1. genact

Do you often feel like all you do in the terminal is run update commands, with nothing impressive to show off? Don’t worry—genact is here for you!

0:00

/1:02

Running genact in a terminalRunning genact in a terminal

This little command will fill package download, network and other entries to your terminal. Those watching will think you are compiling some great programs.

You can install this from the Ubuntu Snap store or grab the prebuilt binary for genact from the official GitHub repository as per your CPU architecture.

If you downloaded the binary, open a terminal in the downloaded directory, and give the file execution permission with the following command:

chmod +x ./genact-file-name

The file name will look like genact-1.4.2-x86_64-unknown-linux-gnu

Next, execute it using:

./genact-file-name

genact

2. Cmatrix

Anyone who has seen The Matrix movie cannot forget the iconic effect of characters raining down the screen. With CMatrix, you can recreate this mesmerizing display right in your terminal.

0:00

/0:09

Cmatrix command running in terminal.

You can install Cmatrix from the official repository of most Linux distributions. For instance, here's the command for Ubuntu-based distributions:

sudo apt install cmatrix

Now, just run it using the command:

cmatrix

For more fun, you can pair it with other fun terminal tools like lolcat, one of the fun ASCII art tools.

3. Hollywood

Hollywood is that command which will make others think that your system has been hacked my someone.

It will burst a huge text and animation effects on your terminal, where regular keyboard entries will do nothing. For a minute, I forgot I had to stop it to continue writing the article, it looked so cool! 😎

To install hollywood on Ubuntu, use the command:

sudo apt install hollywood

Hollywood

4. TEXTREME

Do you want a text editor that will show all types of fancy animation for character entry and deletion?

Textreme is for you.

This is not a regular text editor, where you will code swiftly, but a cool fancy text editor, that gives a festive party vibe while you write something.

You can grab an executable binary from the official website. And, extract the tar file and double-click on the file to start the editor.

TEXTREME

5. No More Secrets

No More secrets will show an encrypt/decrypt effect for everything piped into it. It tries to recreate the famous data decryption effect seen on screen in the 1992 hacker movie Sneakers.

There are no release files for this package. So, you need to compile it from GitHub.

Make sure you have git and essential build tools like make installed. Then use the following commands to proceed:

git clone https://github.com/bartobri/no-more-secrets.git
cd ./no-more-secrets
make nms
make sneakers
sudo make install

This will install two tools, no-more-secrets or nms and sneakers.

Sneakers

Sneakers recreates the movie clip for you. Once the command completes printing encrypted characters, press any key to start the decrypting effect.

No More Secrets

Pipe any text output to this command and see the effect for yourself. If you would rather not press a key to start decryption, use:

cat agatha.txt | nms -a

This will print the contents of the file in encrypted form and then automatically start to decrypt it and show the original content.

You can experiment with it to show different colors as well!

No More Secrets

6. Cool Retro Term

Sometimes the feeling of a hacker or a whiz comes from retro tools. This is one of the super cool terminal emulators that helps achieve what we want here.

You can install the Cool Retro Term terminal emulator application on Ubuntu using the command:

sudo apt install cool-retro-term

Next, open the terminal from your Activities Overview or app menu:

Do not forget to right-click on the terminal and explore the settings. There are more effects waiting!

I Feel Like a Hacker Using These Cool Linux Terminal Tools

Cool Retro Term Settings

Cool Retro Term

7. gping

Did you ever use the Ping command to check whether you have an active internet connection? Or to check whether a site is up and running?

The ping command is just a text command, where you need to look at the values to get the picture. You can do the same, but have some aesthetically pleasing outputs (graph) using gping.

Install GPing on Ubuntu using the command:

sudo apt install gping

0:00

/0:43

Gping command

gping

8. Bpytop

Bpytop is a htop alternative that prints system information neatly. You can use this command to make someone think that you're monitoring super serious aspects of your computer.

To install it, use the command:

sudo apt install bpytop

0:00

/0:30

Bpytop command with options

Bpytop

When it comes to Linux terminal tools, there are endless options from various individual developers.

Here, I have shared the ones that I tried to make myself look like a hacker to anyone who observes me when I use the computer 😄

You can also choose to explore some terminal emulators or system monitoring tools to have fun with:

Top 14 Terminal Emulators for Linux (With Extra Features or Amazing Looks)

Want a terminal that looks cool or has extra features? Here are the best Linux terminal emulators you can get.

I Feel Like a Hacker Using These Cool Linux Terminal ToolsIt's FOSSAnkush Das

I Feel Like a Hacker Using These Cool Linux Terminal Tools

💬 What is your favorite on the list? Do you have some fun tools that I missed listing here? Do share your thoughts in the comments below.

by: Abhishek Kumar


How to Install DeepSeek R1 Locally on Linux

DeepSeek has taken the AI world by storm. While it's convenient to use DeepSeek on their hosted website, we know that there's no place like 127.0.0.1. 😉

How to Install DeepSeek R1 Locally on Linux

Source: The Hacker News

However, with recent events, such as a cyberattack on DeepSeek AI that has halted new user registrations, or DeepSeek AI database exposed, it makes me wonder why not more people choose to run LLMs locally.

Not only does running your AI locally give you full control and better privacy, but it also keeps your data out of someone else’s hands.

In this guide, we'll walk you through setting up DeepSeek R1 on your Linux machine using Ollama as the backend and Open WebUI as the frontend.

Let’s dive in!

📋

The DeepSeek version you will be running on the local system is a striped down version of actual DeepSeek that 'outperformed' ChatGPT. You'll need Nvidia/AMD graphics on your system to run it.

Step 1: Install Ollama

Before we get to DeepSeek itself, we need a way to run Large Language Models (LLMs) efficiently. This is where Ollama comes in.

What is Ollama?

Ollama is a lightweight and powerful platform for running LLMs locally. It simplifies model management, allowing you to download, run, and interact with models with minimal hassle.

The best part? It abstracts away all the complexities, no need to manually configure dependencies or set up virtual environments.

Installing Ollama

The easiest way to install Ollama is by running the following command in your terminal:

curl -fsSL https://ollama.com/install.sh | sh

How to Install DeepSeek R1 Locally on Linux

Once installed, verify the installation:

ollama --version

Now, let's move on to getting DeepSeek running with Ollama.

Step 2: Install and run DeepSeek model

With Ollama installed, pulling and running the DeepSeek model is really simple as running this command:

ollama run deepseek-r1:1.5b

This command downloads the DeepSeek-R1 1.5B model, which is a small yet powerful AI model for text generation, answering questions, and more.

The download may take some time depending on your internet speed, as these models can be quite large.

How to Install DeepSeek R1 Locally on Linux

Once the download is complete, you can interact with it immediately in the terminal:

How to Install DeepSeek R1 Locally on Linux

But let’s be honest, while the terminal is great for quick tests, it’s not the most polished experience. It would be better to use a Web UI with Ollama. While there are many such tools, I prefer Open WebUI.

12 Tools to Provide a Web UI for Ollama

Don’t want to use the CLI for Ollama for interacting with AI models? Fret not, we have some neat Web UI tools that you can use to make it easy!

How to Install DeepSeek R1 Locally on LinuxIt's FOSSAnkush Das

How to Install DeepSeek R1 Locally on Linux

Step 3: Setting up Open WebUI

Open WebUI provides a beautiful and user-friendly interface for chatting with DeepSeek. There are two ways to install Open WebUI:

  • Direct Installation (for those who prefer a traditional setup)

  • Docker Installation (my personal go-to method)

Don't worry, we'll be covering both.

Method 1: Direct installation

If you prefer a traditional installation without Docker, follow these steps to set up Open WebUI manually.

Step 1: Install python & virtual environment

First, ensure you have Python installed along with the venv package for creating an isolated environment.

Run the following command:

sudo apt install python3-venv -y

How to Install DeepSeek R1 Locally on Linux

This installs the required package for managing virtual environments.

Step 2: Create a virtual environment

Next, create a virtual environment inside your home directory:

python3 -m venv ~/open-webui-venv

and then activate the virtual environment we just created:

source ~/open-webui-venv/bin/activate

How to Install DeepSeek R1 Locally on Linux

You'll notice your terminal prompt changes, indicating that you’re inside the virtual environment.

Step 4: Install Open WebUI

With the virtual environment activated, install Open WebUI by running:

pip install open-webui

How to Install DeepSeek R1 Locally on Linux

This downloads and installs Open WebUI along with its dependencies.

Step 5: Run Open WebUI

To start the Open WebUI server, use the following command:

open-webui serve

How to Install DeepSeek R1 Locally on Linux

Once the server starts, you should see output confirming that Open WebUI is running.

Step 6: Access Open WebUI in your browser

Open your web browser and go to: http://localhost:8080

You'll now see the Open WebUI interface, where you can start chatting with DeepSeek AI!

Method 2: Docker installation (Personal favorite)

If you haven't installed Docker yet, no worries! Check out our step-by-step guide on how to install Docker on Linux before proceeding.

Once that's out of the way, let's get Open WebUI up and running with Docker.

Step 1: Pull the Open WebUI docker image

First, download the latest Open WebUI image from Docker Hub:

docker pull ghcr.io/open-webui/open-webui:main

How to Install DeepSeek R1 Locally on Linux

This command ensures you have the most up-to-date version of Open WebUI.

Step 2: Run Open WebUI in a docker container

Now, spin up the Open WebUI container:

docker run -d \
  -p 3000:8080 \
  --add-host=host.docker.internal:host-gateway \
  -v open-webui:/app/backend/data \
  --name open-webui \
  --restart always \
  ghcr.io/open-webui/open-webui:main

Don’t get scared looking at that big, scary command. Here’s what each part of the command actually does:

Command

Explanation

docker run -d

Runs the container in the background (detached mode).

-p 3000:8080

Maps port 8080 inside the container to port 3000 on the host. So, you’ll access Open WebUI at http://localhost:3000.

--add-host=host.docker.internal:host-gateway

Allows the container to talk to the host system, useful when running other services alongside Open WebUI.

-v open-webui:/app/backend/data

Creates a persistent storage volume named open-webui to save chat history and settings.

--name open-webui

Assigns a custom name to the container for easy reference.

--restart always

Ensures the container automatically restarts if your system reboots or if Open WebUI crashes.

ghcr.io/open-webui/open-webui:main

This is the Docker image for Open WebUI, pulled from GitHub’s Container Registry.

How to Install DeepSeek R1 Locally on Linux

Step 3: Access Open WebUI in your browser

Now, open your web browser and navigate to: http://localhost:8080 .You should see Open WebUI's interface, ready to use with DeepSeek!

How to Install DeepSeek R1 Locally on Linux

Once you click on "Create Admin Account," you'll be welcomed by the Open WebUI interface.

Since we haven't added any other models yet, the DeepSeek model we downloaded earlier is already loaded and ready to go.

How to Install DeepSeek R1 Locally on Linux

Just for fun, I decided to test DeepSeek AI with a little challenge. I asked it to: "Write a rhyming poem under 20 words using the words: computer, AI, human, evolution, doom, boom."

And let's just say… the response was a bit scary. 😅

Here's the full poem written by DeepSeek R1:

How to Install DeepSeek R1 Locally on Linux

Conclusion

And there you have it! In just a few simple steps, you’ve got DeepSeek R1 running locally on your Linux machine with Ollama and Open WebUI.

Whether you’ve chosen the Docker route or the traditional installation, the setup process is straightforward, and should work on most Linux distributions.

So, go ahead, challenge DeepSeek to write another quirky poem, or maybe put it to work on something more practical. It’s yours to play with, and the possibilities are endless.

For instance, I recently ran DeepSeek R1 on my Raspberry Pi 5, while it was a bit slow, it still got the job done.

Who knows, maybe your next challenge will be more creative than mine (though, I’ll admit, that poem about "doom" and "boom" was a bit eerie! 😅).

Enjoy your new local AI assistant, and happy experimenting! 🤖

by: Ankush Das


How I am Moving Away From Google's Ecosystem

Google's ecosystem includes several products and services. It is one of the prominent ecosystems on the internet with a dominating market share.

While I believe their products require no introduction, as a formality, I should mention some of them as Gmail, YouTube, Google Chrome, Google Drive, Google Search, Google Photos, and Google Gemini.

Considering I am an Android user, and prioritize my convenience, I have been using Google services for a long time now.

However, I have decided to move away from Google's ecosystem to try out other options. Sure, it is tough to eliminate their presence without affecting my convenience, so the aim is to minimize it.

Before I tell you my strategy to make the move to alternative options, let me tell you why.

Why The Move Away From Google's Ecosystem?

Without a surprise, the first reason for the switch is privacy.

While I can never be anonymous on the internet, I can share fewer details about me and my data with the services I use.

And, Google is the least preferred privacy-friendly choice out there. They get to know a lot of about from the data you store with them. And, it is not illegal, but it is something that I no longer would like to do.

I should mention that I'm not mixing security with privacy here. Google has been good enough to keep my accounts secure, or else I would not have been safely using my Gmail account for such a long time.

Next, I want to give a chance to innovative players in the market. The options may not be necessarily better than Google services, but they have their unique selling points, which could unlock a benefit for me that I never realized.

And, finally, giving open source a better chance.

Now, let me highlight how I exactly plan to move from Google's ecosystem.

📋

There are some affiliate links in the article. Please read our affiliate policy for more details.

First Step: Finding Out The Areas With Alternatives

If you know there are options, it is easy to switch. So, first, I set out to find the type of services which provide me with options.

Some easy ones include:

  • Search engine

  • Email + Calendar

  • Cloud storage

  • AI chatbot

  • Video conference

  • Website analytics

  • Browser

And, here are the ones that are a bit tricky to move away from:

  • Document Suite

  • Photo collection

  • Video sharing platform

  • Maps

I will tackle all of them, but let us focus on the easy ones first.

The Best Google Alternatives For My Use-Case (And Hopefully For You!)

Now that we know what kind of alternatives we need, I just need to narrow down the options that are capable enough.

Type

Service

Alternative(s)

Email

Gmail

ProtonMail, Tuta

Search Engine

Google

DuckDuckGo

Calendar

Google Calendar

Proton

Cloud Storage

Google Drive

pCloud, Proton

AI Chatbot

Gemini

Llama with Ollama

Video Meetings

Google Meet

Jitsi Meet

Website Analytics

Google Analytics

Umami, Fathom

Web Browser

Chrome

Firefox

Documents

Google Docs

Proton Docs, Nextcloud

Password Manager

Chrome's Built In

Bitwarden, Proton Pass

Phone photo Backup

Google Photos

Ente

Yes, I can list countless alternatives, but it is useless if it cannot do half of the things Google services let me do.

The goal is not to aimlessly move away from Google, but pick meaningful alternatives. So, with the above-mentioned categories in mind, I tell you about the best options that I use along with some suggestions for you.

Please note that the alternatives I am using or suggesting may not be an exact replacement of a Google service. They might be good enough for me but perhaps they won't suffice your need or preference. Try them on your own and see if you are comfortable with the alternatives.

Search Engine: DuckDuckGo

How I am Moving Away From Google's Ecosystem

In my opinion, DuckDuckGo is a great alternative to Google search engine that promises to keep your personal activity private while offering additional privacy-focused services.

For instance, I use DuckDuckGo's Privacy Essentials browser extension to get rid of trackers, and to generate free email aliases. I can also integrate the email aliases with Bitwarden. Not to forget, they also have a privacy-friendly AI chatbot providing access to AI models like Gpt-4o mini, and a browser for Windows/macOS.

So, DuckDuckGo's ecosystem makes it an interesting choice for what I need.

📋

You can also try some privacy-focused search engines like Ecosia, Startpage, and searx.

Email + Calendar: Proton Mail

How I am Moving Away From Google's Ecosystem

Proton Mail is an obvious choice here because of its Google-like ecosystem offering. You can also try Tuta for privacy-focused email.

For me, I have been using Proton Mail since its early days. So, it makes sense to stick with it, along with the potential of using Proton's other services (which we will also touch upon as you read on).

Here, the relevant service to use with the email is Proton Calendar:

How I am Moving Away From Google's Ecosystem

I use it for free (personally), and if I want to scale up my requirements, I can upgrade it to a paid plan for more storage, and features like custom email domains.

And, for my work at It's FOSS, we have a visionary (paid) account, so we get more storage, and all the perks of premium Proton services available.

I would say both free and premium options justify their use-cases to replace Gmail and Google Calendar for me.

Cloud Storage

How I am Moving Away From Google's Ecosystem

Considering I already use Proton Mail (and its calendar), it is a no-brainer choice to go with Proton Drive, being an end-to-end encrypted (E2E) option.

You only get 5 GB of space, which is lower than what you get with Google. But, it should be decent if you want to store a couple of important documents.

And, if you want more, and aren't concerned about E2E, you can opt for pCloud, which offers more storage space, and explore other privacy-focused cloud storage services.

Top 10 Best Free Cloud Storage Services for Linux

Which cloud service is the best for Linux? Check out this list of free cloud storage services that you can use in Linux.

How I am Moving Away From Google's EcosystemIt's FOSSAbhishek Prakash

How I am Moving Away From Google's Ecosystem

AI Chatbot

A replacement to Google Gemini? That's easy.

I just set up Ollama to use one of the best open source LLMs and a web UI to easily access it without the terminal.

12 Tools to Provide a Web UI for Ollama

Don’t want to use the CLI for Ollama for interacting with AI models? Fret not, we have some neat Web UI tools that you can use to make it easy!

How I am Moving Away From Google's EcosystemIt's FOSSAnkush Das

How I am Moving Away From Google's Ecosystem

Everything runs locally, I do not have to worry about anything here. Of course, you need a decent system with a mid-range GPU like the RTX 3060 to run the AI models efficiently.

Video Conference

Google Meet is a dominantly used option for all kinds of meetings/interviews, but it is not open source, nor end-to-end encrypted.

How I am Moving Away From Google's Ecosystem

You can opt for Jitsi Meet if you want enhanced security and privacy. It is open source, and end-to-end encrypted. If needed, you can self-host it to meet your custom requirements.

For more options, you can refer to our article as well:

5 Best Open Source Video Conferencing Tools [2024]

Don’t trust the big tech with your data? Try these open source video conferencing tools for online meetings.

How I am Moving Away From Google's EcosystemIt's FOSSAnkush Das

How I am Moving Away From Google's Ecosystem

Website Analytics

Google Analytics is a popular choice among web administrators because it is free, and provides a lot of information about your audience to take better decisions regarding your content, product, and more.

However, there are better (and lighter) Google Analytics alternatives out there that respect the privacy of your visitors/customers, and still give you plenty of useful insights.

The catch is most of them are paid. I understand not everyone can afford to switch to a paid alternative, but you can start with the free ones (or self-host them), and choose to invest in paid options later. Explore all the alternatives here:

8 Best Google Analytics Alternatives You Can Try Today

It is not that complicated to switch away from Google Analytics with these options. You can opt for a free self-hosted one or go for a paid one as per your requirements.

How I am Moving Away From Google's EcosystemLinux HandbookAnkush Das

How I am Moving Away From Google's Ecosystem

Web Browser

Google Chrome holds more than 65% of the market share as per Statista.

Sure, it is one of the most convenient options. However, it does not offer good privacy protection features.

If you want to switch away to get better privacy, you can try Brave, Mullvad, or LibreWolf (a hardened version of Firefox).

Documents, Photos, Videos, and Map

Honestly, there are no easy replacements to this. So, you will have to decide if you would like to adjust, and willing to pay a lot more (in some cases).

Nextcloud Office (a self-hosted replacement to Google Docs)

For instance, you will not get a Google Docs like experience with Nextcloud Office (self-hosted) or CryptPad or Proton Docs, but they are manageable to some extent. So, you need to try them out and see if it fits your requirements.

Next up is tough, a replacement for Google Photos.

How I am Moving Away From Google's Ecosystem

Yes, Ente is an excellent open source privacy-focused option. However, it is way pricier than what Google Photos costs for extra storage, as you get only 5 GB for free. Therefore, if you have numerous photos and videos, it will be an expensive switch.

You can choose to self-host it, and explore other self-hosted Google Photos alternatives. But, of course, you will need to spend some time and money there as well.

Self-hosted Open Source Alternatives to Google Photos

Google Photos can be replaced using these open-source self-hosted photo applications.

How I am Moving Away From Google's EcosystemIt's FOSSAnkush Das

How I am Moving Away From Google's Ecosystem

Finally, we need a replacement for Google Maps?

As much as we could hate Google, I can never object to its usefulness and integration capabilities with every car out there.

You can try open source alternatives like Organic Maps (for Android phones), and OpenStreetMap (web-based). However, it may not give you the same details and experience.

So, choosing a document suite, map, and photo/video platform to replace Google services will be an inconvenient endeavor.

In my case, I have tried to use CryptPad as much as possible. But, other alternatives haven't worked out well for me.

Final Thoughts

With the options mentioned above, I might have reduced my Google-centric usage by 70%, but it is not a 100% yet. I hope to reach that mark some day.

I would love to know about your plans to do the same. Are you on the same boat with me? Have any other plans? Let me know in the comments below!

by: Abhishek Prakash


Getting Started With Linux Terminal

The Linux terminal could be intimidating. The dark screen with just commands to use. It's easy to feel lost.

The thing is that Linux command line is a vast topic. You can manage the entire system using just the commands. I mean that's the role of sysadmins, network engineers and many other jobs.

The aim of this tutorial collection is not to make you job-ready. It intends to give you the starting point of your Linux command line journey. It will give you enough to navigate the terminal and understand a few basic things like reading files and editing them.

Since it's just the beginning, most of the tutorials are in the 'file operation' category. That's where most Linux books and courses begin.

📋

The best way to learn is by doing it yourself. I have written the tutorials in 'hands-on mode' so you can follow the examples on your Linux system. Each chapter in the series contains some sample exercises to practice your learning. Follow, practice and you'll be getting better at Linux command line in no time.

Prerequisite

When you are absolutely new to the terminal, you'll find yourself lost even while reading the tutorials. That's because you may not always understand even the simplest of terms.

The article below will help you with some of that. While some of the tips I shared may be a little advance or not-so-useful for you at this moment, you'll find plenty of useful stuff.

19 Basic But Essential Linux Terminal Tips You Must Know

Learn some small, basic but often ignored things about the terminal. With the small tips, you should be able to use the terminal with slightly more efficiency.

Getting Started With Linux TerminalIt's FOSSAbhishek Prakash

Getting Started With Linux Terminal

What will you learn here?

  • Changing directories: In the first chapter, learn to switch directories (folders) using absolute and relative paths. This way, you can navigate in the Linux command line.

  • Making directories: Now that you know about switching directories, learn about creating new ones.

  • Listing directory content: You are getting a good grasp of the directories. Learn to see inside directories and see what files and subdirectories do they have.

  • Creating files: Enough about directories. Learn to create new files in the Linux command line.

  • Reading files: What's inside the file? Learn to read text files in this chapter.

  • Deleting files and directories: Now that you have learned to create new files and folders, it's time to delete them.

  • Copying files and directories: Keep on with the file operations and learn to copy files and directories in this installment of the terminal basics series.

  • Moving files and directories: Moving file operation is like cut-paste. You can use the same method for renaming files and directories as well.

  • Editing files: As the last major file operation, learn to edit text files in the command line.

  • Getting help: Now that you have learned plenty of the basic Linux command line operation, it's time to know how you can get help in the terminal itself.

Where to go from here?

Now that you are more comfortable with the terminal and know the basic file operations in the command line, you may wonder what comes next.

I will suggest getting a Linux book like How Linux Works. However, you can start with any Linux book you come across. Here are a few Linux books I love.

Best Linux Books For Beginners to Advanced Linux Users

Here are some Linux book recommendations to improve your knowledge. These books cater to the need of beginners and experts and help you master Linux concepts.

Getting Started With Linux TerminalIt's FOSSAbhishek Prakash

Getting Started With Linux Terminal

Don't want to spend money on books yet? No worries! Here are some free Linux ebooks you can download.

20 Best Linux Books You Can Download For Free Legally

Let me share the best resource to learn Linux for free. This is a collection of Linux PDFs that you can download for free to learn Linux.

Getting Started With Linux TerminalIt's FOSSAbhishek Prakash

Getting Started With Linux Terminal

Bash scripting is also an integral part of Linux learning. Even if you don't have to write shell scripts, if you know the basics, you should be able to understand scripts you come across while using Linux.

Learn Bash Scripting For Free With This Tutorial Series

New to bash? Start learning bash scripting with this series in am organized manner. Each chapter also includes sample exercises to practice your learning.

Getting Started With Linux TerminalIt's FOSS

Getting Started With Linux Terminal

There is no limit to learning. It's impossible to know it all. Yet, if you know at least the basics, it helps you in using the system more effectively.

🗨 I hope you like this Linux terminal tutorial series. Do share your feedback in the comments section.

by: Abhishek Prakash

If you are starting to use and learn Linux, remember this:

  • Linux is not magic 🪄

  • It's sudo science 🔬

Okay...sorry... my dad jokes urges get the better of me at times 😁

💬 Let's see what else you get in this edition

  • Cropping a video in VLC (no, seriously)

  • Cloning SD card in Raspberry Pi

  • Modern terminals with modern features

  • And other Linux news, tips, and, of course, memes!

  • This edition of FOSS Weekly is supported by PikaPods.

📰 Linux and Open Source News

Answering the difficult question. Is Linux any better for gaming in 2025?

Is Linux Ready For Mainstream Gaming In 2025?

Linux is quietly gaining ground on Windows in the gaming space. But how well does it actually perform? Here’s what I experienced.

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and MoreIt's FOSS NewsSourav Rudra


🧠 What We’re Thinking About

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

The RSS feed matters more than ever.

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

It's FOSS NewsAbhishek


🧮 Linux Tips, Tutorials and More

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

Here are some modern Linux terminals with not-so-traditional features.

7 Linux Terminals From the Future

Just when I thought the terminals cannot be innovated, there is an influx of modern terminal emulators with interesting new features.

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and MoreIt's FOSSAbhishek Prakash


👷 Maker's and AI Corner

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

The easiest way to back up your Raspberry Pi is by cloning it. Am I right?

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and MoreIt's FOSSAbhishek Prakash


Apps highlight

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

Alright! Obsidian is not open source but it is awesome.

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and MoreIt's FOSSAbhishek Prakash


🛍️ Deal Ending Soon

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

And I know there is Logseq, its open source alternative. Between you and me, we have a tutorial series planned on Logseq, covering its features and tips on using it.FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

15 Linux and DevOps books for just $18 plus your purchase supports Code for America organization. Get them on Humble Bundle.

Humble Tech Book Bundle: Linux from Beginner to Professional by O’Reilly

Learn Linux with ease using this library of coding and programming courses by O’Reilly. Pay what you want & support Code For America.

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More Humble Bundle


📽️ Video I am Creating for You

It's a small topic but often confuses the Arch beginners.

Subscribe to It's FOSS YouTube Channel


🧩 Quiz Time

Test your Linux file permission knowledge by taking this quiz.

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and MoreIt's FOSSAbhishek Prakash


FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

💡 Quick Handy Tip

In Nautilus file manager (GNOME's file explorer), you can use the Shortcut CTRL + S to start a quick "Select Items Matching".

In the dialog box, enter the glob pattern matching, like *.png to select all PNG files, or *.txt to match all txt files.


FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More

🤣 Meme of the Week

I laughed harder than I should have on this meme. If you know Linux Mint, you would laugh too.

And if you are interested, learn the logic behind the codenames of popular distro releases.


FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and More🗓️ Tech Trivia

The first web browser was introduced by Tim Berners-Lee, the creator of the World Wide Web on 26th Feb 1991. It was named WorldWideWeb at first but renamed later to Nexus to avoid the confusion.

🧑‍🤝‍🧑 FOSSverse Corner

FOSSers are discussing the future 🖲️

In 50 years, what will our computers look like?

Imagine, it’s the mid-term future. What will desktop computers look like? What specs will they have?

FOSS Weekly #25.09: Modern Terminals, RSS Matter, Linux Gaming Tested in 2025 and MoreIt's FOSS Communityxahodo


❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄

by: Abhishek Prakash


FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

Pay attention if you use Amazon Kindle. Starting 26th Feb, Amazon won't allow 'Download and transfer via USB' feature anymore. That's the feature people used to download the Kindle books they purchased and convert them to EPUB or PDF to read on other eBook readers like Kobo or their computers. In other words, your Kindle purchases will be restricted completely for Kindle devices.

If you want the control of your Kindle purchased books, take action and download the books before the deadline, remove DRM and convert them to PDF or EPUB.

Use Calibre to Remove DRM from Kindle Books and Convert to PDF

Own your content by removing DRM from Kindle books with the help of open source tool Calibre.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSSSagar Sharma

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

If you have hundreds of Kindle books, there is a script that can be used to download them in bulk. I have not tested it yet.

💬 Let's see what else you get in this edition

  • GNOME's website getting a makeover.

  • Fedora being threatened with a lawsuit.

  • openSUSE making waves with recent moves.

  • And other Linux news, tips, and, of course, memes!

  • This edition of FOSS Weekly is supported by ANY.RUN.

❇️ Sandbox to Rescue

Infosec head at an EU bank shared insights on how they:

  • Prevent hundreds of potential security incidents every year  

  • Stay lean and efficient with limited resources

  • Help the business avoid cyber attacks and protect clients

Must-read for all security professionals operating on a tight budget.

How I Used a Sandbox to Strengthen Bank’s Security

Discover how an investment bank cut threat response time in half and prevented hundreds of security incidents with ANY.RUN’s sandbox.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffANY.RUN's Cybersecurity BlogName

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

📰 Linux and Open Source News

And we gear up for the Ubuntu 25.04 release.

Ubuntu 25.04 Features and Release Date: Here’s What You Need to Know

Here are the best Ubuntu 25.04 features.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

🧠 What We’re Thinking About

The string of dramas in the Linux space don't seem to stop, huh? This time, it is Fedora getting threatened with a lawsuit by OBS Studio.

Open Sue! OBS Studio Threatens Fedora With Legal Action

Another day, another Linux-related drama. This time, it’s OBS Studio and Fedora going at it.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

🧮 Linux Tips, Tutorials and More

👷 Maker's and AI Corner

Sharing my experience of using this unusual device that converts an SBC into a laptop.

CrowView Note: Turning Raspberry Pi into a Laptop, Sort of

A highly crowdfunded device to add a portable workstation to your Raspberry Pi and other SBCs.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSSAbhishek Prakash

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

And a little about running a LLM locally as a coding assistant in VS Code.

Apps highlight

Plank Reloaded is a modern successor to the beloved Plank dock.

Plank Reloaded is a Fresh Take on the Classic Dock Experience

Plank Reloaded aims to refine what the classic Plank dock offered by staying simple but with a modern take on it.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

Who needs a GUI to listen to music when you could use kew?

🛍️ Deal You Would Love

15 Linux and DevOps books for just $18 plus your purchase supports Code for America organization. Get them on Humble Bundle.

Humble Tech Book Bundle: Linux from Beginner to Professional by O’Reilly

Learn Linux with ease using this library of coding and programming courses by O’Reilly. Pay what you want & support Code For America.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffHumble Bundle

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

📽️ Video We are Creating for You

Subscribe to It's FOSS YouTube Channel

🧩 Quiz Time

Call yourself a Fedora buff? Prove it by beating this quiz.

Fedora Trivia Quiz

An enjoyable trivia quiz about Fedora Linux.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSSAbhishek Prakash

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

💡 Quick Handy Tip

With the Extensions List GNOME extension, you can toggle extensions, access their settings, visit its home page, etc. right from the top panel. There is no need to open an additional extension app like Extension Manager.

You can install the Extensions List extension and get started right away.

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

🤣 Meme of the Week

We all have that friend. 😆

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

🗓️ Tech Trivia

February 15, 1999, marked Windows Refund Day, when Linux users staged protests outside Microsoft offices in the San Francisco Bay Area. The event aimed to raise awareness of Microsoft’s practice of bundling Windows with PCs and not offering refunds.

🧑‍🤝‍🧑 FOSSverse Corner

Pro FOSSer Neville shares his experience with Meld. Have you used it before?

Meld is very useful for programming work

I have been editing some R code . I work in a temporary copy, in an R workspace. I have some modifications ready… I want to add them to the new version, but I cant simply copy in the .R files, because my temporary workspace is out of date. So I have to re-edit all the changes into the new version’s files. Here is how You can see my workspace screeen with a terminal for editing the new version on the left. On the right top you see a meld screen, comparing the new version file with the te…

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux StuffIt's FOSS Communitynevj

FOSS Weekly #25.08: Ubuntu 25.04 Features, Conky Setup, Plank Reloaded and More Linux Stuff

❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄

by: Abhishek Prakash


FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

You want to be good at Linux? Start using it. Linux doesn't get easier. You get better at it.

The more you use it as your daily driver, the more you explore it and the more you learn. You won't even realize how much you have improved from day zero 💪

💬 Let's see what else you get in this edition

  • New LibreOffice and ONLYOFFICE releases.

  • DeepSeek making its way into a Linux terminal.

  • New EndeavourOS release

  • And other Linux news, tips and, of course, memes!

  • This edition of FOSS Weekly is supported by Internxt.

❇️ Future-Proof Your Cloud Storage With Post-Quantum Encryption

Get 85% off any Internxt lifetime plan—a one-time payment for private, post-quantum encrypted cloud storage. No subscriptions, no recurring fees.

 Offer valid Feb 10 – Feb 25

Claim This Deal

P.S. There is a 30-day money back policy. Take advantage of it to try it and see if it fits your need.

📰 Linux and Open Source News

KDE Plasma 6.3 arrives with some digital artist-focused changes.

KDE Plasma 6.3 Release Aims to Be the Ultimate Desktop for Digital Artists

KDE Plasma 6.3 has arrived with some pretty exciting changes for digital artists.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

🧠 What We’re Thinking About

After the recent Linux kernel drama, a new policy has been introduced for Rust.

After Recent Kernel Drama, Rust for Linux Policy Put in Place

The recent Linux kernel drama over Rust code has resulted in the creation of a Rust kernel policy.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

🧮 Linux Tips, Tutorials and More

Here are some elementary but necessary tips on using the Linux commands in terminal.

19 Basic But Essential Linux Terminal Tips You Must Know

Learn some small, basic but often ignored things about the terminal. With the small tips, you should be able to use the terminal with slightly more efficiency.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSSAbhishek Prakash

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

👷 Maker's and AI Corner

Ditch the cloud with these five local AI tools for image creation.

Tailscale makes SSHing into your Raspberry Pi simple and secure.

SSH into Raspberry Pi from Outside Home Network Using Tailscale

Learn how you can use Tailscale to secure connect to your Raspberry Pi from outside your home network.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSSAbhishek Kumar

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

Apps highlight

Feeling the winds change? Time to check out a cool open source weather app. 🌤️

Another day, another IDE with AI features. Flexpilot joins the list.

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

Flexpilot is almost like VS Code, only a bit better with built-in AI features. Learn why I created it and how you can use it.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSSCommunity

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

🛍️ Deal You Would Love

15 Linux and DevOps books for just $18 plus your purchase supports Code for America organization. Get them on Humble Bundle.

Humble Tech Book Bundle: Linux from Beginner to Professional by O’Reilly

Learn Linux with ease using this library of coding and programming courses by O’Reilly. Pay what you want & support Code For America.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffHumble Bundle

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

📽️ Video I am Creating for You

Subscribe to It's FOSS YouTube Channel

🧩 Quiz Time

In the most intelligent photo ever taken, do you know all the people?

The Most Intelligent Photo for Curious Minds

Did you know about the individuals in this photo? We help you here.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSSAnkush Das

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

💡 Quick Handy Tip

In KDE Plasma, you can assign a temporary shortcut to a window so that you can bring it to the foreground when needed. For this, right-click on the title bar of the required window and select More Actions → Set Window Shortcut…

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

Now, enter a shortcut by activating the desired keyboard shortcut combination and press OK.

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

And, that's it. Now you can see that the title of the window is modified to show the new temporary window shortcut. Use the keyboard shortcut combination to bring the window to the foreground.

🤣 Meme of the Week

The clock's ticking, Windows 10 users!

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

🗓️ Tech Trivia

On February 10, 1996, IBM’s Deep Blue became the first computer to defeat a reigning world chess champion, Garry Kasparov, in a single game. Kasparov won the match 4–2.

🧑‍🤝‍🧑 FOSSverse Corner

Have you heard of the Haiku Project? It is an open source operating system that focuses on personal computing. Join other FOSSers in the discussion over it!

Haiku Project looks interesting!

So, there’s this other OS, it’s not Linux, nor a *BSD. It’s Haiku. A continuation of BeOS, which was meant as a competitor to Windows, it has quite some interesting features. It boots fast, REALLY fast, and I only tried its live mode in a VM! Yes, it’s rough around the edges (that’s why it hasn’t got a 1.0 yet), but already it looks promising. Its GUI is really responsive and looks and behaves quite different than the Windows or MacOS-esque GUIs, so takes some getting used to. So, what do you…

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux StuffIt's FOSS Communityxahodo

FOSS Weekly #25.07: KDE Plasma 6.3, Arch with BTRFS, Flexpilot IDE, Terminal Tips and More Linux Stuff

❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄

by: Abhishek Prakash


FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

The brilliance and curiosity of some people amazes me. Take this person who managed to run Linux inside a PDF file 🫡

Wow! You Can Now Run Linux Inside a PDF

Yes, you read that right.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

💬 Let's see what else you get in this edition

  • Debian logging off X/Twitter.

  • Installing DeepSeek R1 locally on Linux.

  • Doom running on Android 16's Linux Terminal.

  • And other Linux news, tips and, of course, memes!

  • This edition of FOSS Weekly is supported by PikaPods.

❇️ PikaPods: Enjoy Self-hosting Hassle-free

PikaPods allows you to quickly deploy your favorite open source software. All future updates are handled automatically by PikaPods while you enjoy using the software. PikaPods also share revenue with the original developers of the software.

You get a $5 free credit to try it out and see if you can rely on PikaPods.

PikaPods - Instant Open Source App Hosting

Run the finest Open Source web apps from $1/month, fully managed, no tracking, no ads, full privacy. Self-hosting was never this convenient.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreInstant Open Source App Hosting

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

📰 Linux and Open Source News

GTK set to drop support for X11 and Broadway

GTK Drops X11!

And Broadway Support, Lays the Foundation for New Android Backend

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

🧠 What We’re Thinking About

The Video Game History Foundation is giving people early access to their archive of research materials on video game history.

The VGHF Library opens in early access | Video Game History Foundation

For free. For everyone. Wherever you are.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreVideo Game History FoundationPhil Salvador

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

Development of Serpent OS has slowed down considerably due to funding issues.

🧮 Linux Tips, Tutorials and More

A common issue these days is missing Windows from Grub in a fresh dual boot setup. The fix is easy.

Missing Windows from Grub After Dual Boot? Here’s What You Can Do

Can’t see Windows in Grub after successfully dual booting? That’s because os-prober is disabled. Here’s how to fix it.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSSAbhishek Prakash

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

👷 Maker's and AI Corner

The ArmSoM CM5 is a compact powerhouse that's built around the RK3576 SoC.

ArmSoM CM5: Powerful Replacement for Raspberry Pi CM4

ArmSoM’s Compute Module 5 is an impactful Rockchip device with impressive hardware specs. And yes, it can support Raspberry Pi IO boards.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSSAbhishek Kumar

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

Also, learn to install DeepSeek locally on Linux.

Apps highlight

Bored of Chrome and Firefox? Maybe this browser can help:

I tried this non-Chrome Open-Source Web Browser (And You Should Too!)

It’s time we got to try an open-source browser not based on Chrome. Zen Browser is the hero we didn’t know we needed.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

🛍️ Deal You Would Love

15 Linux and DevOps books for just $18 plus your purchase supports Code for America organization. Get them on Humble Bundle.

Humble Tech Book Bundle: Linux from Beginner to Professional by O’Reilly

Learn Linux with ease using this library of coding and programming courses by O’Reilly. Pay what you want & support Code For America.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreHumble Bundle

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

📽️ Video I am creating for you

Subscribe to It's FOSS YouTube Channel

🧩 Quiz Time

Ready to jog your memory of 90s video games?

90’s Retro Rewind Memory Game

Know the classics? See them and memorize the titles to uncover them as a pair.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSSAnkush Das

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

💡 Quick Handy Tip

In Nautilus File Manager (GNOME Files), you can go up and down directories using Alt + Up/Down Arrow Keys.

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

Similarly, you can use Alt + Left/Right Arrow Key to go back and forward.

🤣 Meme of the Week

The funny little penguin is why some of us switched to Linux! 🐧

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

🗓️ Tech Trivia

Ken Thompson, co-creator of UNIX, was born on February 4, 1943. UNIX was developed at AT&T Bell Labs and took inspiration from Multics, the first multi-user, multitasking OS. It quickly gained popularity among engineers and scientists.

🧑‍🤝‍🧑 FOSSverse Corner

Pro FOSSer, Jimmy, shares an interesting case where a popular animation-focused YouTuber has moved to Linux Mint years after being exploited by Adobe.

Animator James Lee on dropping Adobe and switching to Linux

Hey everyone! A few weeks ago I saw this video by James Lee, and I forgot to post it here. If you aren’t familiar, James Lee is an Australian animator who has been somewhat popular on Youtube. He’s probably most famous for a collaboration he did with streamer Cr1TiKaL, but I have watched several of his videos before and he’s very funny. Also, his animations have a very unique and striking art style that I really like. As a small warning, most of his videos have swear words. It personally does…

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and MoreIt's FOSS CommunityAkatama

FOSS Weekly #25.06: Linux inside PDF file, Missing Windows from Grub, GTK Drops X11 and More

❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄

by: Abhishek Prakash

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreIn the previous newsletter, I shared the new tools directory page proposal and asked for your feedback. From the responses I got, an overwhelming majority of FOSSers liked this idea.

So I'll work on such pages. Since I want them to have some additional features, they will take a little longer. I'll inform you once they are live. Stay tuned 😄

Would you like to see more pages like this?

💬 Let's see what else you get in this edition

  • A new Hyprland release.

  • FSF's new commemorative logo.

  • Microsoft's popular offering being handed a lawsuit.

  • And other Linux news, tips and, of course, memes!

  • This edition of FOSS Weekly is supported by ONLYOFFICE.


ONLYOFFICE PDF Editor: Create, Edit and Collaborate on PDFs on Linux

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreThe ONLYOFFICE suite now offers an updated PDF editor that comes equipped with collaborative PDF editing and other useful features.

Deploy ONLYOFFICE Docs on your Linux server and integrate it with your favourite platform, such as Nextcloud, ownCloud, Drupal, Moodle, WordPress, Redmine and more. Alternatively, you can download the free desktop app for your Linux distro.

Online PDF editor, reader and converter | ONLYOFFICE

View and create PDF files from any text document, spreadsheet or presentation, convert PDF to DOCX online, create fillable PDF forms.

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More
ONLYOFFICE


📰 Linux and Open Source News


🧠 What We’re Thinking About

Facebook is banning the links from many Linux websites.

Everything is Spam on Facebook Unless It is Paid Post (or Actual Spam)

Linux websites are getting ill-treatment by Facebook.

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreIt's FOSS News Abhishek


FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreMicrosoft's popular social media platform, LinkedIn, has been dragged to court over alleged misuse of user data.

🧮 Linux Tips, Tutorials and More


👷 Maker's and AI Corner

Running the impressive DeepSeek R1 AI model on a Raspberry Pi 5 is possible.

I Ran Deepseek R1 on Raspberry Pi 5 and No, it Wasn’t 200 tokens/s

Everyone is seeking Deepseek R1 these days. Is it really as good as everyone claims? Let me share my experiments of running it on a Raspberry Pi.

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreIt's FOSSAbhishek Kumar

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More


Apps highlight

If you like listening to audiobooks, then Cozy can be a great addition to your Linux system.

Cozy: A Super Useful Open Source Audiobook Player for Linux

Cozy makes audiobook listening easy with simple controls and an intuitive interface.

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreIt's FOSS NewsSourav Rudra


FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More

Take your music anywhere with the open source Musify app.


🛍️ Deal You Would Love

15 Linux and DevOps books for just $18 plus your purchase supports Code for America organization. Get them on Humble Bundle.

Humble Tech Book Bundle: Linux from Beginner to Professional by O’Reilly

Learn Linux with ease using this library of coding and programming courses by O’Reilly. Pay what you want & support Code For America.

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreHumble Bundle


FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More


🎟️ Event alert

Foss FEST 2025 is open for registration. Groups of international students can participate in the hackathon and win prizes worth 4,000 euros. It's FOSS is an official media partner for this event.

Foss FEST 2025: International Hackathon

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreOpenSource Science B.V.


FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More

🧩 Quiz Time

Can you beat this Linux Directory Structure puzzle?

Linux Directory Structure: Puzzle

The Linux directory structure is fascinating and an important thing to know about. Take a guess to solve this puzzle!

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreIt's FOSSAnkush Das


FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More


💡 Quick Handy Tip

You can easily open new windows for running apps by either Middle-Clicking or Ctrl+Left-Clicking on the app from the dock. It also works for apps that are not running.

Usually, the apps open in the same workspace, however in multi-monitor setups, this might open new app windows on the other monitor.


🤣 Meme of the Week

Windows got destroyed hard. 🤭

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More


🗓️ Tech Trivia

Apple launched the iPad on April 3, 2010, redefining mobile computing with its touch-based, versatile design. It bridged the gap between smartphones and laptops, setting the standard for tablets. The iPad's success has reshaped the tech world and inspired countless imitators.


🧑‍🤝‍🧑 FOSSverse Corner

Pro FOSSer, Daniel is showcasing his Gentoo virtual machine setup on his laptop.

Gentoo vm install on my laptop

Up early this morning putting the finishing touches to Gentoo VM, to reboot to the CLI!! I have compiled two kernels, a gentoo-source, that I did a manual compile and a gentoo-kernel-dis for backup!! If the gentoo-source kernel works, I will nuke the gentoo-kernel. Just for fun, take a look-see Been awhile since we have had a 8 inch snow!!!

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and MoreIt's FOSS CommunityDaniel_Phillips

FOSS Weekly #25.05: LibreOffice Tip, Launcher Customization, Moving Away from Google and More

❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄

by: Abhishek Prakash


FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff

I would appreciate your feedback on something 'new'. I plan to add pages that let you discover applications based on certain criteria.

It's a work in progress, but feel free to have a look and share your opinion 🙏

Discover Interesting Linux Terminal Tools

Discover a selection of interesting tools and utilities you can use from the (dis)comfort of your terminal.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSSAbhishek Prakash

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff

Would you like to see more pages like this?

💬 Let's see what else you get in this edition

  • Upgrading to Mint 22.1.

  • Flathub introducing a new section.

  • Linux powering NVIDIA's Project DIGITS.

  • And other Linux news, videos and, of course, memes!

  • This edition of FOSS Weekly is supported by ANY.RUN.

ANY.RUN: Business-Ready Interactive Linux Malware Analysis

Don’t let your business be the next target of emerging Linux malware. Strengthen your critical operations with ANY.RUN’s Interactive Sandbox, designed for proactive malware hunting and analysis.

Here’s how it helps businesses stay safe:

  • Quick setup gets you started instantly

  • Real-time detection spots threats fast

  • Unlimited sessions let you analyze all your files

  • Risk-free interaction keeps your system safe

  • Detailed reports boost your defenses

  • User-friendly design simplifies analysis

  • Cloud access works anywhere, anytime.

Protect your business and gain peace of mind with the ultimate malware analysis platform trusted by companies worldwide. Try it for FREE!

Interactive Online Malware Analysis Sandbox - ANY.RUN

Cloud-based malware analysis service. Take your information security to the next level. Analyze suspicious and malicious activities using our innovative tools.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffANY.RUN

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


📰 Linux and Open Source News

Linux kernel 6.13 is a major upgrade with many changes.

Linux Kernel 6.13 Released: Here’s What’s New!

AMD users and old Apple device owners, this is a good release for you!

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


🧠 What We’re Thinking About

This is not how you 'force implement' cloud features.

Bambu Lab Firmware Fiasco Has Caused Rifts In The 3D Printing Community

Bambu Labs has found themselves in a tough spot.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff

Hindenburg Research closing up shop has resulted in an interesting outcome.


🧮 Linux Tips, Tutorials and More

Blend in with the crowd with these jargons.

21 Jargon Every Linux User Should Know

Even if you don’t know Linux well enough, you should know these common terms to blend in ;)

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSSAnkush Das

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


👷 Maker's and AI Corner

Tinker right out of the box with these 7 Raspberry Pi laptops and tablets.

7 Raspberry Pi-Based Laptops and Tablets for Tinkerers

Raspberry-powered laptops and tablets can be the perfect pick for your projects, and portable computing needs. Here’s a list of options.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSSAnkush Das

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff

Tip on monitoring the CPU and GPU temperature of your Raspberry Pi.


📹 Videos we are creating

Take a look at the new features in the new Mint 22.1 Xia.

Subscribe to our YouTube channel


Apps of the Week

Text Pieces is a neat app that acts as a scratchpad for developers.

Text Pieces: A Rust-based Open Source App to Help Devs With Text Transformations

A handy little scratchpad app for developers.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSS NewsSourav Rudra

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff

Managing your finances is crucial, My Expenses makes it simple.


🛍️Deal You Would Love

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff

If you are looking for a career in IT with Linux, Cloud and DevOps, Linux Foundation's training and certifications (LFCS, CKA etc) are on a limited time discount.

Check Linux Foundation Offer


🧩 Quiz Time

This time it's a crossword on Linux terminal emulators.

Linux Terminal Emulators: Crossword

Let’s explore some Linux terminal emulators with this crossword.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSSAnkush Das

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


💡 Quick Handy Tip

In KDE Plasma, you can add some additional effects to the Breeze window decorations using system settings. First, go to System Settings, then go to Colors & ThemesWindow Decorations.

Here, click on the edit icon near the Breeze theme to get more options, where a new settings dialog should appear. You can do appearance changes like title alignment, shadows and outline, button size tweaks, etc.

This might work with other Plasma themes too.

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


🤣 Meme of the Week

Do you also feel the same way?

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


🗓️ Tech Trivia

The Macintosh, launched on January 24, 1984, was the first successful computer with a mouse and graphical user interface. It revolutionized personal computing by making technology more accessible. Its debut was marked by Apple’s iconic “1984” Super Bowl commercial.


🧑‍🤝‍🧑 FOSSverse Corner

Pro FOSSer, Jimmy, shares how he is impressed by Atuin.

Atuin Rocks!: Fuzzy Search for Bash History

Hey everyone, Around mid November I decided to try Atuin: Github link. Atuin replaces your shell history with an SQLite database. You can also set it up so that your fully encrypted history is synchronized between different machines*. Before this, while I used the shell history, I cannot say that I was very good at it. If it had been a long time since I had run the command, I was usually better off just trying to figure out what I ran before by typing it out. Of course, sometimes I would have…

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux StuffIt's FOSS CommunityAkatama

FOSS Weekly #25.04: Must-know Jargon, Kernel 6.13 Released, Mint 22.1, WINE 10 and More Linux Stuff


❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy FOSS 😄

by: Abhishek Prakash


FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More

The holidays are over and so do the Tuxmas Days. 12 days of 12 new features, changes and announcements.

As mentioned on Tuxmas Day 11, It's FOSS Lifetime membership now also gets you lifetime Reader-level membership of Linux Handbook, our other portal focused on sysadmin, DevOps and self-hosting.

If you are one of the 73 people (so far) who opted for the Lifetime plan, you'll get a separate email on Linux Handbook's membership. Meanwhile, please download the 'Linux for DevOps' book for free as part of your Plus membership.

Please note that this combined benefit of free lifetime Linux Handbook Reader level membership (usually costs $18 per year) is only available till 11th January. Thereafter, it will cost $99 and won't include Linux Handbook's membership. Get the additional advantage before the time runs out.

Get It's FOSS Lifetime Membership

💬 Let's see what else you get in this edition

  • SteamOS rolling out

  • Kdenlive working on a new AI-powered feature.

  • Nobara being the first one to introduce a release in 2025.

  • And other Linux news, videos and, of course, memes!


📰 Linux and Open Source News

Did you know there is a dedicated Linux distribution for wiping disks?

ShredOS is a Linux Distro Built to Wipe Your Data

A Linux distro built to help you destroy data. Sounds pretty cool!

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


🧠 What We’re Thinking About

Sourav switched to Proton VPN after going through many other VPN services, here's what he thinks of it:

I Switched to Proton VPN and Here’s What I Honestly Think About It

Proton VPN is an impressive solution. Here’s my experience with it.

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


🧮 Linux Tips, Tutorials and More

And an analogy to explain why there are so many Linux distributions.

What is Linux? Why There are 100’s of Linux OS?

Cannot figure out what is Linux and why there are so many of Linux? This analogy explains things in a simpler manner.

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSSAbhishek Prakash

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


👷 Maker's and AI Corner

Did you know you could run LLMs locally on a Raspberry Pi?

How to Run LLMs Locally on Raspberry Pi Using Ollama AI

Got a Raspberry Pi? How about using it ton run some LLMs using Ollama for your own private AI?

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSSAbhishek Kumar

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


📹 Videos we are watching

Do you really need a media server software?

Subscribe to our YouTube channe


Apps of the Week

Mullvad Browser is a very solid privacy-focused alternative to the likes of Google Chrome.

Mullvad Browser: A Super Privacy-Focused Browser Based on Firefox

Mullvad is Firefox, but enhanced for privacy, pretty interesting take as a cross-platform private browser app.

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More

If you are looking for a change in file management on Android, then you could go for Fossify File Manager.


🧩 Quiz Time

Have some fun finding the logos of distros and open source projects.

Spot All The Logos: Image Puzzle

Let’s see if you can spot the hidden items in the image!

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSSAnkush Das

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


💡 Quick Handy Tip

If you are a Xfce user with a multi-monitor setup, then you can span the Xfce panel across monitors. First, right-click on the panel you want to span and then go to Panel → Panel Preferences. Here, in the Display tab, set Output as Automatic and enable the “Span monitors” checkbox.

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


🤣 Meme of the Week

The pain is real. 😥

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


🗓️ Tech Trivia

Hitachi announced the first 1 MB memory chip on January 6, 1984. At the time, this was a revolutionary leap in storage technology. Today, we carry more memory in our pockets than entire systems from that era!


🧑‍🤝‍🧑 FOSSverse Corner

Pro FOSSer Neville shares his experience with Chimera Linux on virt-manager. This is a detailed write-up, so be prepared for a lengthy read.

Chimera Linux in virt-manager with Plasma | Wayland | APK | Clang/LLVM | musl | dinit | BSD core tools

Chimera Linux in virt-manager with Plasma and Wayland Want to try something really different? Chimera Linux have just released new images as of 4/12/24. Chimera is a new distro build from scratch using Linux kernel 6.12 core tools from FreeBSD apk package system from Alpine Clang/LLVM toolchain Musl C library Gnome and Plasma desktops with Wayland &/or X11 multiple architectures - Intel/AMD, ARM AArch64, POWER, and RISC-V the dinit init system A real mix. One could debate whether it is L…

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and MoreIt's FOSS Communitynevj

FOSS Weekly #25.02: Absolute Linux, ShredOS, AI in Kdenlive, Fossify File Manager and More


❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Keep on enjoying Linux in 2025 🐧

by: Abhishek Prakash


FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

Happy new year 2025 🥳

The Tuxmas Days continue in full swing. Main highlights are:

Tuxmas Day 3 introduced the new commenting system. You'll see it in action when you leave a comment on the website.

Tuxmas Day 4 introduced the lifetime membership option. Instead of a recurring fee, you get the Plus membership forever with a single payment of $76 till 7th January. After that it will be $99. If you wanted to support It's FOSS with Plus membership, this would be the best time and chance 🙏

Tuxmas Day 5 has Linux Terminal and Bash series converted into downloadable PDF eBook.

Follow the entire Tuxmas series here. And your feedback is greatly appreciated.

💬 Let's see what else you get in this edition

  • Serpent OS's alpha release.

  • An open source 3D printer.

  • Rediscovering an operating system.

  • And other Linux news, videos and, of course, memes!


📰 Linux and Open Source News

And finally, open source tools are adding AI features. Better late than never.

Kdenlive is Adding an AI Background Removal Tool

You can easily remove backgrounds with this new tool.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧠 What We’re Thinking About

What's your new year resolution?

My Linux and Open Source Resolutions for 2025

Here’s what I have decided for 2025. What are your resolutions?

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

Ankush's favorite distro of 2024 is one that you might not have expected.

My Favorite Linux Distro for 2024 is Not Ubuntu, Not Mint, It’s This

Revealing my favorite Linux distribution before 2024 ends.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsAnkush Das

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧮 Linux Tips, Tutorials and More

And if you are still unfamiliar with the Linux command line, use the new year motivation and get acquainted with the essentials in this series.

Linux Command Line Introduction [Free Course]

Want to know the basics of the Linux command line? Here’s a tutorial series with a hands-on approach.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSAbhishek Prakash

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


👷 Maker's and AI Corner

Your homelab will thank you for using a dashboard tool to manage it effectively.

Imagine that the genius minds like Ken Thompson, Brian Kernighan and Bjarne Stroustrup collaborated on a new operating system and yet it flopped.

Rediscovering Plan9 from Bell Labs

An OS that was developed by the likes of Rob Pike, Ken Thompson, Brian Kernighan, Bjarne Stroustrup and yet it did not achieve the success.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSBill Dyer

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


📹 Videos we are watching

Subscribe to our YouTube channel, too


Discover handy tools

A dope looking GUI-based system monitor for Linux.

NeoHtop - Modern System Monitor

A beautiful, efficient system monitor built with Rust and Svelte. Monitor processes, CPU, and memory usage in real-time.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreNeoHtopYour Name

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧩 Quiz Time

Call yourself a terminal junkie? Find the wrong paths with this puzzle.

Find The Wrong Path

Spot what’s wrong, and solve the quizzes!

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSAnkush Das

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

If that's too tricky, then you can try your hand at the Essential Ubuntu Shortcuts puzzle.


💡 Quick Handy Tip

In a terminal, you might already know that you can select a word by double-clicking on it.

However, if you hold the Shift key and left-click on another word after that, all the text between the first and last selected text will also be highlighted. No need to manually drag the cursor to select those.

It may not work in all the terminal emulators (i.e. terminal applications).

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🤣 Meme of the Week

Oh, that would be something. 🤌

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🗓️ Tech Trivia

On December 31, 1889, American Bell reorganized and transferred its assets to AT&T to bypass Massachusetts laws. By becoming the parent company, AT&T took control of the Bell System. This move eventually led to AT&T becoming a legalized monopoly in the U.S.


🧑‍🤝‍🧑 FOSSverse Corner

What was your favorite distro in 2024? Join other FOSSers and share yours!

What’s your favourite Linux distro? Why do you use that one?

You have to move with the times. When you retire you may have the luxury of doing it your way. Snaps are like static binaries, but with some extra crud to fit them into the package system. I dont see why they should startup slowly… there must be some clunky scripts involved. A static binary is large, but not so large that it would affect load time. I have one app (keenwrite) that comes as a static binary… it loads quite fast and my machine is rather like your Dell with early corei7 and…

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS Communitynevj

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy using Linux in 2025 🐧

by: Abhishek Prakash
Thu, 02 Jan 2025 06:11:30 GMT

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

Happy new year 2025 🥳

The Tuxmas Days continue in full swing. Main highlights are:

Tuxmas Day 3 introduced the new commenting system. You'll see it in action when you leave a comment on the website.

Tuxmas Day 4 introduced the lifetime membership option. Instead of a recurring fee, you get the Plus membership forever with a single payment of $76 till 7th January. After that it will be $99. If you wanted to support It's FOSS with Plus membership, this would be the best time and chance 🙏

Tuxmas Day 5 has Linux Terminal and Bash series converted into downloadable PDF eBook.

Follow the entire Tuxmas series here. And your feedback is greatly appreciated.

💬 Let's see what else you get in this edition

  • Serpent OS's alpha release.

  • An open source 3D printer.

  • Rediscovering an operating system.

  • And other Linux news, videos and, of course, memes!


📰 Linux and Open Source News

And finally, open source tools are adding AI features. Better late than never.

Kdenlive is Adding an AI Background Removal Tool

You can easily remove backgrounds with this new tool.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧠 What We’re Thinking About

What's your new year resolution?

My Linux and Open Source Resolutions for 2025

Here’s what I have decided for 2025. What are your resolutions?

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

Ankush's favorite distro of 2024 is one that you might not have expected.

My Favorite Linux Distro for 2024 is Not Ubuntu, Not Mint, It’s This

Revealing my favorite Linux distribution before 2024 ends.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsAnkush Das

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧮 Linux Tips, Tutorials and More

And if you are still unfamiliar with the Linux command line, use the new year motivation and get acquainted with the essentials in this series.

Linux Command Line Introduction [Free Course]

Want to know the basics of the Linux command line? Here’s a tutorial series with a hands-on approach.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSAbhishek Prakash

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


👷 Maker's and AI Corner

Your homelab will thank you for using a dashboard tool to manage it effectively.

Imagine that the genius minds like Ken Thompson, Brian Kernighan and Bjarne Stroustrup collaborated on a new operating system and yet it flopped.

Rediscovering Plan9 from Bell Labs

An OS that was developed by the likes of Rob Pike, Ken Thompson, Brian Kernighan, Bjarne Stroustrup and yet it did not achieve the success.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSBill Dyer

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


📹 Videos we are watching

Subscribe to our YouTube channel, too


Discover handy tools

A dope looking GUI-based system monitor for Linux.

NeoHtop - Modern System Monitor

A beautiful, efficient system monitor built with Rust and Svelte. Monitor processes, CPU, and memory usage in real-time.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreNeoHtopYour Name

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧩 Quiz Time

Call yourself a terminal junkie? Find the wrong paths with this puzzle.

Find The Wrong Path

Spot what’s wrong, and solve the quizzes!

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSAnkush Das

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

If that's too tricky, then you can try your hand at the Essential Ubuntu Shortcuts puzzle.


💡 Quick Handy Tip

In a terminal, you might already know that you can select a word by double-clicking on it.

However, if you hold the Shift key and left-click on another word after that, all the text between the first and last selected text will also be highlighted. No need to manually drag the cursor to select those.

It may not work in all the terminal emulators (i.e. terminal applications).

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🤣 Meme of the Week

Oh, that would be something. 🤌

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🗓️ Tech Trivia

On December 31, 1889, American Bell reorganized and transferred its assets to AT&T to bypass Massachusetts laws. By becoming the parent company, AT&T took control of the Bell System. This move eventually led to AT&T becoming a legalized monopoly in the U.S.


🧑‍🤝‍🧑 FOSSverse Corner

What was your favorite distro in 2024? Join other FOSSers and share yours!

What’s your favourite Linux distro? Why do you use that one?

You have to move with the times. When you retire you may have the luxury of doing it your way. Snaps are like static binaries, but with some extra crud to fit them into the package system. I dont see why they should startup slowly… there must be some clunky scripts involved. A static binary is large, but not so large that it would affect load time. I have one app (keenwrite) that comes as a static binary… it loads quite fast and my machine is rather like your Dell with early corei7 and…

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS Communitynevj

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy using Linux in 2025 🐧

by: Abhishek Prakash
Thu, 02 Jan 2025 06:11:30 GMT

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

Happy new year 2025 🥳

The Tuxmas Days continue in full swing. Main highlights are:

Tuxmas Day 3 introduced the new commenting system. You'll see it in action when you leave a comment on the website.

Tuxmas Day 4 introduced the lifetime membership option. Instead of a recurring fee, you get the Plus membership forever with a single payment of $76 till 7th January. After that it will be $99. If you wanted to support It's FOSS with Plus membership, this would be the best time and chance 🙏

Tuxmas Day 5 has Linux Terminal and Bash series converted into downloadable PDF eBook.

Follow the entire Tuxmas series here. And your feedback is greatly appreciated.

💬 Let's see what else you get in this edition

  • Serpent OS's alpha release.

  • An open source 3D printer.

  • Rediscovering an operating system.

  • And other Linux news, videos and, of course, memes!


📰 Linux and Open Source News

And finally, open source tools are adding AI features. Better late than never.

Kdenlive is Adding an AI Background Removal Tool

You can easily remove backgrounds with this new tool.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧠 What We’re Thinking About

What's your new year resolution?

My Linux and Open Source Resolutions for 2025

Here’s what I have decided for 2025. What are your resolutions?

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsSourav Rudra

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

Ankush's favorite distro of 2024 is one that you might not have expected.

My Favorite Linux Distro for 2024 is Not Ubuntu, Not Mint, It’s This

Revealing my favorite Linux distribution before 2024 ends.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS NewsAnkush Das

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧮 Linux Tips, Tutorials and More

And if you are still unfamiliar with the Linux command line, use the new year motivation and get acquainted with the essentials in this series.

Linux Command Line Introduction [Free Course]

Want to know the basics of the Linux command line? Here’s a tutorial series with a hands-on approach.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSAbhishek Prakash

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


👷 Maker's and AI Corner

Your homelab will thank you for using a dashboard tool to manage it effectively.

Imagine that the genius minds like Ken Thompson, Brian Kernighan and Bjarne Stroustrup collaborated on a new operating system and yet it flopped.

Rediscovering Plan9 from Bell Labs

An OS that was developed by the likes of Rob Pike, Ken Thompson, Brian Kernighan, Bjarne Stroustrup and yet it did not achieve the success.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSBill Dyer

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


📹 Videos we are watching

Subscribe to our YouTube channel, too


Discover handy tools

A dope looking GUI-based system monitor for Linux.

NeoHtop - Modern System Monitor

A beautiful, efficient system monitor built with Rust and Svelte. Monitor processes, CPU, and memory usage in real-time.

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreNeoHtopYour Name

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🧩 Quiz Time

Call yourself a terminal junkie? Find the wrong paths with this puzzle.

Find The Wrong Path

Spot what’s wrong, and solve the quizzes!

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSSAnkush Das

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More

If that's too tricky, then you can try your hand at the Essential Ubuntu Shortcuts puzzle.


💡 Quick Handy Tip

In a terminal, you might already know that you can select a word by double-clicking on it.

However, if you hold the Shift key and left-click on another word after that, all the text between the first and last selected text will also be highlighted. No need to manually drag the cursor to select those.

It may not work in all the terminal emulators (i.e. terminal applications).

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🤣 Meme of the Week

Oh, that would be something. 🤌

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


🗓️ Tech Trivia

On December 31, 1889, American Bell reorganized and transferred its assets to AT&T to bypass Massachusetts laws. By becoming the parent company, AT&T took control of the Bell System. This move eventually led to AT&T becoming a legalized monopoly in the U.S.


🧑‍🤝‍🧑 FOSSverse Corner

What was your favorite distro in 2024? Join other FOSSers and share yours!

What’s your favourite Linux distro? Why do you use that one?

You have to move with the times. When you retire you may have the luxury of doing it your way. Snaps are like static binaries, but with some extra crud to fit them into the package system. I dont see why they should startup slowly… there must be some clunky scripts involved. A static binary is large, but not so large that it would affect load time. I have one app (keenwrite) that comes as a static binary… it loads quite fast and my machine is rather like your Dell with early corei7 and…

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and MoreIt's FOSS Communitynevj

FOSS Weekly #25.01: 2 New Free Books, Homelab Dashboards, Plan 9 and More


❤️ With love

Share it with your Linux-using friends and encourage them to subscribe (hint: it's here).

Share the articles in Linux Subreddits and community forums.

Follow us on Google News and stay updated in your News feed.

Opt for It's FOSS Plus membership and support us 🙏

Enjoy using Linux in 2025 🐧

by: Community


Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

As a developer, you've likely seen many IDEs offering AI capabilities - from standalone editors like Cursor, Void editor, and Zed, to extensions like GitHub Copilot, Continue.dev, and Qodo.

If you enjoy tinkering with open source tools and experimenting with different approaches, Flexpilot IDE might be just what you're looking for. 🔍

Why Flexpilot IDE?

Here are my reasons for creating and using Flexpilot:

Bring your own AI Model 🤖: Most developers already have API keys for various LLM services. Today's LLM providers offer generous free tiers - take Google Gemini or Azure OpenAI for instance. Instead of being locked into a specific subscription, Flexpilot lets you use these existing credentials and experiment with different models as you see fit.

Use locally hosted models 🏠: Privacy concerns in AI development are real. With advances in small language models and quantization techniques, running AI locally for simple coding tasks has become increasingly practical. Flexpilot embraces this by supporting locally hosted models, giving you complete control over your code's privacy.

GitHub Copilot Extension marketplace 🔌: The GitHub copilot extension marketplace is one of the largest growing Agentic Marketplace as of today. Flexpilot stands alongside VSCode (i.e., with GitHub copilot) as one of only two platforms that can tap into these extensions, opening up a world of specialized AI capabilities.

Use it inside a browser instantly 🌐: For those of us who spend time exploring GitHub codebases, the default GitHub interface can feel limiting. While vscode.dev and github.dev offer better browsing experiences, they lack AI capabilities. Flexpilot fills this gap through ide.flexpilot.ai, providing a familiar IDE experience enhanced with AI features right in your browser.

Uses native API interfaces : Most VS Code extensions rely on webviews for their chat interfaces, which can create unnecessary overhead. Flexpilot takes a different approach by using native APIs. Think of it like using a native app versus a web app - the difference might seem subtle at first, but the improved performance and additional capabilities become apparent as you use it.

Forked from VS Code 🔱: If you're comfortable with VS Code, you'll feel right at home with Flexpilot. It maintains all the familiar VS Code features while adding seamless AI integration. This means you get the best of both worlds - a trusted development environment with enhanced AI capabilities.

Use Flexpilot IDE in web browser 🌐

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

📋

While the browser version offers a streamlined experience, it operates as a minimal client-only version. Due to browser limitations, it can't access nodejs or native APIs, but it handles code browsing and AI features remarkably well.

One of Flexpilot's standout features is its browser accessibility. Similar to vscode.dev or github.dev, but with integrated AI capabilities, you can start using it immediately without installation. Try it by clicking here to browser Flexpilot IDE's source code.

To browse any GitHub repository, simply modify the URL with your desired repo details:

https://ide.flexpilot.ai/?folder=web-fs://github/<repo-user>/<repo-name>/<branch>

For example, to explore the flexpilot-ide repo's main branch, use:

https://ide.flexpilot.ai/?folder=web-fs://github/flexpilot-ai/flexpilot-ide/main

Use Flexpilot IDE on Linux desktop 🐧 💻

It would be better to use Flexpilot on the desktop to use its full functionality.

Step 1: Download and install

Head over to flexpilot.ai to download the latest Desktop version. You'll find builds for Windows, Mac, and Linux, with options for both x64 and ARM architectures.

For Ubuntu users, the installation process is straightforward. Once you download the appropriate .deb package, Open Terminal in your download directory and run:

For x64 systems:

sudo dpkg -i linux-x64.deb

For ARM systems:

sudo dpkg -i linux-arm64.deb

Then install dependencies:

sudo apt-get install -f

Now you can launch Flexpilot through your Applications menu or by just typing flexpilot in the terminal.

Step 2: Connect to GitHub

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

When you first launch Flexpilot, you'll notice a chat panel on the right side of the screen with a GitHub sign-in option. This connection does more than just authentication - it personalizes your experience with your GitHub profile and automatically configures GitHub Models API access, giving you immediate access to AI features.

Step 3: Configure AI Model (Optional during initial setup)

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

While GitHub Models API is pre-configured after sign-in, you might want to set up additional AI providers. Access the command palette with Ctrl+Shift+P, type Flexpilot: Configure the Language Model Provider, and customize your model settings according to your needs.

Step 4: Start chatting with your codebase using AI 💬

Flexpilot offers several ways to interact with AI throughout your development workflow:

Panel Chat

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

The panel chat sits conveniently on the right side of your screen. Select your preferred model, add context by referencing files or symbols, and start your AI-assisted coding journey.

Inline Chat

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

Need to modify specific code sections? Select the code, press Ctrl+I, and describe your desired changes. The AI will suggest improvements while maintaining context.

Terminal Chat

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

Working in the terminal? Press Ctrl+I while in the integrated terminal to get AI-powered command suggestions and explanations.

Additional Features

Flexpilot's AI integration extends beyond chat interfaces. You'll find AI assistance in code completions, multi-file edits, quick chat, symbol renaming, commit message generation, and more. Check out the official documentation for a complete feature list.

Step 5: Configure completions

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

For those who enjoy predictive code completions, configure any OpenAI API compatible completion model providers through the command palette. Select Flexpilot: Configure the Language Model Provider and choose Edit Completions Config.

💡

Consider trying Codestral API by Mistral - they offer a generous free tier for code completions. Sign up at console.mistral.ai/codestral without requiring payment details.

Extend AI capabilities with Copilot Extensions 🔌

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

Flexpilot's extension system represents a significant step toward the future of AI development. Type @ in your chat to see installed agents and discover new ones through the marketplace. For instance, try the MongoDB extension - just start your questions with @mongodb for database-specific assistance.

This extension ecosystem embodies the vision of collaborative AI agents working together to solve complex development challenges.

Conclusion

Flexpilot IDE brings a fresh perspective to AI-assisted development. While it's still evolving, its unique features and open approach make it a valuable tool for developers who want more control over their AI assistance.

Looking to contribute? Visit GitHub repository and join the community in shaping the future of AI-native development.

Happy coding! 🚀

Flexpilot is an Open Source IDE for AI-Assisted Coding Experience 🚀

Author Info

Mohankumar Ramachandran is a Gen AI enthusiast, turning caffeine into code. Creator of Flexpilot.ai and open source advocate who believes AI is not just hype - it’s the future.

by: Ankush Das


Don't Believe These Myths About Dual Booting Linux and Windows

One of the superpowers of having a computer is dual booting. You can have two operating systems installed on a single computer, and switch between them at boot time.

If you are hearing it for the first time, I suggest you read our article on dual booting to learn more about the impressive capability.

And, the most popular option to dual boot is Linux and Windows. So, you can have the best of both worlds, without any compromises.

However, there are some myths surrounding this combination of dual booting. Here, I tell you the reality of the myths as per my experience with dual booting for more than a decade now.

1. Dual Booting Slows Down Your System

Don't Believe These Myths About Dual Booting Linux and Windows

If you have been dual booting for a long time, you must have come across this thought where some were convinced that dual booting affects your system speed.

Fortunately, it is not true, as you only use one operating system at any given time.

When you are greeted with the grub screen or dual boot screen with the two options, you merely choose what to load up for using your computer. It is either Windows or the Linux distribution.

Don't Believe These Myths About Dual Booting Linux and Windows

Dual boot grub screen of my computer

So, when you do pick one, the other remains dormant, until you reboot and select it.

It never slowed down my system, and it will not slow down yours.

2. Dual Boot is Only About Windows and Linux

Don't Believe These Myths About Dual Booting Linux and Windows

I have a dual boot Windows and Linux setup for my use-case, and that is the most common choice among users.

But, that does not mean that is the only possible choice.

You can choose to have two Linux distributions for dual booting, and you can also have two Linux distributions, and Windows. Something like this:

Don't Believe These Myths About Dual Booting Linux and Windows

Credits: It's FOSS Community

If I can think of a combination, I can do that, it is that simple.

3. You Cannot Dual Boot With Secure Boot

Don't Believe These Myths About Dual Booting Linux and Windows

When it comes to dual booting with secure boot, you are limited to certain Linux distributions that support it (and offer documentation for it). But, it is not impossible.

For instance, Ubuntu supports dual booting with UEFI secure boot enabled.

You can follow our tutorial on installing Ubuntu with Windows to get it done.

4. You Need Two Disks to Dual Boot a System

Don't Believe These Myths About Dual Booting Linux and Windows

While I admit that I utilize two disks for dual booting conveniently, but it is not what everyone does.

Plenty of users have just a single disk, and install the secondary OS to dual boot on a separate partition. Linux distributions have made it easy by offering an "Install Ubuntu alongside Windows Boot Manager" option during installation:

Don't Believe These Myths About Dual Booting Linux and Windows

You just have to be more careful when selecting the path to the bootloader, and the partition to install the OS. But, it is entirely possible.

5. You have to install Linux after Windows

Don't Believe These Myths About Dual Booting Linux and Windows

It is a no-brainer that most Windows users think of installing Linux as a secondary OS. I find it so peaceful for a change, even if you rely on some Windows-specific applications for work.

So, that is the popular norm. But, it also works the other way. If you have Linux installed already, you can install Windows later without any hiccups. Just like we have done here:

How to Install Windows After Ubuntu Linux in Dual Boot

When it comes to dual boot, the general idea is that you have a system preinstalled with Windows and then you install Linux alongside Windows. On the boot, you select whether you want to use Windows or Linux. How about the opposite situation? What if you have a system that

Don't Believe These Myths About Dual Booting Linux and WindowsIt's FOSSAbhishek Prakash

Don't Believe These Myths About Dual Booting Linux and Windows

Or, if you have nothing pre-installed. You can choose to first install Linux, and then Windows, it does not make a difference.

6. You Cannot Go Back to Windows Without Formatting The Entire System

Whether you have Linux or Windows installed currently, you can always go back to your favorite as the only option again.

Let us assume that you want to go back to Windows as your daily driver over your Linux distribution.

In such a case, all you need to do is add Windows as a secondary OS for dual booting and then remove format the partition that housed Linux, that's it:

Beginners Guide to Install Windows With Ubuntu in Dual Boot

This detailed article shows you how to dual boot Ubuntu with Windows 10, step-by-step, accompanied with proper screenshots.

Don't Believe These Myths About Dual Booting Linux and WindowsIt's FOSSAbhishek Prakash

Don't Believe These Myths About Dual Booting Linux and Windows

And, if you added Linux as the secondary OS to boot, and no longer want to use Linux. You can remove that too by simply deleting the partition/disk drive where you installed it. Here's some more information regarding that:

How to Uninstall Ubuntu from Windows Dual Boot Safely

This beginner’s guide shows you how to safely remove Ubuntu or any other Linux distribution from Windows dual boot.

Don't Believe These Myths About Dual Booting Linux and WindowsIt's FOSSAbhishek Prakash

Don't Believe These Myths About Dual Booting Linux and Windows

So, you can always go back to either of the operating systems as per your choice. You do not need to format the entire system to get rid of one.

Wrapping Up

I have been on a dual boot setup with Linux distributions and Windows for years now.

Yes, I might have put myself into trouble, thinking that I almost lost all my data. But, once you learn how to do it correctly, it is an interesting life.

💭 What do you think about dual booting? Let me know your thoughts on the same!

Important Information

Terms of Use Privacy Policy Guidelines We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.