The Linux Rain Linux General/Gaming News, Reviews and Tutorials

Geolocation using Python

By

Geolocating is the process of retrieving location-related information about a given IP address. And yes! It can be done using Python! So, let’s get right to it. The first thing to do is to recover the html code from the webpage using the following: import requests from bs4 import BeautifulSoup u…

Read Article

Python for Data Science: Data Visualization

By

Python can be used to generate from simple to very complex graphs. In this segment, we’ll learn how to graph using python. Simple Linear Plot The first graph we should learn how to plot is a simple linear plot. Suppose that we have the following: import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5…

Read Article

Tor Browser: Anonymity and Beyond

By

There are three types of web: the surface web, the deep web, and the dark web. All that you can access using your Google browser is known as the surface web - it is visible to one and all. The deep web is all information that is under lock and key. In other words, we don’t have access to it. The d…

Read Article

The Linux Rain is Now Brave Verified ✔

By

For those of you using the Brave web browser, I'm pleased to report we (The Linux Rain) are now Brave Verified. What does this mean? Well if you're using Brave, you're probably familiar with Brave Rewards, BAT (Basic Attention Token) and all that entails. So with being a Brave Verified Creator, we…

Read Article

Security Auditing Tools For Ubuntu

By

Malware, where aren’t thou found? Well, even our wonderful Ubuntu can be infected. So what can we do about it? Hope and pray we keep our system safe and better yet, audit our systems regularly for malwares and rootkits. There are 4 system auditors for Ubuntu that we will review - lynis, rkhunter, c…

Read Article

Hacking WPA2 WiFi Networks

By

Whatever the reason for wanting to hack a wifi network, it is nonetheless doable. In fact, it’s become child’s play these days. First, let’s install aircrack-ng sudo apt-get install aircrack-ng Next, we need to put our wireless card into monitor mode. Monitor mode permits you to listen to other wirel…

Read Article

Sending an Email Using Python

By

Ever wanted to send emails using just Python? A few lines of code and you don’t even need to log into your Gmail account to email anyone in the world. In fact, you can do this in your terminal. First, open up your terminal and create a file. I will call mine “emailer.py”. nano emailer.py Now, let’s add som…

Read Article

How to Set systemd to Hibernate Instead of Suspend on Laptop Lid Close

By

In this article we'll be seeing how to change the setting that sets how systemd (the most common init system on GNU/Linux systems) handles lid closes. By default, when you close the lid on your laptop it will in most cases suspend (sleep). What if you wish to for the system to hibernate instead?…

Read Article

SSH Tunneling

By

In SSH tunneling, an encrypted channel is created between an ssh client and an ssh server. Information flowing within the encrypted tunnel is secure and thus cannot be intercepted. This type of service is in particular used when running insecure protocols such as TightVNC. They can also be used to…

Read Article

Rainbow Tables

By

All passwords in all databases are stored as hashes. Even on a Windows machine, when you set your password, the system doesn’t store the password in plain text – it doesn’t keep it in a readable format. It is instead passed through a hashing algorithm that turns the plain text password into a hash. The h…

Read Article

Featured Linux Game Reviews

Review: DiRT Rally

By

Yet another game in the porting lineup by Linux gaming heros, Feral Interactive, DiRT Rally is a racing game focussing on, you guessed it: rallying. As opposed to the largely arcade oriented DiRT Showdown released a few years prior, DiRT Rally is very much intended as a simulation, delivering…

Read Article

Review: Trigger Time

By

Trigger Time is described as a story-driven, top-down 2D shooter with a gravity gun and physics puzzle elements with some cutscenes amongst the 9 levels of shoot-em up action. Amidst a world full of indie top-down shoot-em ups, does Trigger Time deliver enough to be different? Developer: Shephf…

Read Article

Review: Spec Ops: The Line

By

The bullets screamed past Walker's ears, piercing the dust-ridden air. The only consolation of being aware of the sharp hot cracks through the air from the bullets whizzing by meant that he was still alive. His fellow Delta Force teammates, Lugo and Adams, were crouched nearby on the flanks behind…

