Kiev downplays Putin-Trump summit
Kiev downplays Putin-Trump summit
The two leaders can’t make any deals on Ukraine without it, Vladimir Zelensky has claimedRT
White House to host UFC fight night on 4 July
White House to host UFC fight night on 4 July
The fight is set to be part of a series of events commemorating the 250th anniversary of the founding of the United States.Christal Hayes and Jake Lapham (BBC News)
OneXPlayer Super X: New AMD Strix Halo gaming handheld teased with convertible design
OneXPlayer Super X: New AMD Strix Halo gaming handheld teased with convertible design
The OneXPlayer Super X has been officially teased. Sticking with a similar design to the other X-series devices, it's a convertible gaming handheld but with the AMD Ryzen AI Max+ 395, which brings the powerful Radeon 8060S iGPU.Abid Ahsan Shanto (Notebookcheck)
Technology reshared this.
Are distros really different or is it more about preference?
I've been working and testing to switch my main PC (used for work like audio recording, music, and general multimedia) and have been playing with Ubuntu Studio on my laptop. Loving it so far but I keep seeing people talk about CachyOS, Bazzite, or the new Debian Trixie.
I'm having trouble finding what's really different about all these distros aside from how they look or slight changes in how they do things (I know Ubuntu Studio has a low latency kernel which seems important for what I need to do). Is there a big difference? Like, if I go with Ubuntu Studio am I gonna end up wiping everything and installing CachyOS or Bazzite or something in a month because it's better? Or are all these distros basically the same thing with a different look and feel and as long as I choose one that gets regular updates, it doesn't matter fundamentally?
I'm trying to grasp the Linux concept but being a Windows user my whole life I'm struggling to 'get it'. Instead of trying to understand in the contex of Windows or Mac, is a better comparison Apple/Android? Like iPhones would be similar to both Mac and Windows (you don't get to choose much) and Android would be Linux (I know it's built on it haha) and it's really just a bunch of different options to do the same thing?
like this
Debian +openbox is Mighty
This is not a tutorial. This is a way.
Debian +OpenBox is (a) the way. My system is a lenovo p53s laptop; nvidia remains unused because I only play Nexuiz, if I do. Yesterday I had a couple minutes so I downloaded a new trixie netinstaller iso and burn'd it to a usb stick, to which I booted into immediately, for the installing.
You can simply hold the enter key down and proceed through the installer and be magically booted into debian, if you like. Don't do that, though, that's crazy, and, I'm lying. Change these: networking, partitions, software. Networking is no big deal to mess with, or not, I use ethernet, so, I use a static local IP, therefore I don't allow the installer to auto-negotiate anything. Only occasionally do I use wifi, I act accordingly when I need it. Let it auto if you like, it's cool.
Root is allowed, absolutely.
I have a separate /home partition and I like it that way - do the same, smile later when it hits you. I have an nvme drive and I use ext4, with discard and noatime, for the root partition and xfs for /home, with noatime. ANd when the installer gets to (tasksel) the software part of the show, I uncheck everything other than typical system stuff, near the bottom. Do the same.
Installing debian is simple, clean, and fast. Upon rebooting there is nothing but a prompt if you do it this way, which, is the correct way. Let's build-up the sexy real quick.
I log in as root and install sudo and aptitude, which I have not added to kevin, for reasons. Then, still as root, I: visudo, and add my user beneath the existing root user down the file:
me ALL=(ALL:ALL) NOPASSWD:ALL
Then I log out of root and in as me to run the kevin bash script which installs the stuff I need to maintain penultimate level boredom. I run it like: sudo kevin.sh - Here's the guts to kevin, probably with some redundancy:
#!/bin/bash
# check root
[ "$(id -u)" -ne 0 ] && { echo "Must run as root" 1>&2; exit 1; }
# Install packages
echo -e "\e[1mInstalling packages...\e[0m"
[ "$(find /var/cache/apt/pkgcache.bin -mtime 0 2>/dev/null)" ] || apt-get update
apt-get -y install xorg openbox lxpanel thunar thunar-archive-plugin intel-microcode claws-mail polkitd xinit intel-media-va-driver-non-free va-driver-all
apt-get -y install curl feh bat lsd diodon nvtop unclutter numlockx wget whois mesa-utils mesa-va-drivers mpg123 alsa-utils ffmpeg bc jq libnotify-bin mc lshw lsof ncal ncdu inxi psmisc s-tui sed cpufetch dfc sysstat tar unzip zip x11-xserver-utils htop apt-utils at upower pwgen usbutils vnstat xpdf oxygencursors gpicview jpegoptim libimage-exiftool-perl
apt-get -y install tango-icon-theme keepassxc dbus-x11 lxappearance obsession scrot gvfs-backends arandr menu menu-xdg pnmixer bogofilter bleachbit gifsicle
apt-get -y install geany geany-plugins claws-mail-bogofilter lynx alacritty claws-mail-fancy-plugin claws-mail-pgpmime claws-mail-tools claws-mail-pgpinline claws-mail-vcalendar-plugin
apt-get -y install rsync fastfetch cpufetch cbatticon xscreensaver gpicview xscreensaver-gl xscreensaver-gl-extra fd-find libxml2-utils starship pulseaudio
apt-get -y install meld mintstick ips seahorse tldr mpv net-tools neverputt gnome-characters gparted pkexec xclip gsimplecal
apt-get -y install hwinfo iftop imagemagick acpi lm-sensors python3-pexpect pwgen s-tui sensible-utils catfish iotop pithos
apt-get -y install xdg-user-dirs-gtk xdg-utils xdotool unzip usbutils util-linux vym yelp zenity zip silversearcher-ag galternatives
apt-get -y install planner libreoffice libreoffice-gtk3 xfce4-screenshooter smartmontools gimp obsidian-icon-theme orage gmrun synaptic yad zim bashtop grc duf
I have a smoke as kevin does its thing. I arrive back at the prompt, system installed.
I do more:
sudo update-alternatives --install /usr/bin/x-file-manager x-file-manager /usr/bin/thunar 210
sudo update-alternatives --install /usr/bin/x-text-editor x-text-editor /usr/bin/subl 210
sudo update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/bin/alacritty 210
I might use kitty instead, which is usual
sudo dpkg-reconfigure tzdata
I have saved stuff:
sudo cp -R .local/share/fonts/* /usr/share/fonts/
sudo cp -R .local/share/themes/* /usr/share/themes/
sudo cp -R .local/share/icons/Dracula/ /usr/share/icons/
curl -s 'https://liquorix.net/install-liquorix.sh' | sudo bash
echo "vm.dirty_background_ratio=20" | sudo tee -a /etc/sysctl.conf
echo "vm.dirty_ratio=60" | sudo tee -a /etc/sysctl.conf
I might change swappiness, too
put the following in /etc/fstab:
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
tmpfs /var/spool tmpfs defaults,noatime,mode=1777 0 0
tmpfs /var/tmp tmpfs defaults,noatime,mode=1777 0 0
tmpfs /var/log tmpfs defaults,noatime,mode=1777 0 0
I like the following 3 proggys so:
sublime text:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo tee /etc/apt/keyrings/sublimehq-pub.asc > /dev/null
echo -e 'Types: deb\nURIs: https://download.sublimetext.com//nSuites: apt/stable/\nSigned-By: /etc/apt/keyrings/sublimehq-pub.asc' | sudo tee /etc/apt/sources.list.d/sublime-text.sources
Then, update and install sublime.
firefox:
wget -q https://packages.mozilla.org/apt/repo-signing-key.gpg -O- | sudo tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null
update, install firefox
phoenix:
echo 'deb https://download.opensuse.org/repositories/home:/celenity/Debian_12/ /' | sudo tee /etc/apt/sources.list.d/home:celenity.list
wget -O- https://download.opensuse.org/repositories/home:celenity/Debian_12/Release.key 2>/dev/null | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_celenity.gpg > /dev/null
update, install phoenix
I add:
eval "$(starship init bash)"
to root .bashrc, for the pretty.
I install loginfetch from marcov's script, sans physlock:
script is here, unmodified.
I remove the following after installing the sexy: exim*, xdg-desktop-portal, and xdg-desktop-portal-gtk
I modify /etc/default/grub thusly:
GRUB_CMDLINE_LINUX_DEFAULT="quiet mitigations=off"
You may want to leave grub alone.
randomly, when I log into a gui, I: sudo lxappearance and choose to make root apps comply.
I have a wicked: ~/.bashrc and also: ~/.bash_aliases, ~/.bash_functions. My: ~/.config/openbox rc.xml and menu.xml are fully tweaked and wicked, my ~/bin dir is full of handy scripts; I want for nothing. Firefox opens in ~ a second with win+b, which is the slowest app to open. I maintain: starship, kitty, et al. config files. I back stuff up to a usb stick with a handy rsync alias.
This has been my desktop for ~ 20 years - completely reliable and functional top'd with kill-me-now boring.
debian-openbox/script_loginfetch/install.sh at master · leomarcov/debian-openbox
Script to install a full Openbox environment on Debian - leomarcov/debian-openboxGitHub
like this
EnteAuth (and a bunch of other FOSS) take Microsoft's "free" money
cross-posted from: lemmy.dbzer0.com/post/51040952
I'm moving away from using products by big tech and I recently started using EnteAuth for 2FA. Today I got an email from them saying that they received money as part of GitHub's secure open source fund. Maybe I'm just being paranoid but I do not like this at all. Microsoft is not altruistic I don't care what anyone says. There has to be an ulterior motive for this. With even the recent news that github won't be so independent anymore and they're getting folded into the Microsoft umbrella this has me worried. But let's be real github was never independent just look at copilot being forced down everyone's throat. That's why I personally stopped using it.
According to the fund
Throughout this program, each project receives $10,000 USD via GitHub Sponsors (which breaks down to $6,000 USD during the sprint and $2,000 USD at 6- and 12-month security check-ins). Projects are also invited to a new security focused community, and office hours with the GitHub Security Lab, that they can take advantage of during the full 12 months. They also receive security resources to immediately implement in their project and Azure credits for cloud infrastructure.
Those sponsors include
Alfred P. Sloan Foundation, American Express, Chainguard, Datadog, Herodevs, Kraken, Mayfield, Microsoft, Shopify, Stripe, Superbloom, Vercel, Zerodha, 1Password
Projects that are part of this even include nodejs, nvm, log4j, JUnit, and Matplotlib. Taking cybersecurity seriously is great but this just seems like a way to sucker them into their ecosystem to get them dependent on their products. Like I said maybe I'm being paranoid but I wouldn't be surprise when Microsoft suddenly buys these projects and we lose what made them so great.
Securing the supply chain at scale: Starting with 71 important open source projects - The GitHub Blog
Learn how the GitHub Secure Open Source Fund helped 71 open source projects significantly improve their security posture.Kevin Crosby (The GitHub Blog)
Technology reshared this.
You may as well just stop using computers all together, bud 🤣
I don't mean to ruin your world view, but there are no ways to run anything you want to run by focusing on "altruistic companies", however you may subjectively define that.
Look, you're focusing on the wrong thing here. Maybe you didn't know this, but the massive majority of FOSS projects get funded by companies - either for consulting, feature bounties, IC development - and is a main driving force for the ecosystem.
Many in this ecosystem would even tell you that every single project is massively UNDERfunded by said companies, and they should kick in more to help keep these projects secure and in good standing. They make billions and billions of dollars off people's work, and it surely seems they should kick some of that back to the projects.
Whatever Microsoft's involvement is here, it's not going to be changing the direction of any of the projects mentioned. If for some reason something untoward starts happening with any project: boom, fork and new community. It's that simple.
In short, these people getting funding for their work is a good thing. If you take issue with who is providing that money, you're going to be digging a deep, deep hole in your research, and if you're running down the dep chain, you'll find out that all of the things you use have some funding by companies like Microsoft, Apple, Google, Facebook, IBM, Red Hat, Amazon, Alibaba, Halliburton, Qualcomm...I could keep going on and on.
but there are no ways to run anything you want to run by focusing on "altruistic companies", however you may subjectively define that.
I think you misunderstood OP. their complaint is not that these projects should search an altruistic donor... but that Microsoft is suspicious in doing this, because arguably they rarely have good intentions.
Whatever Microsoft's involvement is here, it's not going to be changing the direction of any of the projects mentioned.
let's hope so
If for some reason something untoward starts happening with any project: boom, fork and new community. It's that simple.
easier said than done.
In short, these people getting funding for their work is a good thing.
I think OP (and me too) is worried about the terms. like, can these projects abandon github without repercussions? can they start using another code forge in parallel?
Uhhh, repercussions like what?
sudden closure of donated azure services without prior notification and time to move off.
having to pay back some of the money.
the project planning with the promised donations as a given (they don't get all of it upfront, but as they get the most of it it's actually fair) and microsoft either using it as leverage or just carelessly terminating the contract to save money.
in extreme case banning the project from microsoft owned services, including github.
any of that in decreasing order of probability if implementation is different from expected (like not baking in specific security tools to the project) and the parties cannot agree on a solution.
Uhhh, repercussions like what?
sudden closure of donated azure services without prior notification and time to move off.
having to pay back some of the money.
the project planning with the promised donations as a given (they don't get all of it upfront, but as they get the most of it it's actually fair) and microsoft either using it as leverage or just carelessly terminating the contract to save money.
in extreme case banning the project from microsoft owned services, including github.
any of that in decreasing order of probability if implementation is different from expected (like not baking in specific security tools to the project) and the parties cannot agree on a solution.
oh and I must also live in texas, right?
I wouldn't even recognize their voice or face.
In terms of the open source community Microsoft has been significantly less sketchy than usual for about a decade now. For those of us that are old enough to remember the halloween files it's hard to let go of that paranoia, particularly with the sketchy shit MS has been doing with their proprietary stuff lately, but near as I can tell they've been above board on their open source stuff.
I wouldn't go so far as to say blindly trust them at this point, but I wouldn't just assume with no evidence at all that there has to be something nefarious going on either.
Whether it's good or bad is not determined by the fact that it's corporate money, but how that money impacts development, the devil's in the details, not just in a company donating lots of money.
Open source in general is very dependent on corporate sponsors. The linux kernel wouldn't exist had companies not invested in it.
I'm not knowledgeable enough to assess the potential pitfalls here, so I will be cautious but not paranoid, and continue to pay attention to discussions on how FOSS projects are run 🤷♂️
New Zealand woman and six-year-old son detained for three weeks by Ice in US enduring ‘terrifying’ ordeal
A New Zealand woman who is being held at a US immigration centre with her six-year-old son after they were detained crossing the Canada-US border, is being wrongly “treated like a criminal”, according to her friend and advocate.
Sarah Shaw, 33, a New Zealander who has lived in Washington state for just over three years, dropped her two eldest children to Vancouver airport on 24 July, so they could take a direct flight back to New Zealand for a holiday with their grandparents.
When Shaw attempted to re-enter the US, Immigration and Customs Enforcement (Ice) detained her and her youngest son, in what was a “terrifying” ordeal, said Victoria Besancon, Shaw’s friend who is helping to raise money for her legal fight.
“Sarah thought she was being kidnapped,” she said. “They didn’t really explain anything to her at first, they just kind of quietly took her and her son and immediately put them in like an unmarked white van.”
New Zealand woman and six-year-old son detained for three weeks by Ice in US enduring ‘terrifying’ ordeal
Sarah Shaw, who has a US visa and lives in Washington state, was detained after attempting to re-enter US from CanadaEva Corlett (The Guardian)
copymyjalopy likes this.
Germany: ING Bank to introduce Wero this month
Bezahldienst: Bezahlen in Echtzeit: ING führt Paypal-Konkurrent Wero ein
Frankfurt/Main - Der noch junge europäische Paypal-Konkurrent Wero bekommt weitere Unterstützung: Europas größte Direktbank ING will den BezahldienstSTERN.de
"I support it only if it's open source" should be a more common viewpoint
like this
Technology reshared this.
How the world "should" respond to the thing we care about is an actively counter-productive thing to get hung up on.
Its much important how they do respond to it, and how we can reach those who don't connect with it
(And that doesn't just lecturing people and trying to brow beat them into caring about it, which seems like the default approach for a lot of foss folks 🥲 thats the opposite or reaching people, that's alienating them)
like this
I’m an open source developer who’s put thousands of hours of work into my open source projects.
- Amount of money I’ve made from writing and maintaining open source projects: $0
- Amount of money I’ve made from writing and maintaining closed source projects: idk exactly, but probably close to $1,000,000 (over ten years of working in big tech)
I get wanting to use open source software. I want to use open source software. I want to write open source software. I do write open source software. But please understand that I only do that because I enjoy it. I also need to pay the bills, and there’s not much money in writing open source software.
If you value an open source project, especially if it’s just a small development team that doesn’t sell anything, please donate to them.
Right now, I run an email service, port87.com/, and it is technically closed source. But it’s built on my open source projects, Svelte Material UI, Nymph.js, and Nephele. Probably about 70% of the code that makes up Port87 is open source, and if you use Port87, you’re helping me continue to develop those open source projects. So even if you don’t donate to open source projects, there are other ways to contribute. Support companies who support open source projects.
This sort of thing can't really be done in capitalism at all. Open Source (as it was advanced by Eric S. Raymond and the Mozilla Project back in the late 90s) was always stuck in a capitalist way of thinking.
In a society where everyone has their basic needs met and people are expected to contribute what they can, writing FOSS can be your contribution.
The early mobile phone apps conditioned people to expect things free.
I donate to any project, open or closed source if it's worth it.
How language is hiding the real internet from you
How language is hiding the real internet from you
Most of the internet is out of your reach, but the barrier isn't just algorithms. In another language, the same platforms turn into to whole other worlds.Ryan McGrady (BBC)
Rozaŭtuno likes this.
Dutch Signal Group
like this
SMplayer...jitter? Slightly choppy framerate
Hi guys!
So...I have a beefy AMD PC, CPU AMD 7700, GPU 7800XT 16GB, 32GB RAM. Maybe not top of the line, but definitely capable of playing about any kind of video. Well...not with SMPlayer! I get a slightly choppy playback. Like, if the movie being played is 24.97FPS, it feels to be playing at...23FPS? It's hard to tell as there's no obvious proof of what I'm saying. It's usually ok on normal dialog scenes, but super noticeable when the the camera pans around. It can be very distracting.
But VLC on default settings plays the same file consistently better, no noticeable jitter. This applies to about any 1080p/4K file. Also not crazy bandwidth nor anything, a bit under 2GB for 1h worth of video on most TV shows.
SMPlayer uses video output driver - GPU, and in Performance, hardware decoding is set to Auto. I've toyed with several of these settings (vdpau, vulkan, wayland-copy...about anything available in the lists), to no avail. I have checked both with mplayer or mpv as multimedia engine (by default it's specified as 'other' and then the /usr/bin/mpv). Either option has differences, but still get the same...choppy playback. Any idea of what could be wrong? I have no clue on how to troubleshoot this.
I'm using NobaraLinux (Fedora 42, KDE plasma edition).
EDIT: It seems to be refresh rate. The videos are 24, or 24.97FPS, and that doesn't convert well to 60Hz. If depending on the video file I change the output to the TV to 24Hz or 50Hz (I don't have 25 nor 40Hz) then the playback seems perfectly smooth. My follow-up question would be, how can I do this automatically from SMPlayer? Is there a way it either adjusts the screen refresh rate, or interpolates the playback FPS to account for the existing refresh rate?
Free select screenshot tool for Pop
Hi all. New to Linux, just installed Pop yesterday. I'm trying to find a screenshot tool which allows freeform selection, something which was built into Windows via snipping tool. I've tried Flameshot, Shutter, and a half dozen other programs but either I'm blind or none of them have this functionality.
Can anyone recommend a program that does that? Thanks!
Edit:
Clarification: I want to be able to draw a shape, say a circle instead of a rectangle, and have the screenshot only be of what I've circled. Snipping Tool in Windows had this functionality, you could select that instead of a rectangle or square it would be freeform. I wanted to know if there was any Linux equivalent, because I haven't been able to find one on my own.
like this
Attic Insulation Installers: What You Need to Know for a More Comfortable Home
If you’ve ever stepped into your attic and felt like you were walking into a furnace—or a freezer, depending on the season—you’re not alone. In a climate like Scottsdale’s, where temperatures often soar above 100°F in summer, your attic plays a huge role in determining your home's comfort and energy efficiency. That’s where professional attic insulation installers come in. Whether you're building a new home, upgrading an older one, or just looking to cut down those soaring energy bills, installing or updating your attic insulation is one of the smartest investments you can make.
In this post, we’ll cover everything you need to know about attic insulation installation, from why it matters to how to choose the right installer in the Scottsdale area.
Why Is Attic Insulation So Important?
Attic insulation acts as a thermal barrier between your home and the outside environment. In the intense Arizona heat, proper insulation prevents the sun’s radiant heat from penetrating your living spaces. During the cooler months, it works in reverse—keeping the heat inside where it belongs.
Here’s how attic insulation benefits your home:
Lower energy bills – By reducing the amount of heat entering in summer and escaping in winter, your HVAC system doesn’t have to work as hard.
Improved indoor comfort – No more drastic temperature swings between rooms or floors.
Extended HVAC lifespan – Less strain on your heating and cooling systems means fewer repairs and a longer operational life.
Environmental benefits – Reduced energy use means a smaller carbon footprint.
Types of Attic Insulation
Before diving into the installation process, it’s helpful to understand the types of attic insulation available:
- Blown-In (Loose-Fill) Insulation
This is one of the most common types for attics. It’s made of fiberglass or cellulose and is ideal for irregular or hard-to-reach areas. It's fast to install and great for topping off existing insulation. - Batt (Roll) Insulation
Typically made from fiberglass, batt insulation comes in pre-cut panels. It works well in attics with standard joist spacing and few obstructions. - Spray Foam Insulation
This option offers superior thermal performance and air sealing but tends to be more expensive. It's especially useful if your attic is prone to air leaks or moisture problems.
Why Hire Professional Attic Insulation Installers?
You might be tempted to tackle attic insulation as a DIY project, but here’s why working with professionals—like our team at Scottsdale Attic Insulation—makes a big difference:
- Accurate Assessment
A certified installer will assess your current insulation, check for air leaks, and identify moisture issues before recommending a tailored solution. - Proper Installation
Even the best insulation materials won’t perform well if they’re improperly installed. Professionals ensure coverage is consistent and complete, avoiding gaps that reduce effectiveness. - Safety First
Working in an attic can be dangerous. Trained installers have the equipment and experience to avoid injury, electrical hazards, and exposure to insulation materials. - Building Code Compliance
Insulation requirements vary by region. A licensed installer ensures your home meets Scottsdale’s building and energy codes, which is especially important if you plan to sell your home in the future.
What to Expect During the Installation Process
At Scottsdale Attic Insulation, we make the process as smooth and transparent as possible. Here’s what typically happens:
Inspection & Evaluation – We start with a thorough inspection of your attic to evaluate current insulation levels, ventilation, and potential problem areas.
Custom Recommendations – Based on your home’s specific needs, we recommend the best insulation type and R-value (thermal resistance).
Prepping the Space – We seal any air leaks, repair damage, and ensure the attic is clean and safe for installation.
Insulation Installation – Whether it’s blown-in fiberglass or spray foam, our team installs your new insulation with precision and care.
Final Inspection – After installation, we double-check everything to ensure maximum performance and customer satisfaction.
Questions to Ask Your Attic Insulation Installer
Choosing the right contractor matters. Here are a few questions to ask before hiring someone:
Are you licensed and insured?
What type of insulation do you recommend for my home, and why?
How long will the installation take?
What R-value do you suggest?
Do you offer any warranties or guarantees?
Why Choose Scottsdale Attic Insulation?
We’re a local team that understands the unique challenges of insulating homes in the Sonoran Desert climate. Our focus is on high-quality materials, expert installation, and honest service. When you work with us, you're not just improving your home's comfort—you’re investing in long-term energy savings and peace of mind.
Ready to Make Your Home More Efficient?
If you’ve been noticing higher utility bills, hot or cold spots in your home, or if it’s just been a while since your attic insulation was evaluated, now’s the perfect time to schedule an inspection. At Scottsdale Attic Insulation, we’re here to help with friendly, professional service every step of the way.
5-Star Attic Insulation Installers in Scottsdale | Expert Service
Need top attic insulation installers in Scottsdale? Our expert team offers efficient, cost-effective insulation solutions to enhance energy savings and comfort.https://scottsdaleatticinsulation.com
Technology reshared this.
Blown In Insulation: Everything You Need to Know for a More Comfortable Home
If you’re a homeowner in Scottsdale or the surrounding areas, you probably already know how critical proper insulation is to maintaining comfort and reducing energy bills. But if your attic insulation is outdated, compressed, or simply insufficient for our intense Arizona climate, your home could be losing a lot of energy—and money. One of the best solutions to upgrade your home's energy efficiency is blown in insulation.
In this article, we’ll break down everything you need to know about blown in insulation, from how it works and what materials are used, to its many benefits and why it's such a smart investment for Scottsdale homes.
What Is Blown In Insulation?
Blown in insulation—also known as loose-fill insulation—is a type of insulation made from small particles of material that are blown into place using specialized equipment. This allows the insulation to fill cavities and cover irregular spaces more completely than traditional batts or rolls.
There are two main types commonly used in attics:
Cellulose – Made from recycled paper products treated with fire retardants.
Fiberglass – Made from spun glass fibers and also treated for fire safety.
Both types are highly effective at creating a thermal barrier that helps keep indoor temperatures stable all year round.
How Is It Installed?
The process is quick, clean, and minimally invasive—making it a favorite among homeowners and insulation pros alike.
Assessment: A professional will inspect your attic to determine how much insulation is needed and identify any issues like leaks, pests, or inadequate ventilation.
Preparation: If existing insulation is damaged or needs to be removed, that step comes first.
Installation: A blowing machine is used to distribute the loose-fill material evenly across the attic floor, filling every nook and cranny.
Finishing Touches: The insulation is leveled to a consistent depth to ensure optimal performance.
For most standard-size homes, the entire process can often be completed in just a few hours.
Why Scottsdale Homes Need Blown In Insulation
Arizona’s climate poses unique challenges—especially the extreme summer heat. Blown in insulation can significantly improve your home’s ability to withstand these temperatures. Here’s how:
Improved Energy Efficiency: A well-insulated attic can lower your cooling bills by up to 20%. Blown in insulation helps create a strong thermal barrier that keeps your AC from working overtime.
Year-Round Comfort: While summers get all the attention, Scottsdale can also see chilly desert nights in the winter. Blown in insulation helps regulate indoor temperatures in all seasons.
Moisture and Mold Resistance: When properly installed, blown in insulation can also help reduce the risk of moisture buildup—especially with cellulose, which is treated to resist mold and pests.
Environmentally Friendly: Cellulose is made from recycled materials, and fiberglass has a relatively low environmental footprint. Both options contribute to greener living.
The Benefits of Blown In Over Other Insulation Types
You might be wondering how blown in insulation compares to traditional batt or spray foam insulation. Here's a quick breakdown:
Feature Blown In Insulation Batt Insulation Spray Foam
Coverage Excellent – fills gaps completely Good – may leave gaps Excellent
Installation Speed Fast Moderate Slower
Cost Affordable Affordable Higher
Sound Dampening Great Moderate Good
Best Use Attics, retrofits Walls, new construction Sealing air leaks
For many Scottsdale homeowners, blown in insulation offers the best combination of performance, affordability, and ease of installation—especially for upgrading attics.
How Long Does It Last?
When professionally installed and maintained, blown in insulation can last 20 to 30 years or more. It doesn't settle as quickly as many people assume, especially modern fiberglass versions, and remains effective for decades. Regular inspections can help ensure it maintains its depth and effectiveness over time.
When Should You Consider Upgrading?
If you’re experiencing any of the following, it might be time to upgrade your attic insulation:
High energy bills, especially in summer
Uneven indoor temperatures
Drafts or hot spots in the home
Old or damaged insulation
Preparing to sell your home and want to improve energy ratings
Upgrading to blown in insulation is not only practical but also one of the most cost-effective ways to boost your home’s energy efficiency and resale value.
Why Work With Scottsdale Attic Insulation?
At Scottsdale Attic Insulation, we specialize in helping local homeowners stay cool in the summer, warm in the winter, and save money all year round. Our experienced technicians use high-quality materials and state-of-the-art equipment to ensure your blown in insulation is installed perfectly the first time.
We understand the unique needs of homes in the Scottsdale area and take pride in providing honest, friendly service with results you can feel.
Final Thoughts
Blown in insulation is a simple yet powerful upgrade that offers immediate and long-term benefits for homeowners in Scottsdale. Whether you’re dealing with rising energy costs, uneven temperatures, or just want to make your home more eco-friendly, blown in insulation is a smart, effective solution.
Ready to improve your home’s comfort and efficiency? Contact Scottsdale Attic Insulation today for a free consultation and find out how blown in insulation can make a big difference in your home.
Top Blown In Insulation in Scottsdale | Save 30% on Bills
Professional Blown In Insulation in Scottsdale for better energy efficiency and comfort. Trusted installers delivering quality service. Call 602-483-4042!https://scottsdaleatticinsulation.com
Technology reshared this.
Billy Bragg - Tooth & Nail (2013)
Come già in parte è avvenuto con Mr. Love and Justice, anche in Tooth and Nai, Billy Bragg abbandona il suo "essere" cantautore militante politico e sociale in favore di un suono e quindi di un risultato molto più riflessivo e intimo... Leggi e ascolta...
like this
Online Safety Act - shutdowns and site blocks
Online Safety Act - shutdowns and site blocks
Report incorrectly blocked sites on UK ISP and mobile networks.Report mobile and Internet Service Providers blocking sites
Now you see me, now you don’t: how subtle ‘sponsored content’ on social media tricks us into viewing ads
Now you see me, now you don’t: how subtle ‘sponsored content’ on social media tricks us into viewing ads
Scientists find that people mostly avoid social media ads when they see them, but many ads blend in seamlessly.Angharad Brewer Gillham (Frontiers | Science news)
Couchpotato, sonarr alternatives in 2025
like this
Ett av de projekt som Föreningen för Digitala Fri- och Rättigheter (DFRI) driver är att ta fram en ny och bättre digital legitimation. Anledningen till varför det behövs en bättre e-legitimation anger de tydligt i projektbeskrivningen.
blog.zaramis.se/2025/08/13/for…
För en bättre e-legitimation - Svenssons Nyheter
För en bättre e-legitimation. Ett av de projekt som Föreningen för Digitala Fri- och Rättigheter (DFRI) driver är att ta fram en nyAnders_S (Svenssons Nyheter)
Serving a simple website from a Jail with Bastille
In this short little howto we will be setting up a simple Jail via Bastille and host a static website.
Beware: The article assumes that sudo is configured. You can of course also use doas or switch to root, if you so desire. Some commands need root rights to work – keep that in mind as you go along!
First, we need to install Bastille itself.
$ sudo pkg install -y bastille
After installing, we enable the bastille service.
$ sudo sysrc bastille_enable=YES
And finally we start it.
$ sudo service bastille start
The next step on the list is to acually alter the bastille config to adapt it to our needs. Beware that in this guide I assume that you’ve installed FreeBSD with ZFS – or that you have a ZFS pool on hand that we can leverage. By default FreeBSD calls this pool zroot (Which can be altered during the install of FreeBSD). If you do not use ZFS be sure to not alter the variables below – the default is not leveraging ZFS.
Edit the configuration file.
$ sudo vim /usr/local/etc/bastille/bastille.confbastille_tzdata="Europe/Berlin"...bastille_zfs_enable="YES"bastille_zfs_zpool="zroot"...
In my case, as you can see, I’ve adapted the timezone and set up ZFS for the coming Bastille Jails. Be sure to alter the timezone according to your needs.
Next up is creating a loopback interface.
$ sudo sysrc cloned_interfaces+=lo1$ sudo sysrc ifconfig_lo1_name="bastille0"
Start the newly created interface after creating it.
$ sudo service netif cloneup
Now we can move on to the bootstrap phase. The following command will get the newest release (As of this time) and prepare the environment.
$ sudo bastille bootstrap 14.3-RELEASE update
Alright, with that done we can create our first Jail.
The command given will create a Jail named “web” and give it the IP address of 10.0.23.60. Also specifying the interface after the IP address is important.
Note: Be sure to alter the given address to your own needs!
$ sudo bastille create web 14.3-RELEASE 10.0.23.60/24 vtnet0
So far so good. Check if the Jail is created with the “list” option to bastille.
$ sudo bastille list
If the output shows our newly created Jail called “web” we are good to go.
Now we want to enter our freshly created Jail to continue the setup.
$ sudo bastille console web
First, let’s install pkg and update the repository.
# pkg# pkg update
Next we’ll install the needed software (Webserver) to host our website. We also install a editor – pick the one your prefer (In this example we’ll use vim).
# pkg install -y lighttpd vim
Enable Lighttpd and start it afterwards.
# sysrc lighttpd_enable="YES"# service lighttpd start
We could now configure Lighttpd to our needs and change quite some settings. But in the interest of keeping it simple we will use the default configuration for now. If however you want to change things you can always take a look into the configuration directory which can be found under /usr/local/www/lighttpd (Multiple config files).
By default Lighttpd serves the directory /usr/local/www/data (Document Root). This is where we will put the needed files of our little website.
But, the directory “data” is not yet created. So let us just do that.
# cd /usr/local/www/# mkdir data# chown www:www data
Make sure the owner is set correctly since Lighttpd will by default leverage the user www and group www.
Final stretch ahead. Let’s cd into the directory and clone a simple website from git – After installing git of course.
# pkg install -y git-lite# cd data# git clone github.com/jhx0/bsd-website.gi… mv bsd-website/* .
Our frehsly cloned site should now be moved into the data directory.
The only thing left to do is opening your webbrowser of choice on our client system and navigation to the IP address previously configured.
$ firefox 10.0.23.60
Finsihed!
Beware: This is a default setup – There are many ways to improve this!
Look into the configuration of Lighttpd, esp, considering security related alterations.
Have fun everyone.
Stay Open!
Streamio whilst traveling
Hello me hearties.
I have a question about the Streamio app/Service.
I travel full time and with all the paid streaming services requiring a 'home' IP address I'm now looking for alternatives.
Streamio seems to fit the bill, however I have one question. Although I will be streaming to one or maybe 2 devices, I would probably like to use REAL DEBRID, But, Can I use different IP addresses, for example, one week I might be in Japan, the next week I'll be in Thailand.
In my case would it be best to purchase my own private IP from a VPN provider?
Any advice would be awesome.!
Thank you
like this
This might be of use?
stremio-addons.net/addons/aios…
"AIOStreams consolidates multiple Stremio addons and debrid services into a single, easily configurable addon. It allows highly customisable filtering, sorting, and formatting of results and supports proxying all your streams through MediaFlow Proxy or StremThru for improved compatibility and IP restriction bypassing."
I use this addon, but not for the proxy stuff.
Do not use Real Debrid and use TorBox, do not make problems with IPs as explained here:
support.torbox.app/en/articles…
I use it and now it works very well, first I used Real Debrid.
if you want my referral:
torbox.app/subscription?referr…
Can I Use My Account With Many Different IP's? | TorBox Help Center
TorBox can be used anywhere!support.torbox.app
Wildlife team 'devastated' by Holt Heath fire animal deaths
A group that has been searching the burnt remains of a heath fire for surviving animals has said it is "devastated" by the loss of wildlife.
The Dorset Heaths Partnership is made up of 10 organisations working together to protect and enhance the Dorset heathlands
Paul Attwell is the partnership's team manager and said the blaze, which started at Holt Heath near Wimborne in Dorset on Saturday morning, was "horrendous".
Wildlife team 'devastated' by Holt Heath fire animal deaths
The Dorset Heaths Partnership found more than 50 dead reptiles on Tuesday.Curtis Lancaster (BBC News)
Rare Sowerby's Beaked Whale washes up in Norfolk
A Sowerby's Beaked Whale, a poorly known deep sea species, has perished after washing up on a beach in Norfolk.
The animal was found in The Wash near Holme-next-the-Sea on Wednesday 6 August by a member of the public, who alerted it to British Divers Marine Life Rescue. By the time a BDMLR representative arrived at the scene, the whale had died, according to Wild Ken Hill on Facebook.
The whale was found to be a female. At this time of year females move south from Arctic breeding grounds – and it may be that this individual was with a young animal.
dflemstr likes this.
Who said you can move furniture with a bike?
I saw this bike made by an independent bike shop for himself.
It's an electric longtail and can carry a 300kg europallet, plus the toolbox on the front, plus an extra person or material on the bike rack!
Here is the link to the shop website: cycles-penet.fr/
Cycles Penet Frères – Fabrication de vélos rallongés personnalisés
Artisan assemblant des vélos longtails, robustes et durables au meilleur prix du marché.www.cycles-penet.fr
like this
Musk threatens Apple and calls OpenAI boss a liar as feud deepens
Musk threatens Apple and calls OpenAI boss a liar as feud deepens
Relations between the two tech bosses have soured amid a slew of lawsuits and social media digs.Liv McMahon (BBC News)
AI companion apps are on track to generate $120M+ in revenue in 2025, and in H1 there were 60M downloads of this kind of app, up 88% YoY
Holy shit. And I thought I was alone.
Where the hell are we heading as humanity?
AI companion apps on track to pull in $120M in 2025 | TechCrunch
The number of AI companion apps has grown more than 60% since 2024.Sarah Perez (TechCrunch)
like this
Technology reshared this.
China has built the world’s largest bullet-train network
China has built the world’s largest bullet-train network
And there’s a lot more to come. But is it a waste of money?The Economist
like this
New Uvalde Records Reveal Details About School Safety Concerns and Shooter’s Behavioral Issues
The release is part of a settlement agreement in a lawsuit that news organizations brought against state and local governments. The fight continues to get the Texas Department of Public Safety to release its own records.
Kongar
in reply to Jack_Burton • • •I’ve said it here before and I’ll continue to say it. All the Linux nerds (myself included) have strong opinions when it comes to distros or x vs Wayland, or flatpak vs repositories, blah blah blah.
But in the end - none of it matters. You could randomly eliminate all options except for one distro - and we’d happily pick that over windows. The trick is that you could make any distro like any other - it’s just that the distro did all the work for you. So pick the one that matches how you want to use your pc.
Maybe the only thing that’s not changeable is the philosophy behind the distro. Debian - older stuff for stability. Arch - bleeding edge rolling release. Fedora somewhere in the middle. You get the idea.
like this
Rozaŭtuno likes this.
tyler
in reply to Kongar • • •relaymoth
in reply to tyler • • •tyler
in reply to relaymoth • • •edel
in reply to Kongar • • •seralth
in reply to edel • • •Arch is also just becoming the standard gaming option.
A lot of gaming communities that are migrating over are flowing to the aur for their community tools.
mnemonicmonkeys
in reply to seralth • • •Wasn't there malware found in the AUR just last week?
For Linux newbs, AUR is the Arch User Repository where anyone can post packages and scripts. It's highly recommended to NOT trust anything on there due to the risk of malware. If you don't use Arch and stick to your distro's application manager you don't have to worry about it
sic_semper_tyrannis
in reply to Kongar • • •LeFantome
in reply to sic_semper_tyrannis • • •sic_semper_tyrannis
in reply to LeFantome • • •tyler
in reply to sic_semper_tyrannis • • •sic_semper_tyrannis
in reply to tyler • • •It appears to be a way of running containers in the terminal with the specific intent to have a certain distro image installed, run a program, and give it permission to interact with your system's home directory with an easy to launch icon.
It looks pretty darn handy, I'm going to give it a try this weekend
https://www.youtube.com/watch?v=eiDt4O6UPRw
MyNameIsRichard
in reply to Jack_Burton • • •like this
Rozaŭtuno likes this.
Mark
in reply to Jack_Burton • • •like this
Rozaŭtuno likes this.
floo
in reply to Jack_Burton • • •It has been my experience that there is no “best distro“. It’s just a matter of which distro is best for you. there are distros geared for beginners, distros geared for media professionals, distros aimed at software developers,… And it all takes the experience of trying it out to see what works best for you in particular.
While all distro’s have the same underlying components, so to speak, different distro’s, are typically developed with different use cases in mind.
like this
Rozaŭtuno likes this.
exu
in reply to Jack_Burton • • •The main difference has traditionally been the package manager and update schedule, though a distro might offer several options for the second one.
Relatively recently we got another differentiating feature with immutable distros, where updates don't happen with a package manager but often by downloading or building a complete new image with the newer versions.
Other than that distros mainly set the defaults for you, but you can always change that to work or look like another distro with enough effort.
Basically, don't worry about it and use what works for you
just_another_person
in reply to Jack_Burton • • •Ignore anyone claiming there is some massive performance difference between any distros. That's some misinformed bullshit.
The main things you need to understand are the layers:
1) Kernel
2) Libraries
3) Package Manager
4) UserSpace
The Kernel layer will be largely transparent for you as a beginner. If you want bleeding edge stuff, install a "Rolling Release" distro that updates this layer much more frequently than "LTS (long term support)" releases will, as their function is to remain stable for longer periods of time.
Libraries will also be transparent to you as a new user, and even as experts, we rarely need to mess with this layer unless building something specific, which you will not need to worry about. Do not let the Chaff start talking some bullshit about how you to prefer this or that in distros blah blah ...you're a new user. Ignore that noise.
Package Manager: something to consider as you will be interacting with this. RPM, Apt/Deb and pacman are the big three, and all are very mature and stable. They all perform similar basic functions, just in different ways. You'll have a preference in time, but any of them work well. It's not a huge thing you need to worry about, but you'll surely like one over another in time.
UserSpace: where all the fun stuff is. Stick with a distro that has a large community. The biggest choice in how you will interact with your machine as a desktop user is here in that you want to choose a Desktop Environment, or DE. Gnome and KDE are the big two in this arena, but there are many: Xfce, Cinnamon, Mate...etc. Id suggest starting with Gnome if you like a clean MacOS type interface, or KDE if you really like the more verbose sort of Windows experience. Both are fine choices, and you won't have problems with either. Again, ignore everyone telling you one is better than the other...they are not. It's a preference. Try them both, and go with one. You can easily swap later if you want, no big deal.
Lastly: don't go off and use Bl00pyGameRzX or whatever random distro the loudest asshole in a thread is telling you to use. Again, you're a new user, you need simple, stable, and a huge community to reference if you have issues.
I suggest Fedora for new users now after Ubuntu shat the bed and soiled their crown. After getting comfortable with things, maybe look into what the difference is between Fedora and Cachy, and if that's of any use to you. If not, whatever, just keep using what you like. Distro hopping is for aimless people who don't know what they're looking for, or how to identify. Use what YOU like, and keep using it as long as you like it. Ignore the hype machine telling you otherwise. That's the point.
like this
Mordikan likes this.
Mordikan
in reply to just_another_person • • •One correction to this:
The Arch package manager is Pacman, not AUR. AUR is the Arch User Repository and is definitely not stable 😀
just_another_person
in reply to Mordikan • • •caseyweederman
in reply to just_another_person • • •NewNewAugustEast
in reply to just_another_person • • •just_another_person
in reply to NewNewAugustEast • • •NewNewAugustEast
in reply to just_another_person • • •Because people recommended it.
There were better options. It crashed or broke all the time. Still does.
It would never be a recommendation for new users from me. I tried every version since 4, so I am not new to its shittyness.
just_another_person
in reply to NewNewAugustEast • • •NewNewAugustEast
in reply to just_another_person • • •just_another_person
in reply to NewNewAugustEast • • •seralth
in reply to just_another_person • • •General rule of thumb for new users.
Doesn't like to tinker and non gamer. Fedora
Likes to thinker and non gamer endeavour
Doesn't like to tinker and gamer bazzite
Likes to tinker and gamer cachy
Arch at this point is no more unstable or prone to breaking then mint or any other distro barring like Debian. Cachy and endeavour with kde6 basically have solved the arch isn't for new users problem coming from Windows.
So really you just need to ask yourself. Do you want your defaults to include gaming utilities or do you want to have to install them yourself. If your going to game you can save yourself hours as a new user with bazzite or cachy since they come out of the box with a button for "I want to install all the gaming stuff" and your good to go.
If you don't game and just do basic work then you can go with fedora which will provide a great curated experience that basically just leaves you with a standard and reliable work PC.
Or endeavour which will drop you off right at the point of everything works, is reliable and ready for you to start learning. Even if you choose to never fiddle with anything, you still end up with a system that supports the widest possible amount of hardware and has one of the best user manuals of any distro family.
Seriously for as much as people claim you need a big community for refence material. Between cachy and arches wiki, you have a better source of information than any other option. It's absurd how useful it is.
just_another_person
in reply to seralth • • •Y'all really need to get off the Bazzite thing for new users.
Fedora for gaming is great and has zero issues.
Bazzite is no better than any other distro in this respect EXCEPT that it's immutable, and going to be a NIGHTMARE for somebody not yet familiar with how things work in a Linux system. It's edge cases upon edge cases, and the assumption by people pushing this idiocy is that they'll never need to know how a normal functioning Linux system works if they like it, which is an ignorant supposition.
Stop pushing this narrative to new users, you're just making it harder on them.
JeremyHuntQW12
in reply to just_another_person • • •You mean opaque.
And you will definitely find out about libraries if you attempt to install anything.
Some packages will install in your home directory, others, for no apparent reason will spread themselves around the system in the area only available in administration mode. Good luck finding where it all went. The only way I can find is to look at the path in Synaptic, most package managers won't record it.
just_another_person
in reply to JeremyHuntQW12 • • •This...I don't understand what this is.
No distro managed by a package manager would be dropping files all over the place as you're suggesting, not would it require you to interact with or even know which libraries you have installed because it's all automatically handled by said package manager.
If you're installing out of band packages, you're talking about a different thing, and that's the package maintainer's fault, not the distro and their maintainers.
mnemonicmonkeys
in reply to just_another_person • • •bubbalouie
in reply to Jack_Burton • • •Grass is greener...Linux is a kernel with tools attached that distributions play with and present as they would as a distribution. Packaging (program management) is different throughout with all the distros loving their 'tool', or, methodology. Some distros present helpful scripts to get a thing done, or, look a way, or, whatever, and some do not.
Windows tells you, here, you can use this or do this and cannot do this or use that. Linux tells you to simply have at it and makes it all available for you to use or not to use. Windows sits you at the kiddie table whereas Linux gives you materials and tools.
Ŝan
in reply to Jack_Burton • • •Þe biggest difference is going to be in þe package manager. And even þen, it can be furþer generalized into rolling vs point releases. Software tends to be þe same, once installed.
Notable differences from þe common selection:
Most Linux distributions are going to use þe same basic stack (all of þese use þe Linux kernel and so are "Linux"): systemd, GNU userspace and X or Wayland.
Distributions have some package manager, some default set-up, and selection of themes and desktop backgrounds þat give þem þeir flavor; but beyond þe package manager, init system (and in þe case of systemd, a whole bunch of oþer subsystems), and userspace, it's all superficial and common across distributions and can be swapped or installed on most distributions - often wiþout even a reboot. Þe userspace and init are not impossible to swap out for someþing else, but are generally quite hard (and harder for systemd) to replace, as is þe package manager.
Þe main decision, þen IMHO for new users is to decide wheþer þey want a rolling or point release (or an immutable distribution), and almost always for new users þe answer is "point release" since maintenance is usually lower, giving folks time to get used to Linux before facing þem wiþ some breaking software upgrade. NixOS has a notoriously comparatively high learning curve, as does GUIX; oþer immutable distros maybe not so, but none have yet achieved notoriety, and þe smaller þe community, þe less help you'll find online. Þis usually means some descendent of Redhat or Debian, like Mint, which is why even people who don't use Mint þemselves end up recommending it as a starter.
Chimera Linux
Chimera LinuxHemingways_Shotgun
in reply to Jack_Burton • • •In terms of how you interact with it day to day, no. And that's because the Distro in that sense matters less than the desktop environment. Since DEs are fundamentally distro agnostic, most distros give a person the option for multiple choices in that regard, so it doesn't really matter if you're using Ubuntu, Arch, Fedora, etc.... what matters from a usage perspective is if you're using KDE, or Gnome, or XFCE, etc...
Under the hood there's a lot of differences in how each one chooses to do things, but I wouldn't call one of them better or worse than any other and for the most part can be ignored.
My advice would be narrow it down to one choice; and that's your package manager. That's really where most of the difference lies. Find the one that you find easiest to use (Apt, Pacman/Pamac, DNF, Zypper) and that's where you land until you're comfortable.
cRazi_man
in reply to Jack_Burton • • •Noob opinion: they're all the same, you're just choosing from the minor differences in the quirks one has over another and it would be easy enough to work around those if you were motivated to.
The real difference is the DE, how quickly updates are pushed, good GUI on a package manager and if it is immutable or not.
For noobs like me it also helps if it has a lot of users so I can find forum posts about my specific problem. Vetrans keep saying that online documentation is enough, but I wouldn't even know where to start with applying generic instructions to my installation (e.g. how is a wiki going to be able to tell me that my low framerates in Street Fighter 6 are because of split lock protections on my CPU). How would I diagnose the problem to know where to look? This is the major appeal of Debian based systems.
pogodem0n
in reply to Jack_Burton • • •A Linux distribution is just the Linux kernel distributed with various other pieces of software that make it usable. Often times, there are multiple software projects that aim achieve the same goal by going in different paths. These are packaged together by the distro maintainers who mostly do this out of passion.
Different distros prioritize different aspects of the software they package and they do this in different ways. To make the best choice for you, it is best to try and understand what each distro aims to do. Here are a few examples out my head:
- Debian is a traditional distribution that aims to keep the system stable for a few years. They do backport security patches, but slow rollout of feature updates is a deal-breaker for some people (like me).
- CachyOS (based on Arch Linux) compiles it's packages utilizing newest CPU instructions which may lead to slight performance gain on newer hardware. They also ship some kernel patches optimizing it for gaming use cases.
- Bazzite is based on an atomic/immutable version of Fedora. The aim here is to provide a system that makes it very hard for users to mess it up, using containerization technologies. It also means that installing packages in the traditional way is not very feasible or recommended. You are supposed to install packages without root access and using technologies like flatpak. It also includes some gaming specific kernel patches similar to CachyOS, but not as many.
NewNewAugustEast
in reply to Jack_Burton • • •Jack_Burton
in reply to NewNewAugustEast • • •NewNewAugustEast
in reply to Jack_Burton • • •Sure, but it is just Debian with their crap bolted on.
The last two times I installed Ubuntu somewhat recently, it was broken at the install. I fixed it, but it shouldn't be that way. The hardware was nothing exotic or interesting either.
It has always been troublesome.
HakunaHafada
in reply to Jack_Burton • • •Admetus
in reply to Jack_Burton • • •Ultimately my choice of distro came down to what packages are available under the package managers.
I found a couple of packages only under the AUR so I go Arch.
But what I want from Linux, and what makes it Linux to me is the DE. So I could use Fedora Gnome or EndeavourOS gnome and just go with whichever is best for my use case.
brucethemoose
in reply to Jack_Burton • • •As you see, there are 1000 different opinions, heh.
My take is it’s about user patterns.
Every distro has different maintenance expectations, different tolerance for bugs and keeping stuff up to date and working. That’s the flavor difference: it’s all the same packages just served to you a different way.
As an example, Arch Linux has an expectation for the user to pay attention to maintenance. Read their excellent wiki. Update frequently, and pay attention to errors and warnings when you do. There is one version of Python, so update your stuff to work with out. The “reward” for being so hands on is stuff getting automatically fixed quickly.
CachyOS is just a preconfigured version of this, with presets and experimental features tailored for gaming. But it’s largely not divergent from the underlying Arch system: you could switch from an arch install to CachyOS packages with zero fuss.
Contrast with Ubuntu. It is meant to be more “hands off” with staged and delayed updates. There are many versions of Python present in the same system, so old stuff works without changes. But the consequence is you may have to live with certain problems you run into, or risk breaking your system trying to fix them.
Fedora is somewhere in between, with the addition of an emphasis on free software. And a consequence of that is, for instance, no first party support for Nvidia. Bazzite builds on top of that by expensively modifying it into a stable platform for gaming, but you’re also dependent on a relatively small group of maintainers.
So I guess one question is how involved with your computer do you want to be?
chromodynamic
in reply to Jack_Burton • • •The main differences are:
like this
themadcodger likes this.
frongt
in reply to chromodynamic • • •like this
themadcodger likes this.
Semperverus
in reply to chromodynamic • • •Workflows are different, configuration files can be different, and package names (not just management) can be different.
Additionally, release cadence (how fast you get new stuff, even when considering fixed releases), stability, performance (how were the packages compiled), and custom patches that aren't part of the original code (*shakes fist angrily at Manjaro*)
seralth
in reply to Semperverus • • •Semperverus
in reply to seralth • • •I don't like how the manjaro team does it specifically. A lot of the time i've seen packages break in Manjaro that work fine in Arch, then Manjaro users come into Arch forums acting like its an Arch problem when it isn't.
Also, their driver install helper causes more problems than it solves, which was especially highlighted in the transition to open source official nvidia drivers. Couldn't install the open source ones for the longest time, and couldn't install the right ones from the repo with pacman directly. Caused some major issues for a friend I was helping.
Helped him switch to proper Arch and all the issues went away.
Valve on the other hand puts extreme effort into maintaining stability. I use it regularly and have zero issues, though I use it as-is out of the box.
LeFantome
in reply to chromodynamic • • •Agreed.
Though if you get off the beaten path, you get things like system supervisor, system compiler, C library, and core utils.
But most Linux distros are systemd, GCC, Glibc, and GNU utils. Which brings us back to your list.
pyssla
in reply to Jack_Burton • • •pineapple
in reply to pyssla • • •Dessalines
in reply to pyssla • • •Xatolos
in reply to Jack_Burton • • •It's the difference between Windows 11, Windows 11 Pro, Windows 11 for Enterprise, and Windows Server 2025.
There are differences, but not dramatic differences. Some are just better tuned to certain users than others.
pineapple
in reply to Jack_Burton • • •I don’t think there is really too much difference either. Mainly the package manager is the main difference I guess. There are a lot of other differences but if you don’t really care about it then it doesn’t really matter.
The desktop environment makes a much bigger difference than the distro.
Ulu-Mulu-no-die
in reply to Jack_Burton • • •First thing to consider is they all use the same Desktop Environments.
Unlike Windows, in Linux the "graphic" is completely separated from the operating system, any DE can be uses on any distro, so trying different distros that come with the same DE, might make you think there's very little difference (at first look).
Second, almost all distros are derivatives, that contributes to make them feel similar. The original ones are just a bunch: Debian, Red Hat, Slackware, SuSe, Arch, Gentoo, everything else is based either on one of those or on another derivative, if your curious you can have a look at this graph: en.wikipedia.org/wiki/File:Lin…
So for example, if you take Ubuntu and Mint, they might look similar because Mint is based on Ubuntu.
If you want to see the real differences, you need to look at the original ones, the core differences are: the way software is packaged and managed, and the "philosophy" behind the way the system is overall administered, maintained and released.
Derivatives add differences to the user experience, they main reason they're created is someone is not completely happy with the way a distro does things and they create one the meets their needs, for example, Debian is improved dramatically on the user experience lately, but many years ago was quite arduous to setup and use for non-experts, so Ubuntu was born.
Now to answer you question
It does matter, tho it's not as much world-changing as some people seem to think (especially when it comes to gaming).
The most important things are support for your hardware and easy of administration/use. Most distros will recognize and setup your hardware out of the box, but some might require tinkering or extra steps. Some distros automate almost everything so the user doesn't need to think about it, others require more knowledge and more manual intervention, you have a much finer control of your system this way at the expense of some user friendliness, it's up to you to decide what you prefer.
Then it comes the Desktop Environment, different DEs do things differently, which one to choose is totally personal preference.
As for software, unless you go after some niche obscure distro, you shouldn't have problems finding it in the distro repositories. For edge cases you can always use Flatpaks or AppImages.
File:Linux Distribution Timeline.svg - Wikipedia
en.wikipedia.orgteawrecks
in reply to Jack_Burton • • •The better comparison is that distros are the operating systems (like "windows", "macos", and "android"), while "linux" is the kernel under the hood that end users likely never interact with (like "NT", "XNU", and..."linux").
A distro represents an intended user experience. If you want a distro that has an intended user experience that is similar to windows, go with Mint or OpenSUSE. If your desired experience is like the SteamDeck, install bazzite (with an AMD GPU ideally). If that's all you care to know, then that's all you need to know; go use your new system how you would any other.
But if you want to dig deeper, yeah, the fact that all the distros are based on linux (and more importantly, are posix compatible) means that a lot of the software is portable across distros. But that doesn't mean your experience on all distros will be the same. Different distros organize their filesystems differently, they might ship with different versions of core utilities based on the stability testing they've done, and they likely offer varying means of installing and managing new packages.
The tl;dr is, go use one distro, and then later try doing the same stuff in a different distro, and inevitably at some point you'll go "oh, this didn't work exactly how I expected because the other distro I'm used to handles this differently". That's the difference.
Lettuce eat lettuce
in reply to Jack_Burton • • •You're on the right track. Linux technically refers to the kernel, the low-level core of the operating system that everything else interacts with and is built on top of. Distros are just collections of components that have been standardized by some group or company.
Linux Mint is heavily customized Ubuntu with a different DE and all of Connonical's stuff removed. Nobara is a gaming-focused distro built on Fedora with a bunch of kernel modifications and pre-installed software to help games run better. CatchyOS is just Arch but with a really friendly installer that allows less advanced users to still enjoy many of the heavy customizations and cutting-edge software of Arch, etc etc.
Think of it like an engine. You can use the same engine in a bunch of different vehicles. You can also make modifications to the engine itself, but it will still essentially be the same engine.
The #1 rule for new Linux users, especially ones who aren't interested in becoming power users or tinkering with their OS, is if you're happy with your distro, stick with it.
There's no objective "correct" distro. The best distro for you is the distro that works and you feel comfortable with.
Lots of new users become worried that they are missing out on some major improvement in their experience of Linux or feel like they picked the "wrong" distro because some random user dissed it. Don't pay attention to that, if your distro does everything you need it to do and you enjoy using it, there's no reason to go looking for something better.
Now of course, there's nothing wrong with checking out other distros, and if you are somebody who likes to tinker with your setup and doesn't mind risking breaking things sometimes, then by all means, distro hop away. Almost all distros have a "live boot" option, which allows you to test the OS off of a flash drive without having to install it on your computer. It's a great way to quickly get the look and feel for a new distro without having to commit.
And of course, there are tons of Linux YouTubers who do reviews of distros, so you can watch those to also get an idea of the different options out there.
Because of the nature of FOSS and the linux ecosystem, you can make most distros look and feel just like any other, so that's always an option too.
Jack_Burton
in reply to Lettuce eat lettuce • • •This helps a lot, thank you. I've been feeling overwhelmed about making sure I pick the best distro and there's a lot of info bombardment. Additionally, I love this stuff so I know in a couple months there's a good chance I'll want to use another distro and I don't want to wipe everything again haha.
I use my PC for work, freelance audio production, voiceover, music, etc. I've been testing Ubuntu Studio on my laptop and it seems to be going ok so far (learning curve and lack of software aside) but I keep seeing people shoot down Ubuntu. Everyone seems to be talking about Bazzite and CachyOS but honestly I'm getting the impression they don't use Linux for much more than just gaming.
It all feels a little gate-keepy in ways and I got overwhelmed haha. Think I'll just keep chipping away with Ubuntu Studio and see if it'll do the trick for my main PC. Thanks again.
Lettuce eat lettuce
in reply to Jack_Burton • • •I used Ubuntu Studio many years ago when I was going through an electronica phase lol. It worked fine for me.
Don't sweat it, there will always be the hot new distros on the block. Right now it's Bazzite, CatchyOS, and NixOS, back in the day there was Garuda, Arco Linux, Bunsen, MX Linux, and a ton of others. Some are still around, some are long gone. Doesn't mean they are bad distros, many of them are/were great, but don't choose a distro just because everybody is talking about it.
Plus, as you get more experience with Linux, the differences matter less and less. There are only a handful of package managers, and unless you have some very specific technical requirements, they all do the same thing and work the same way.
"apt install firefox" becomes "yum install firefox", or "pacman -S firefox" it's all pretty much the same under the hood.
And if you use KDE Plasma on different distros, the Discover store works the same across distros, same with any other GUI package installer.
If you keep getting better and get into home lab building or just have several different computers, you might end up using a bunch or distros at the same time on different machines.
Right now across all my physical computers and virtual machines in my home lab, I currently have 9 different distros installed on various machines. Different distros for different purposes.
My general #JustWorks laptops and VMs use Linux Mint, my hardcore gaming rig uses Nobara, my test junker laptops run Debian 13, Void Linux, and Arch for testing random software and messing around. For my Docker containers, I run Debian 12 as the base, for my Minecraft server, Ubuntu Server, my Steam Deck is SteamOS which is just Valve's heavily modified spin of Arch, and my main lab's Type-1 hypervisor is XCP-ng, which is basically Fedora under the hood.
daggermoon
in reply to Jack_Burton • • •Green Wizard
in reply to Jack_Burton • • •j_anthemion
in reply to Jack_Burton • • •IMO, coming from the systems administration side of Linux, the most significant difference was package management and availability.
RedHat and clones were very conservative and focused on services like web, database, etc. With IBM purchasing RHEL, many switched to Ubuntu. Ubuntu is also favored by devs because the packages were more up to date.
biocoder.ronin
in reply to j_anthemion • • •Hi, request for comment: how do you feel about GNU guix? Is this the future of package management we wanted?
I've used RedHat and Ubuntu and Arch primarily because of the package ecosystem, and security is definitely major concern for most sysadmins (I am not one).
Is guix going to be the future? Thanks
JamBandFan1996
in reply to Jack_Burton • • •Jack_Burton
in reply to JamBandFan1996 • • •JTskulk
in reply to Jack_Burton • • •Squizzy
in reply to Jack_Burton • • •As someone completely new and stupid it feels like the desktop environment is the only difference I will ever notice. I was just about to move to bazzite and poke around until I realised the example and what I was picturing were just gnome.
At least I know im stupid.
thedeadwalking4242
in reply to Squizzy • • •Bronstein_Tardigrade
in reply to Jack_Burton • • •Jason
in reply to Bronstein_Tardigrade • • •Bronstein_Tardigrade
in reply to Jason • • •Wren
in reply to Jack_Burton • • •Really they all work the same as long as they're based on the same OS. I've done a lot of distro hopping and the only real difference I've seen is the desktop environment, package managers(sometimes), and pre-installed applications.
Even then, all of these can be changed. I would suggest picking a distro that best suits your needs by default and then add what you need from there.
I personally have been really happy with Linux Mint.