linux
linux.activitypub.awakari.com.ap.brid.gy
linux
@linux.activitypub.awakari.com.ap.brid.gy
Interest: Linux (details)

Awakari _interest_ is an automated account publishing a relevant only content.

Create your own interest in Awakari and […]

[bridged from https://awakari.com/sub-details.html?id=linux on the fediverse by https://fed.brid.gy/ ]
35+ Advance Examples of the Find Command in Linux
The find command is an advanced tool for searching files or directories rigorously in your file system, taking a little longer time than its alternative tools like the locate command. It’s due to its nature of searching a specified file by walking through each file for a match in your system instead of creating a database where all the file paths are indexed. Apart from that, it supports file searching by its name, folder, users, groups, type, size, creation date, modification date, accessed time, owner, and permissions. Table of Contents Toggle * Tutorial Details * Syntax of the Find Command * Finding Files Using the Name in the Present Directory * Finding Files Using the Name in Different Directories * Finding Files Using the Name and Ignoring the Case * Finding Files by Excluding Specific Directory * Finding Directory Using the Name in the Present Directory * Finding HTML Files in the /var/www/html Directory * Finding Files with Specific Permissions * Finding SGID Files * Finding SUID Files * Finding Sticky Bit Files * Finding Files with Read-Only Permission * Finding Files with Writeable Permission * Finding Files with Executable Permission * Replacing All the Files with 777 Permissions to 644 Using Chmod * Replacing All the Files with 777 Permissions to 755 Using Chmod * Find and Remove a Single File * Find and Remove Multiple Files with the Same Extension * Listing All the Empty Files * Listing All the Hidden Files * Finding Single or Multiple Files Owned by the Root * Finding Single or Multiple Files Owned by the User * Finding Single or Multiple Files Based on Group * Find All the Files Modified 1 Hour Back * Find All the Files Modified 10 Days Back * Find All the Files Modified in the Last 10 to 20 Days * Find All the Files Accessed 1 Hour Earlier * Find All the Files Accessed 10 Days Earlier * Find All the Files Accessed in the Last 10 to 20 Days * Find All the Changed Files in the Last 1 Hour * Find All the Changed Files in the Last 24 Hours * Find All the Changed Files in the Last 24 to 48 Hours * Find All the Files Created Yesterday * Finding Files with a 10MB Size * Finding Files Between 10 and 100 MB in Size * Find and Delete 1024MB Sized files * Find and Delete Files with Specific Sizes and Types ## Tutorial Details Description| Find ---|--- Difficulty Level| Moderate Root or Sudo Privileges| No OS Compatibility| Ubuntu, Manjaro, Fedora, etc. Prerequisites| find Internet Required| No ## Syntax of the Find Command The find command takes three arguments: one is the option; the second is the expression (what action to perform on the file); and the third is the path. $ find [OPTION] [EXPRESSION] [PATH] ## Finding Files Using the Name in the Present Directory The following command, without using any flags, will print the file if it’s found in the present directory. $ find file.txt Output: To print the relative path of the file, use the “`-name`” flag with the filename. $ find -name file.txt Output: To print the absolute path of the file, specify the complete path with the filename specified to the “`-name`” flag. $ find /home/linuxtldr/ -name file.txt Output: ## Finding Files Using the Name in Different Directories To search the file in a different location (ex: “`/home/`“), specify the path with your filename using the “`-name`” flag. $ find /home/ -name file.txt Output: Note that it will search for the specified file rigorously in each directory; if you have issues like “Permission denied”, use sudo with the find command. $ sudo find /home/ -name file.txt Output: ## Finding Files Using the Name and Ignoring the Case By default, the find command will search for the specified filename with case-sensitivity, meaning “`file.txt`” and “`File.txt`” are both different, as shown. $ ls *.txt $ find -name file.txt Output: Use the “`-iname`” flag to ignore case-sensitivity while searching the specified file. $ find -iname file.txt Output: * Beginners Guide for Whereis Command in Linux ## Finding Files by Excluding Specific Directory In my home directory, there is a text file (ex: “`file.txt`“), and there is another text file inside the “`~/Documents`” directory. $ ls $ ls Documents/ Output: If you search for the text file using the find command, it will return all the matches. $ find /home/linuxtldr/ -type f -name *.txt Output: However, you can limit the search by excluding the directory in which you have no interest using the “`-not -path`” flag. $ find /home/linuxtldr/ -type f -name *.txt -not -path "/home/linuxtldr/Documents/*" Output: The above command will not look for the text file in the “`~/Documents`” directory. ## Finding Directory Using the Name in the Present Directory To search for the directory, you can specify its name to the find command to search in the present directory. $ find Downloads Output: Use the “`-name`” flag with the directory name to get the relative path of the directory. $ find -name Downloads Output: Specify the complete path where you want to search for the directory with your directory name specified to the “`-name`” flag to get an absolute path. $ find /home/linuxtldr/ -name Downloads Output: However, if you have a file with the same name as the directory you were searching for, it might also appear in the search result as shown. $ touch Documents/Downloads $ find -name Downloads Output: To ignore the file in the result, print only the directory name, then use the “`-type`” flag with the “`d`” value (meaning directory). $ find -type d -name Downloads Output: ## Finding HTML Files in the **/var/www/html** Directory To search for “`index.html`” in the “`/var/www/html`” directory, specify the complete path with the “`-type`” flag with value “`f`” for file and the “`-name`” flag specifying the filename. $ find /var/www/html/ -type f -name index.html Output: Search for all files with the “`.html`” extension in the “`/var/www/html`” directory. $ find /var/www/html/ -type f -name "*.html" Output: * Beginners Guide for Chmod Command in Linux ## Finding Files with Specific Permissions The following is a list of multiple text files, including one with the permission “`777`“. $ ls -l file* Output: To print only the specific text file with “`777`” permissions, use “`-type`” flag to assign the type of the file with the “`-perm`” flag defining the permissions. $ find -type f -perm 777 Output: Use the following command to print all text files without “`777`” permission in your present directory. $ find -type f ! -perm 777 -name "*.txt" The following command will print all the files that do not match the permissions “`777`” in your present directory. $ find -type f ! -perm 777 ## Finding SGID Files The following command will list all the SGID files in the present directory. $ find -perm /2000 ## Finding SUID Files The following command will list all the SUID files in the present directory. $ find -perm /4000 ## Finding Sticky Bit Files The following command will list all the sticky bit files in the present directory. $ find -perm /1000 ## Finding Files with Read-Only Permission The following command will ignore all the files with write and executable permissions in the present directory, listing only read-only files. $ find -type f ! -perm /ugo=wx Output: ## Finding Files with Writeable Permission The following command will ignore all the files with read and executable permissions in the present directory, listing only writeable files. $ find -type f ! -perm /ugo=rx Output: * Beginners Guide for Which Command in Linux ## Finding Files with Executable Permission The following command will ignore all the files with read and write permissions in the present directory, listing only executable files. $ find -type f ! -perm /ugo=rw Output: ## Replacing All the Files with 777 Permissions to 644 Using Chmod The following command will find all the files with permissions “`777`” in the present directory and replace them with “`644`” using the chmod command. $ find -type f -perm 777 -print -exec chmod 644 {} \; ## Replacing All the Files with 777 Permissions to 755 Using Chmod The following command will find all the files with permissions “`777`” in the present directory and replace them with “`755`” permissions. $ find -type f -perm 777 -print -exec chmod 755 {} \; ## Find and Remove a Single File The following command will search for the specified file (ex: “`file.txt`“) in your present directory and remove it from your system using the rm command. $ find -type f -name "file.txt" -exec rm -f {} \; ## Find and Remove Multiple Files with the Same Extension The following command will search for all text files in your present directory and remove them from your system. $ find -type f -name "*.txt" -exec rm -f {} \; ## Listing All the Empty Files The following command will search for empty files (0 bytes) and list them on the screen. $ find -type f -empty * Beginners Guide for ls Command in Linux ## Listing All the Hidden Files The following command will list all the hidden files that start with “`.`” in their filenames in your present directory. $ find -type f -name ".*" * Beginners Guide for Chown Command in Linux ## Finding Single or Multiple Files Owned by the Root The following command will search for the text file (ex: “`file.txt`“) in the “`/`” directory owned by the root user. $ find / -user root -name file.txt Use the following command to list all the files and directories owned by the root user in the “`/`” directory. $ find / -user root ## Finding Single or Multiple Files Owned by the User The following command will search for the text file (ex: “`file.txt`“) in the “`/home/`” directory owned by the “`linuxtldr`” user. $ find /home/ -user linuxtldr -name file.txt Use the following command to list all the files and directories owned by the “`linuxtldr`” user in the “`/home/`” directory. $ find /home/ -user linuxtldr ## Finding Single or Multiple Files Based on Group The following command will search for the text file (ex: “`file.txt`“) in the “`/`” directory that belongs to the “`www`” group. $ find / -group www -name file.txt The following command will list all the files or directories that belong to the “`www`” group in the “`/`” directory. $ find / -group www ## Find All the Files Modified 1 Hour Back The following command will list all the files or directories modified 1 hour ago in the present directory. $ find -mmin -60 ## Find All the Files Modified 10 Days Back The following command will list all the files or directories modified 10 days ago in the present directory. $ find -mtime 10 ## Find All the Files Modified in the Last 10 to 20 Days The following command will list all the files or directories modified between the last 10 and 20 days in the present directory. $ find -mtime +10 -mtime -20 ## Find All the Files Accessed 1 Hour Earlier The following command will list all the files that were accessed 1 hour ago in the present directory. $ find -amin -60 ## Find All the Files Accessed 10 Days Earlier The following command will list all the files that were accessed 10 days ago in the present directory. $ find -atime 10 ## Find All the Files Accessed in the Last 10 to 20 Days The following command will list all the files that were accessed between the last 10 and 20 days in the present directory. $ find -atime +10 -atime -20 ## Find All the Changed Files in the Last 1 Hour The following command will list all the files that have been changed in the last 1 hour in the present directory. $ find -cmin -60 ## Find All the Changed Files in the Last 24 Hours The following command will list all the files that have been changed in the last 24 hours in the present directory. $ find -cmin -1440 ## Find All the Changed Files in the Last 24 to 48 Hours The following command will list all the files that were changed between the last 24 and 48 hours in the present directory. $ find -cmin +1440 -cmin -2880 ## Find All the Files Created Yesterday The command below locates all files modified yesterday in the “`/path/to/search/directory`“: $ find /path/to/search/directory -daystart -mtime 1 Alternatively, you can also use the following command to get more control over the results: $ find /path/to/search/directory -type f -newermt $(date -d yesterday '+%Y-%m-%d') ! -newermt $(date '+%Y-%m-%d') Whereas, * “`/path/to/search/directory`” is the directory from which you wish to start the search. * “`-type f`” ensures that you are exclusively searching for standard/regular files. * “`-newermt $(date -d yesterday '+%Y-%m-%d')`” specifies that the modification time should be more recent than yesterday. * “`! -newermt $(date '+%Y-%m-%d')`” ensures that the modification time does not exceed today’s date. To experiment, create a file with yesterday’s date using the following touch command: 📝 Remember to replace the provided date and time, “`2023-05-24 10:00`“, with yesterday’s date and time when performing this step. $ touch -a -m --date="2023-05-24 10:00" created_yesterday.txt Then find the file mentioned above using the previously provided command. ## Finding Files with a 10MB Size The following command will search for all files over 10 MB in size in your present directory. $ find -size 10M ## Finding Files Between 10 and 100 MB in Size The following command will search for all files between 10 and 100 MB in size in your present directory. $ find -size +10M -size -100M ## Find and Delete 1024MB Sized files The following command will search for all files with a size of 1024 MB in your present directory and then delete them. $ find -type f -size +100M -exec rm -f {} \; ## Find and Delete Files with Specific Sizes and Types The following command will search for all “`.mp4`” files with a size of 50 MB in your present directory and then delete them. $ find -type f -name *.mp3 -size +50M -exec rm {} \; That was the last example. I hope this descriptive list of examples is useful to you. If you have any other examples that need to be added to this list, please let us know in the comment section.
linuxtldr.com
November 15, 2025 at 4:11 AM
Why do so many people know about Linux but not FreeBSD? Is it just a marketing thing or something else? Interesting “follow up” question from the question bot.​ People spreading w Linux Music...

Origin | Interest | Match
Awakari App
awakari.com
November 15, 2025 at 4:07 AM
«Лаборатория Касперского» представила антивирусные решения для Linux Российский разработчик антивирусного ...

#«Лаборатория #Касперского» #представила #антивирусные #решения #для #Linux

Origin | Interest | Match
November 15, 2025 at 3:20 AM
Wine 10.19 – Run Windows Applications on Linux, BSD, Solaris and macOS Article URL: https://gitlab.winehq.org/wine/wine/-/releases/wine-10.19 Comments URL: https://news.ycombinator.com/item?id=45...

Origin | Interest | Match
Wine 10.19 · wine / wine · GitLab
The Wine development release 10.19 is now available. What's new in this release: Support for reparse points. More support for WinRT...
gitlab.winehq.org
November 15, 2025 at 3:25 AM
vulkan-intel 1:25.3.0-1 x86_64 Open-source Vulkan driver for Intel GPUs

#Extra-Testing #x86_64

Origin | Interest | Match
Arch Linux - vulkan-intel 1:25.3.0-1 (x86_64)
archlinux.org
November 15, 2025 at 12:29 AM
Wine 10.19 Released With Reparse Point Support Wine 10.19 introduces reparse point support, new JScript typed arrays, WinRT exception updates, and fixes for 34 bugs.

#Software #Linux #& #Open #Source #News #emulators #games #wine

Origin | Interest | Match
November 14, 2025 at 11:46 PM
Mesa 25.3 Released With Many Open-Source Vulkan Driver Improvements Mesa 25.3 is out tonight as the newest quarterly feature release to this set of (predominantly) OpenGL and Vulkan drivers widely ...

Origin | Interest | Match
Mesa 25.3 Released With Many Open-Source Vulkan Driver Improvements
Mesa 25.3 is out tonight as the newest quarterly feature release to this set of (predominantly) OpenGL and Vulkan drivers widely used across Linux systems
www.phoronix.com
November 14, 2025 at 11:29 PM
xdevs23 pushed pkgbuild-linux-nitrous xdevs23 pushed to master in xdevs23/pkgbuild-linux-nitrous · November 14, 2025 23:18 2 commits to master 74e1435 Update kernel to 6.17.7-1 c7150db Update kern...

Origin | Interest | Match
Comparing aa114e4ab0...11c11932c9 · xdevs23/pkgbuild-linux-nitrous
Contribute to xdevs23/pkgbuild-linux-nitrous development by creating an account on GitHub.
github.com
November 14, 2025 at 11:24 PM
November 14, 2025 at 11:56 PM
Vulkan 1.4.333 Released With New Ray-Tracing Extension Vulkan 1.4.333 is out with a handful of fixes plus two new extensions...

Origin | Interest | Match
Vulkan 1.4.333 Released With New Ray-Tracing Extension
Vulkan 1.4.333 is out with a handful of fixes plus two new extensions...
www.phoronix.com
November 14, 2025 at 8:25 PM
AMD GAIA 0.13 Released With New AI Coding & Docker Agents AMD's GAIA open-source project as a reminder is their "Generrative AI Is Awesome" quick-setup solution for demonstrating ge...

Origin | Interest | Match
AMD GAIA 0.13 Released With New AI Coding & Docker Agents
AMD's GAIA open-source project as a reminder is their 'Generrative AI Is Awesome' quick-setup solution for demonstrating generative AI use on AMD hardware platforms with Ryzen CPUs, Radeon GPUs, and/or Ryzen AI NPUs
www.phoronix.com
November 14, 2025 at 5:24 PM
coreutils 9.9-1 x86_64 The basic file, shell and text manipulation utilities of the GNU operating system

#Core #x86_64

Origin | Interest | Match
Arch Linux - coreutils 9.9-1 (x86_64)
archlinux.org
November 14, 2025 at 5:26 PM
Chrome e Opera contro Microsoft: Edge spinto con premi Rewards Microsoft spinge Edge con premi Rewards, mentre Chrome e Opera denunciano pratiche scorrette che minano la libertà di scelta degli ut...

#News #Browser #Chrome #Microsoft

Origin | Interest | Match
November 14, 2025 at 4:46 PM
ruined my BIOS with efibootmgr shawqisherif wrote: will try to send a private messagr to you , say an hour ? sure

Origin | Interest | Match
ruined my BIOS with efibootmgr / Laptop Issues / Arch Linux Forums
bbs.archlinux.org
November 14, 2025 at 4:52 PM
How to Install Linux on Windows 11: A Step-by-Step Guide Installing Linux on Windows 11 might sound like a tech wizard’s task, but it’s actually quite simple. Using a feature called Windows Sub...

#Articles

Origin | Interest | Match
How to Install Linux on Windows 11: A Step-by-Step Guide
Installing Linux on Windows 11 might sound like a tech wizard’s task, but it’s actually quite simple. Using a feature called Windows Subsystem for Linux (WSL), you can run Linux right alongside your Windows apps. With just a few steps, you’ll have access to a Linux terminal, allowing you to run various Linux applications. Let’s dive into the step-by-step guide below to set everything up. **Contents** hide 1 Step-by-Step Tutorial: How to Install Linux on Windows 11 2 Tips for Installing Linux on Windows 11 3 Frequently Asked Questions 4 Summary of Steps 5 Conclusion ## Step-by-Step Tutorial: How to Install Linux on Windows 11 Before we start, know that these steps will get Linux running on your Windows 11 machine smoothly. You’ll soon be enjoying the best of both worlds! ### Step 1: Enable WSL Open Windows Terminal as an administrator and run the command: `wsl --install`. This command will enable the Windows Subsystem for Linux, and it may take a few minutes to complete. If you haven’t done so already, it will also install a default Linux distribution, like Ubuntu. ### Step 2: Update Your System Restart your computer to ensure all changes take effect. After rebooting, your system will be ready to run Linux. This step ensures that all necessary updates and components are properly installed. ### Step 3: Install a Linux Distribution Open the Microsoft Store, search for your preferred Linux distribution, and click install. You can choose from several distributions like Ubuntu, Debian, or Fedora. Once you make your choice, the installation will proceed automatically. ### Step 4: Launch Linux Click the Start menu, find your installed Linux distribution, and open it. You’ll see a terminal window pop up. This is your Linux environment. The first time you launch it, some additional setup tasks will run. ### Step 5: Set Up Your Linux User Follow the prompts to create a new Linux username and password. This step personalizes your Linux environment. Once you’ve set your credentials, you’ll have full access to your Linux system. After completing these steps, you’ll have a fully functional Linux environment on your Windows 11 machine. From here, you can install software, run scripts, and explore Linux as if it were running on its own machine. ## Tips for Installing Linux on Windows 11 * Make sure your Windows 11 is updated to the latest version to avoid compatibility issues. * Choose a Linux distribution that fits your needs. If you’re just experimenting, Ubuntu is a great starting point. * Use Windows Terminal for a more integrated experience with both Windows and Linux. * Regularly update your Linux distribution to get the latest features and security patches. * Explore the extensive Linux community forums for tips and support. ## Frequently Asked Questions ### What is Windows Subsystem for Linux? WSL is a feature in Windows 11 that allows you to run a Linux distribution alongside your Windows OS. It provides a native Linux experience without the need for a virtual machine. ### Can I run graphical Linux applications? Yes, with WSL 2, you can run graphical Linux applications. You’ll need to install a compatible X server on Windows. ### Is it safe to install Linux on Windows 11? Absolutely! Using WSL is a safe way to run Linux without affecting your Windows installation. It’s designed to coexist without conflict. ### How much space does WSL take? WSL itself is lightweight, but the Linux distribution you choose may require additional space. Make sure you have enough disk space before installing. ### Can I remove Linux if I don’t like it? Yes, you can easily uninstall Linux distributions from the Microsoft Store and disable WSL if you decide it’s not for you. ## Summary of Steps 1. Enable WSL. 2. Update your system. 3. Install a Linux distribution. 4. Launch Linux. 5. Set up your Linux user. ## Conclusion Installing Linux on Windows 11 using WSL is like opening a new door to a world of possibilities. It’s a powerful way to combine the strengths of Windows with the flexibility of Linux. Whether you’re a developer, a hobbyist, or just curious, having both environments at your fingertips can enhance your productivity and learning. If you’re new to Linux, this experience will broaden your horizon. You’ll find a wealth of resources and communities ready to help you explore this new terrain. Don’t hesitate to dive deeper into Linux’s capabilities. The more you explore, the more you’ll discover innovative ways to solve problems and create solutions. Ready to take the plunge? Try installing Linux on Windows 11 today and see how it opens up a new dimension of computing right on your Windows machine. Matt Jacobs Matt Jacobs has been working as an IT consultant for small businesses since receiving his Master’s degree in 2003. While he still does some consulting work, his primary focus now is on creating technology support content for SupportYourTech.com. His work can be found on many websites and focuses on topics such as Microsoft Office, Apple devices, Android devices, Photoshop, and more. ### Share this: * Click to share on X (Opens in new window) X * Click to share on Facebook (Opens in new window) Facebook * ### Related Posts * How to Use Linux Subsystem on Windows 10: A Step-by-Step Guide * How to Install Linux on Windows 11: A Step-by-Step Guide * How to Use Ubuntu on Windows 11: A Step-by-Step Guide for Beginners * How to Use WSL on Windows 10: A Comprehensive Beginner’s Guide * How to Run Linux on Windows 11: A Step-by-Step Guide for Beginners * How to Use Ubuntu in Windows 11: A Beginner’s Guide to Seamless Integration * How to Use Linux in Windows 10: A Comprehensive Guide for Beginners * How to Install WSL on Windows 10: A Step-by-Step Guide for Beginners * How to Install WSL in Windows 10: A Step-by-Step Guide for Beginners * How to Install Linux on Windows 11: A Step-by-Step Guide * How to Install WSL Windows 11: A Step-by-Step Guide for Beginners * How to Install Ubuntu on Windows 11: A Step-by-Step Guide * How to Run WSL on Windows 10: A Step-by-Step Guide for Beginners * How to Install Ubuntu in Windows 11: A Step-by-Step Guide for Beginners * How to Enable WSL in Windows 11: A Step-by-Step Guide for Developers * How to Run Ubuntu on Windows 11: A Comprehensive Step-by-Step Guide * How to Run Ubuntu on Windows 11: A Step-by-Step Guide for Beginners * How to Use WSL on Windows 11: A Comprehensive Guide for Beginners * How to Get Linux on Windows 10: A Step-by-Step Guide for Beginners * How to Install Unix on Windows 10: A Step-by-Step Guide
www.supportyourtech.com
November 14, 2025 at 4:54 PM
3 cool Linux apps you should try this weekend (November 14 - 16) Ever felt like you needed a bigger clipboard? You may, like me, sometimes be unsure what you can install aside from the apps that ap...

#Linux #Apps #& #Web #Apps #Linux #& #macOS #Terminal #Open #Source

Origin | Interest | Match
November 14, 2025 at 4:40 PM
Linux & AI in 2025: Benefits & Risks You Must Know Artificial Intelligence is changing everything — from how we work to how we manage servers — but what does AI actually mean for Linux ...

#All #Things #Open #System #Administration #YouTube #Videos #ai #Linux

Origin | Interest | Match
Linux & AI in 2025: Benefits & Risks You Must Know
www.learnlinux.tv
November 14, 2025 at 4:46 PM
Nouveau Driver To Support Larger Pages & Compression Support With Linux 6.19 While the "Nova" driver continues to be developed as a modern Rust-written, open-source and in-kernel NVIDIA...

Origin | Interest | Match
Nouveau Driver To Support Larger Pages & Compression Support With Linux 6.19
While the "Nova" driver continues to be developed as a modern Rust-written, open-source and in-kernel NVIDIA graphics driver for Linux, for the time being Nouveau is what's working for end-users for those wanting a mainline open-source NVIDIA graphics driver for gaming and other workloads. With Linux 6.19 the Nouveau driver is picking up support for handling larger pages as well as compression support...
www.phoronix.com
November 14, 2025 at 4:16 PM
Heroes of Might and Magic 2 project fheroes2 version 1.1.12 has been released
Dear fans of the fheroes2 project! Today we are excited to announce a new version of the **fheroes2** game engine - 1.1.12! This release brings a huge number of updates and stands as one of the biggest releases in recent years. First of all, we have added an initial implementation of the **Random Map Generator** to the Editor. For now, this feature is marked as in development, as many parts are still unfinished and require further work before it becomes a fully realized part of the project. We plan to refine and expand this feature in future releases. Another major highlight of this release is the introduction of basic iOS support. While this version still requires refinement before reaching a fully stable state, this marks a big step forward. We will continue sharing progress updates as development continues. The team has also made numerous **UI improvements**. We updated the icons for Mass Dispel spell and Resolution option, added new buttons in the File Options dialog, moved the Turn Order bar above the battlefield on high resolutions, and enabled playback for multiple videos - restoring missing campaign animations. You can now switch between towns in the Mage Guild using arrows, delete maps from lists, and have a much larger text limit for all resurrection maps, many-many more changes. This update also includes major improvements to the **AI**. AI heroes can now predict the start of a new week for weekly objects such as Monster Dwellings, Windmills, and Magic Gardens, allowing for smarter task management on the Adventure Map. They also make better pre-battle unit arrangements, improving their chances of success. Additionally, we have introduced new conditions for hero hiring to make the late game more engaging. We hope you enjoy the latest version of the engine, and once again, thank you so much for your continued support of the project! Don't forget, that you also need to grab the data from GOG.com which it requires to run. You can find the fheroes2 project on the GitHub page. Article taken from GamingOnLinux.com.
www.gamingonlinux.com
November 14, 2025 at 3:16 PM
Intel Submits Last Batch Of Xe Driver Feature Updates For Linux 6.19 Intel today sent out their last batch of planned feature patches for their Xe kernel graphics driver of material intended for Li...

Origin | Interest | Match
Intel Submits Last Batch Of Xe Driver Feature Updates For Linux 6.19
www.phoronix.com
November 14, 2025 at 3:08 PM
Valve Is Aiming For Its New Steam Machine To Succeed Where The Original Failed Valve has a new Steam Machine on the way next year, but if you have a long memory, you'll remember that this isn&#...




[Original post on gamespot.com]
Original post on gamespot.com
www.gamespot.com
November 14, 2025 at 3:02 PM