Read Article

Review: Yooka-Laylee

By

3D platformer and Banjo-Kazooie fans rejoice - Yooka-Laylee recently landed for all major platforms, including our very own Linux. As a spiritual successor to Banjo-Kazooie in particular, and created by a team made up of former Rare members, Yooka-Laylee has been a much hyped and anticipated game.…

Read Article

Review: HITMAN - The Complete First Season

By

Here at TLR we recently had a 'first impressions' look at the newly released game in the Hitman series of video games. It is also the debut for the Hitman series on Linux, thanks to the porting efforts of Linux and Mac porting company, Feral Interactive. Having racked up more hours of gameplay and…

Read Article

Broken Age: Act 2 Review

By

Way back in early 2014 I reviewed Act 1 of Double Fine Productions's quirky and colourful adventure, Broken Age. Somewhere along the line I assume I was either hit in the head or started living under a rock (perhaps both), because it wasn't until very recently that I got to playing Act 2. I gave…

Read Article

Aveyond 4: Shadow of the Mist Linux Game Review

By

Times have been better, for Boyle Wolfbane. He and his unfortunate but loyal minions, along with his most faithful minion and pet, Fang, tried taking over the world like all of the best and most powerful dark lords do. Emphasis on 'tried', because Boyle failed. Miserably. Aveyond 4: Shadow of the…

Read Article

[Game Review] The Journey Down: Chapter Two

By

Released on the 25th of August 2014, The Journey Down: Chapter Two is the second installment in The Journey Down video game series, a classic point and click adventure inspired by much-loved classic titles such as Grim Fandango. Described as having a "Afro-Caribbean vibe", a quick look at…

Read Article

Review: Broken Age - Act 1

By

A sheltered, over-protected, bored boy in space. A girl in a fairytale style land who is thrust into becoming an offering to a giant sea monster. Talking trees. Hippy lumberjacks. Broken Age has it all. And then some. Broken Age (Act 1) is a point and click adventure game officially released by…

Read Article

Review: Euro Truck Simulator 2

By

If you've never been a real sim game buff or especially never played a game the likes of the Euro Truck Simulator series, you would probably snicker or roll your eyes at the idea of driving trucks from A to B, often long hauls, being "fun". But you know, I once thought the same thing!…

Read Article

News Elsewhere

Linux Today

Fd: The Find Command Alternative For Mastering File Search In Linux

Discover Fd, the powerful alternative to the Find command for Linux. Master file searches with speed and efficiency. Explore its features today!

The post Fd: The Find Command Alternative For Mastering File Search In Linux appeared first on Linux Today.

Git 2.49: Faster Packing, Smarter Cloning, and More

Explore Git 2.49's improvements, featuring faster packing and smarter cloning. Upgrade your coding experience with the latest enhancements today.

The post Git 2.49: Faster Packing, Smarter Cloning, and More appeared first on Linux Today.

How to Create Users in Linux using “useradd” Command [10 Practical Examples]

Learn to create users in Linux using the "useradd" command. Our guide features 10 practical examples to simplify user management on your system.

The post How to Create Users in Linux using “useradd” Command [10 Practical Examples] appeared first on Linux Today.

Plasma 6 Finally Lands in Kali Linux 2025.1a

Discover the arrival of Plasma 6 in Kali Linux 2025.1a. Explore new features, enhancements, and how this update elevates your Linux experience.

The post Plasma 6 Finally Lands in Kali Linux 2025.1a appeared first on Linux Today.

How to Get Root Access Inside Vim If You Forgot to Run It with Sudo

Learn the essential steps to access root privileges in Vim after forgetting to use sudo. Our guide provides clear instructions for quick resolution.

The post How to Get Root Access Inside Vim If You Forgot to Run It with Sudo appeared first on Linux Today.

How to Change a User’s Login Shell, Uid, or Home Directory With Usermod

Learn how to effectively change a user's login shell, UID, or home directory using the usermod command. Step-by-step guide for system administrators.

The post How to Change a User’s Login Shell, Uid, or Home Directory With Usermod appeared first on Linux Today.

How to Delete Users in Linux Using the Userdel Command

Learn how to efficiently delete users in Linux using the userdel command. Follow our step-by-step guide for a seamless user management experience.

The post How to Delete Users in Linux Using the Userdel Command appeared first on Linux Today.

Data Migration: Magento 1 to 2 Planned Out

In this tutorial, we will show you the process of data migration from Magento 1 to 2 in a handful of steps.

The post Data Migration: Magento 1 to 2 Planned Out appeared first on Linux Today.

Best Free and Open Source Alternatives to Salesforce Heroku

Salesforce is an American cloud-based software company headquartered in San Francisco, California. that aims to help businesses manage their customer relationships. It’s a popular customer relationship management (CRM) platform.

The post Best Free and Open Source Alternatives to Salesforce Heroku appeared first on Linux Today.

Miracle-WM 0.5 Released with Drag-and-Drop Tiling

Miracle-WM 0.5 Wayland compositor is here with drag-and-drop tiling, floating mini-grids, window animations, and bug fixes.

The post Miracle-WM 0.5 Released with Drag-and-Drop Tiling appeared first on Linux Today.

GamingOnLinux Latest Articles

Immortal Boy looks wild blending a little Undertale and OMORI together

IcarusDev is currently making Immortal Boy a 2.5D turn-based RPG of battles, puzzles and exploration - amid secrets and betrayal. It's a little of…

Free to play toy soldier Battle Royale game Mini Royale enters Early Access

Mini Royale from IndigoBlue is out now in Early Access and free to play, with Native Linux support and Easy Anti-Cheat enabled..Read the full article…

WW2 shooter Squad 44 from Offworld updates Easy Anti-Cheat enabling Linux support

Offworld have updated their tactical WW2 shooter Squad 44 (formerly known as Post Scriptum) to bring a whole bunch of fixes, while do so they've also…

Ubuntu 25.04 (Plucky Puffin) Beta released

Ubuntu 25.04 is due out next month, with a Beta now live for testing so you can see all that's new and report any unexpected issues..Read the full…

Everything to grab from Prime Gaming, March 28th edition for Steam Deck / Linux

Here's the up to date list of games available on Amazon Prime Gaming for March 28th, and what compatibility you can expect for Linux / SteamOS and…

Starsector, one of the best space RPGs that's not on Steam had a huge update

Starsector (formerly "Starfarer") is still in development but it's been a seriously impressive game for years. Not yet on Steam or any…

Amazon Luna and Electronic Arts sign a multi-year deal, as Luna expands into more countries

Seems like Amazon are not ready to give up on their cloud gaming service Luna just yet, with it expanding into more countries and getting a big new…

Ubisoft launches new subsidiary for Assassin’s Creed and other big games with funding from Tencent

Ubisoft are attempting to turn around their fortunes, with the creation of a new subsidiary with funding help from Tencent. This new group will have…

Fixing a Steam Deck OLED bug for the Linux kernel 6.14 release was a major challenge

With the Linux kernel 6.14 out now, I noted in my quick-look overview about a bug that was fixed for the Steam Deck OLED model. Collabora have given…

New Steam Beta brings fixes for child accounts and improvements to download time estimates

Valve released a fresh Steam Beta Client update for March 27th bringing with it a few fixes, plus an interesting seeming improvement for how they…

Two classic Flash strategy games make a return in April with the Warfare Legacy Collection

The Warfare Legacy Collection bundles together two classic Flash strategy games Warfare 1917 and Warfare 1944, upgraded for modern computers and…

Stealth platformer Kiyo puts up a new playtest with improved Linux and Steam Deck support

After requesting Linux testers back in Early 2024, the sneaky stealth platformer Kiyo has a new playtest on Steam for you to try with expanded Linux…

Animated series ENA gets a video game with the free surreal adventure ENA: Dream BBQ

I'll admit I'm pretty uncultured apparently as seeing the release of ENA: Dream BBQ today led me down a bit of a rabbit hole about the ENA animated…

Obsidian RPG Pillars of Eternity got a big update, with a turn-based mode coming later this year

Obsidian Entertainment have revisited the original Pillars of Eternity, with a big bumper patch out now and plans for another big update later this…

Geo Mythica is a charming 8-bit style JRPG quest to save Earth with unique party-based combat

Love classic RPGs? You might want to check out the newly released Geo Mythica, with some great looking 8-bit styled artwork and a quite unique…

Retro sci-fi first-person shooter Viscerafest leaves Early Access in April with a huge update

Fulqrum Publishing and developers Acid Man Games and Fire Plant Games have revealed that Viscerafest, their retro styled sci-fi shooter will see a…

The Beekeeper's Picnic - A Sherlockian Adventure point and click adventure out now

The Beekeeper's Picnic - A Sherlockian Adventure from Afoot Games looks like a wonderful casual point and click adventure for you to relax with. Out…

Minecraft Spring to Life drop is out now with more mob variants and ambient features

Mojang have released the latest update for Minecraft, the Spring to Life drop. This is part of their sped-up release schedule to bring more updates…

Humble launch the Tactical Triumph and Dice and Destiny bundles both with some great games

Humble Bundle just launched two new bundles with Tactical Triumph and Dice and Destiny. Each have some pretty great looking games, so here's…

Dig up planets for skeletons and fight huge guardians in the latest No Man's Sky update

Hello Game have somehow done it again. No Man's Sky has another surprisingly large update available adding in more new content like a fossil beds to…

Triple-i Initiative returns April 10 with over 30 announcements - here's all the devs involved

The Triple-i Initiative have now announced their gaming announcement event is scheduled for April 10th, taking up only 45 minutes of your time..Read…

Monsterpatch is Pokemon meets Stardew Valley from the dev of Littlewood and Kindergarten

Monsterpatch is the latest game from Sean Young developer of Littlewood and Kindergarten, blending together Pokemon and Stardew Valley with a little…

Folkways DLC for the excellent village builder dotAGE released - here's a little interview with the developer

dotAGE is a very unique turn-based village builder that blends in roguelike survival elements. It's one that you should definitely add to your list,…

UnderMine 2 comes to Early Access in July with co-op

UnderMine 2 from developer Thorium is set to enter Early Access on July 22nd, promising to take the best bits of the fun original and expanding on…

Infinity Nikki devs are working on Steam Deck support for the Steam release

While there's no current release date for the Steam release, Infold Games are still working towards it for Infinity Nikki and it seems it may be good…

ChimeraOS Linux 48 brings new hardware support for your handhelds and living room PCs

There's a good few ways of getting Linux on handhelds and living room PCs, with ChimeraOS Linux being one of the great ones. ChimeraOS Linux 48 has…

Junk Store plugin for Steam Deck plans new release as closed-source paid software to run other stores

Junk Store may have failed to get released on Steam as Valve removed their store page, but that hasn't stopped their team working on this…

Neverwinter Nights 2 Enhanced Edition hasn't been announced yet but it just got a Steam Deck Playable rating

We know Neverwinter Nights 2 Enhanced Edition is probably coming, thanks to the previous leak, but it still hasn't actually been announced yet.…

Civilization VII update 1.1.1 adds quick move, lots of UI improvements, a new start position and lots of fixes

Firaxis Games are quickly cleaning up the messy release of Civilization VII, with more new additions now available in patch update 1.1.1..Read the…

Devs of Monster Crown: Sin Eater a 2D monster taming RPG want to 'take that concept to its absolute limits'

Studio Aurum are developing a new 2D monster taming RPG with Monster Crown: Sin Eater, a standalone follow-up to their previous Monster Crown..Read…

Mudborne is a wonderfully chilled sim about catching and breeding frogs out now

Mudborne from ellraiser / TNgineers is a wonderfully charming laid-back casual nature management sim about discovering & breeding frogs.…

HP are interested in making a SteamOS handheld as the Windows experience sucks

If you look at nearly all reviews of handheld gaming PCs that run Windows, the major problem is Windows itself. So with Valve opening up the door to…

Nexus formally announce their open source cross-platform Nexus Mods App: Stardew Valley Preview

The new cross-platform and open source Nexus Mods App is coming along with their team now formally announcing the Stardew Valley Preview. With…

Dawnfolk is a must-play if you like chilled unique city-builders

If you like your games that try to break the mold, you should definitely check out the recently released Dawnfolk from Darenn Keller..Read the full…

Temtem: Swarm recently hit 100K sales and a big update is out now

Temtem: Swarm is another survivor-like bullet heaven, a spin-off from the monster catching Temtem from Crema / GGTech Studios and it appears to have…

Action-shooter Painkiller is set to return in 'fall 2025'

Coming from Anshar Studios and 3D Realms, the classic FPS is back. Painkiller has been announced to release sometime in "fall 2025"..Read…

Starship Troopers: Extermination gets a Steam Deck upgrade

Starship Troopers: Extermination from Offworld just had another major upgrade released, and they're now improving the experience of playing it on…

Stellaris 4.0 'Phoenix' game-changing update due May 5 with the BioGenesis Expansion

Paradox have today launched the new Season 09 Expansion Pass, which initially launches with the Stargazer Species Portrait. There's stuff that's…

Steam's City Builder & Colony Sims Fest is live now

Another chance to grab some discounts! Valve have launched a festival for City Builder & Colony Sims to celebrate everything that might remotely…

Linux kernel 6.14 out late due to 'pure incompetence' - don't get too excited about Linux gaming boosts

Linux kernel 6.14 has arrived today, and a day later than it was expected. As usual there's lots new from supported hardware to various…

Emulation manager EmuDeck 2.4 brings Steam library integration changes, improved BIOS checker

EmuDeck is an all-in-one solution for managing emulation on Linux, SteamOS, Steam Deck and other handhelds and the 2.4 release brings some nice…

The board game Frosthaven is getting a video game with the designer of X-COM

The popular board game Frosthaven is getting adapted into a video game, with Snapshot Games at the helm led by CEO Julian Gollop, known for designing…

Thief-like free and open source game The Dark Mod 2.13 brings better AI vision and new graphical goodies

The Dark Mod is a seriously impressive project giving us a completely free and open source standalone Thief-like stealth game, and The Dark Mod 2.13…

The EchoPatch to modernize F.E.A.R. adds in gamepad support

EchoPatch, a mod patch for the classic and awesome shooter F.E.A.R. has another new release out and this brings gamepad support..Read the full…

Teslagrad devs reveal Knuckle Jet, a jetpunk nose-breaking ricochet action platformer

From Rain Games who made Teslagrad, Girl Genius: Adventures In Castle Heterodyne and World to the West their next game is Knuckle Jet..Read the full…

Minecraft is getting a graphics overhaul with the Vibrant Visuals update

Minecraft Live has been and gone again and this time there was some pretty big news. Vibrant Visuals was announced as a future major upgrade, which…

Noclip are doing a 4-part documentary on Dwarf Fortress with part 1 up now

With filming that's been going on and off for three years, Noclip are doing a 4-part documentary series on Dwarf Fortress. The first episode is now…

Wine 10.4 continues work on Bluetooth driver and more Vulkan video decoder support in WineD3D

Wine 10.4 is out now as the latest development release of the Windows compatibility layer, bringing new features and assorted bug fixes..Read the…

Get a whole lot of EARTH DEFENSE FORCE in this Humble Bundle

On top of the recently launched Humble Heroines Bundle, we also have the just launched EARTH DEFENSE FORCE Collection..Read the full article on…

The Humble Heroines Bundle returns with some great games for Women's History Month

Another chance to pick up some quality games! The Humble Heroines Bundle returns with a different set of great games for Women's History Month…