Home
Collections
Build Your Own
Catalog
How To Videos
Quick Reference
View Order Pad

About Us
Contact Us
FAQ
Linux News
Blog


 
 
Acceptance Mark
Amazon Pay





 

The LinuxCollections.com Blog

close
LinuxCollections.com Logo

LinuxCollections.com's Blog

LinuxCollections.com News, Technical information, and other interesting items.

Copyright © 2019-2026 LinuxCollections.com All Rights Reserved.

 

LinuxCollections.com's Blog

Requests, UEFI, Untested, Updates
written December 5, 2025 by Time Traveler
Category: BlogEntry Tags: By Request; UEFI; Untested    #60
 

We have had an increase in the number of specialty Linux distributions for our By Request page, so if interested in these smaller distros, be sure to browse the By Request page.

More & more distros are releasing "EFI" or "UEFI" required bootable versions, meaning a non-UEFI system won't do much of anything. Often, non-UEFI systems won't even show any issue, or error, they simply will sit there and do nothing. We have started to indicate this in the distro description so if you see a "UEFI"l designation in the description, be sure you have a newer/UEFI based systems. For those having no idea what UEFI means, here is a quick overview:

UEFI stands for Unified Extensible Firmware Interface. It is a replacement of the old PC BIOS (Basic Input/Output System), which had various limitations and the industry all agreed it made sense to enhance and drop the old (orginal IBM PC) approach. As a quick explanation of how the BIOS or UEFI fits into the puzzle, imagine the CPU (Central Processing Unit) and basic computer hardware - CPU, memory, hard drive, monitor. So when you turn on this hardware, what does it do? Where does it start reading instructions for the CPU? The BIOS was a starting point to initialize the hardware, input and output devices, and enough instructions to start loading an operating system (i.e. load a boot program from the hard drive (or floppy, or CD/DVD, or USB, or Network)). Originally the BIOS was a ROM (or Ready Only Memory), and slowly evolved into flash memory (that can be rewritten/updated, but typically required a special process to do this). So BIOS evolved into a firmware interface, and various players in the industry wanted to do things like customize systems, so the "extensible" aspect was added, and other players wanted the Secure Boot concept, where only things authorized by the hardware manufacturer could actually boot and control the hardware (but note this is also extensible for a more general approach), or could be bypassed with a Compatibility Support Module (CSM) that supported the "old" way to boot (i.e. the BIOS way). In order to make this work for all the players in the industry, a consortium got together to define this Extensible Firmware Interface, so we all now have the "Unified" Extensible Firmware Interface being the way personal computers are designed and built. A few other notes: UEFI is processor agnostic and supports x86, x64, ARM, etc. Instead of low-level assembler, UEFI has implementations in C language. There is a UEFI form that promotes the UEFI specification. Intel originally owned an EFI implementation, so the UEFI is more collaborative. ACPI was handled to the UEFI forum - this is the Advanced Configuration and Power Interface which manages things like system, device, processor power management, configuration plug and play, battery, system events, etc.

We have also added a few "By Request" items with "Untested" - this is because the distro provider has specific machine or graphic card requirements, and we do not have a machine that meets these specific requirements, so are unable to boot and test the release. We are able review the partitions and data on the media, but we have always tested and verified downloads to make sure that what deliver is bootable and imaged correctly. So this is not something we would do except with a By Request distro and acceptance of the risk by the requestor, and this is indicated with "Untested" added to the description.

Linux Desktop Usage breaks 5% of total market! (some say 6%!!)
written July 17, 2025 by Time Traveler
Category: BlogEntry Tags: Linux; Usage; Desktop growth;    #59
 

Linux has been on a steady growth pace, and with Windows 10 dropping support later this year, some expect this growth to increase. Windows 11 is just another facelift of Windows 10, but adds increased hardware requirements, locking out older (but fully functional) systems. The good news is that Linux provides a real alternative, and removes the issues of privacy invasion, adware, and forced updates. Linux continues to evolve, and is now more user-friendly and easier to run than ever. Many of the issues running Linux from 15-20 years ago simply no longer exist. Additionally, as computing has has moved towards the web and mobile, and basic functions have open source options (e.g. Firefox, Thunderbird, LibreOffice, etc.), there is less and less reason to get locked into the Windows world. Linux also provides support for older, but totally usable systems, and its software ecosystem continues to grow. Without all the overhead that gets thrown into Windows, you can experience a faster and cleaner desktop experience. More and more hardware vendors support Linux as it has become a market force that they can no longer ignore. Plus with everything open source, the flexibility that once was the draw to the personal computer continues in the Linux world (unlike Microsoft and Apple). Not to mention that various desktop environments exist (as well as customizable ones) where your ideal user interface can be realized. Virtual Machine technology also means you can still run Windows (if actually needed) as a "Window" on your Linux system!

LinuxCollections.com provides media services to both new to Linux "newbies", as well as experienced Linux users who use our service for the convenience. Thanks to all our repeat customers, and we appreciate the support which helps us market Linux to people who still don't realize what Linux can do for them...

Notes on Debian's sources.list
written March 17, 2025 by Time Traveler
Category: BlogEntry Tags: Debian; apt; sources.list; package management;    #58
 

We had a question from a customer regarding what happens after you do a full install of Debian from the Debian USB Complete Collection.

If you don't do anything but step throught the install, your /etc/apt/sources.list looks something like this like this:

deb cdrom:[Debian GNU/Linux 12.9.0 _Bookworm_ - Official amd64 DVD Binary-1 with firmware 20250111-10:55]/ bookworm contrib main non-free-firmware

If you boot the installed OS from your hard drive, and try to update/install any packages, you'll get a warning about the missing disc. If wish to use the USB for updates and your source (repository) for your pacakges, you want to use the mountusb.sh script in the USB_Boot/boot/mountusb folder. Refer to the notes, details, and links below (section labeled "Running without internet, want to use packages on USB").

However, if you want to use the internet for updates going forward, you will need to change the soures.list file

For a good discussion, overview, and examples, you can see the Debian wiki:

Debian SourcesList (info on the /etc/apt/sources.list)

About 40% down the page, you'll find the actual text you want for updates of both Debian and the Debian source. Note you can skip the deb-src lines if you will not want any source code updates.

deb https://deb.debian.org/debian bookworm main non-free-firmware
deb-src https://deb.debian.org/debian bookworm main non-free-firmware

deb https://security.debian.org/debian-security bookworm-security main non-free-firmware
deb-src https://security.debian.org/debian-security bookworm-security main non-free-firmware

deb https://deb.debian.org/debian bookworm-updates main non-free-firmware
deb-src https://deb.debian.org/debian bookworm-updates main non-free-firmware


Example (as super user/root user at the command prompt):

cd /etc/apt
nano sources.list
-or-
kate sources.list
-or-
gedit sources.list
-or-
YourFavoriteTextEditor sources.list

Comment out the existing line, add a comment, and you get:

#Commented out, use internet sources below
#deb cdrom:[Debian GNU/Linux 12.9.0 _Bookworm_ - Official amd64 DVD Binary-1 with firmware 20250111-10:55]/ bookworm contrib main non-free-firmware

deb https://deb.debian.org/debian bookworm main non-free-firmware
deb-src https://deb.debian.org/debian bookworm main non-free-firmware

deb https://security.debian.org/debian-security bookworm-security main non-free-firmware
deb-src https://security.debian.org/debian-security bookworm-security main non-free-firmware

deb https://deb.debian.org/debian bookworm-updates main non-free-firmware
deb-src https://deb.debian.org/debian bookworm-updates main non-free-firmware


Save these change, return to command line, and then run apt update

Running without internet, want to use packages on USB


You can refer to videos and other blog entries that shows this/walk through steps:

How to access ALL Debian packages from LinuxCollections.com's Debian Complete Collection on USB

How do I learn about all the programs available in the Debian USB Complete Collection (or the Debian all discs option)?

Some interesting tools
written February 5, 2025 by Time Traveler
Category: BlogEntry Tags: Bash scripts; Reminder e-mails; screencasting;    #57
 

This is a slightly different blog post, just a few interesting things that you can do with Linux (i.e. stuff that is actually used). The screencasting is just a quick overview and a working command with ffmpeg, while the reminder scripts is a truly functional approach to setup e-mail reminders in a quick and easy way.

Simple Screencasting (using VLC as viewer)

This grabs the display (x11grab -i :0.0+0,0 at the x,y of 0,0) with 1400x940 pixels portion of screen and streams via tcp to the network when the stream is opened on a separate machine using the same IP address/port 6666. The quality -q can range form 1-31, and there is some serious latency (and no audio). But it is a simple approach using a single command (ffmpeg) and a readily available VLC utility. There are ways to do different things (such as the audio), but it can also be a challenge to get the syntax and tie into your system correct. This should be pretty easy to duplicate (just use your correct IP address!). You can then dig into ffmpeg and other examples to do other things. This is on a Debian host.

### Use VLC at client and open "Network Stream" and use tcp://192.168.1.5:6666 (host IP)
ffmpeg -video_size 1400x940 -f x11grab -i :0.0+0,0 -framerate 10 -vcodec mpeg4 -q 12 -f mpegts -r 10 -listen 1 tcp://192.168.1.5:6666

Setting up reminder e-mails

There are 3 elements to this approach - a crontab entry, a runreminders.sh script, and a folder called reminders that has reminder as files named with the date to send the reminder via e-mail (i.e. you need to create these files, embed the script, and put in the text for your reminder (and make sure the file is executable as a script))

The easiest way to create a "new" reminder is to copy an existing reminder, e.g. cp 2025-05-01 2026-06-01, then edit new reminder to change script (if needed).

Also, you can add a cleanup section to runreminders.sh to clear up "old" files (but you may not want to if you want a history of these reminders)
This could be something like:

for rmfile in `find /home/user/scripts/reminders/* -mtime +10`;
do
  echo Removing this file: $rmfile;
  rm -r $rmfile
done
Note: This uses the file modification time, so depending on how you create the reminders, this may not work the way you wish. You could be a less than check in the else condition in runreminders.sh to delete older files, e.g. if [[ "$CHKDATE" < "$CURDATE" ]] ;

Below are the 3 pieces:

crontab entry (typically crontab -e to edit & update crontab for user)

#Reminders run at 6am every day, refer to /home/user/scripts/reminders/readme.txt
0 6 * * * sh /home/user/scripts/runreminders.sh


runreminders.sh

Note - if using sh (vs. bash), the syntax below will not work, but this is easily resolved by making a sh script that runs bash to run the bash script, e.g.

#!/bin/sh
# Filename: runreminders
# want bash for if check, use this to call runreminders.sh with bash from crontab

/bin/bash /home/user/scripts/runreminders.sh

exit 0
(And change crontab to run runreminders vs runreminders.sh)

#!/bin/bash
# Filename: runreminders.sh in /home/user/scripts
# Date Revised: 2025-02-05
# Overview - run every day, looks for file with date filename, and if match
# to current date, sends e-mail (script/reminder embedded in actual file)
# so reminders folder has files like 2025-05-01, 2025-12-11, 2026-01-01, etc.

CURDATE=`date +%Y-%m-%d`

for item in `ls reminders/*`
do
  CHKDATE=`basename $item`

 # echo $CURDATE
 # echo $CHKDATE

  if [[ "$CHKDATE" = "$CURDATE" ]] ;
  then
   echo "Current date $CHKDATE is equal to $CURDATE - Sending Reminder EMail!"
   ./reminders/$CHKDATE
  else
   echo "Current date $CHKDATE is not equal $CURDATE"
  fi

done

exit 0

The file readme.txt explains what is in the reminders folder, with a sample script embedded - to start, you can copy readme.txt to YYYY-MM-DD, e .g. cp readme.txt 2026-01-01, then delete everything up to the #!/bin/bash line, save it, and finally make it executable, e.g. chmod a+x 2026-01-01

readme.txt file
readme.txt

reminders sub folder, used by ../runreminders (in crontab)

Format must be YYYY-MM-DD

Refer to existing file for script, e.g. the file name 2028-05-12 is tagged
to be executable as a script, (e.g. chmod a+x 2028-05-12), and has the
following script

File YYYY-MM-DD:

#!/bin/sh

# sendmail command line optons:
# -i - do not treat lines starting with dot specially
# -t - read recipients lists from message headers: TO,CC,BCC
# -v - use verbose mode (describe what is happening)
#
# The empty line separates mail headers from mail body.
# Without -t recipients should be listed after command line options.

REMDATE=`basename $0`

#echo $REMDATE

FROM='mail@example.com'
TO='Your Name '
/usr/sbin/sendmail -i -t << MESSAGE_END
To: ${TO}
From: ${FROM}
Subject: Reminder E-mail - $REMDATE

This is the reminder to do something you wanted to be reminded about, sent on $REMDATE
MESSAGE_END

Introduction to GUI Development
written November 1, 2024 by Time Traveler
Category: BlogEntry Tags: Introduction to GUI Development; Development; Graphical User Interface;    #56
 

We have released a video giving an overview to developing several examples in the Graphical User Interface. For those that just want the zip, we will continue the overview below…

You can download the zip file here:
intro_gui_dev.zip

The video walks through setting up a development system, an overview of basic development concepts, and goes through 3 Graphical User Interface approaches - Xlib (X-windows), GTK, and Wayland. Each example shows how to get a window on the screen, and the fully commented source code is in the zip file. We point out that there was only 1 example ever written, which gets a window on the screen, and then everything else is built from that template. The zip file has those templates for X, GTK, and Wayland. The README.TXT from the zip is included below for reference, and the video link follows.

LinuxCollections.com How To Video - Introduction to GUI Development

File: README.txt
Files used in examples/video:
mountoptiso.sh,
build, hello.c,
buildx, hellox.c,
buildgtk, helloworldgtk.c,
buildwayland, hellowayland.c, xdg-shell-protocol.c

Introduction to GUI Development
(the Graphical User Interface)

To begin with, we are going to start with a very basic C program, to lay the groundwork for
development, and cover some very basic "getting started" foundational items.

We will be using our Debian USB Developer Collection from LinuxCollections.com
All references will be on the Debian system and using the apt system (apt-get) to
install development tools, libraries, and header files.

We will indicate command line text by ending with "[Enter]"
Script code will be separated with ################## lines
Source code will be separated the /*********************/ lines

To start with, we use a new hard drive, install Debian 12.7.0 with ALL Desktop environments
(so we are able to test/work with different Window Managers/Desktop Environments)

Then we copy all the ISO files from the USB to the /opt/iso location, and as super user (root),
we mount all these iso files and add them to the sources.list for apt, so we have access
to ALL packages. The specific steps would be as follows:
1) su/password, run as root
2) cd /opt
3) mkdir iso
4) cd iso
5) cp /media/[user]/USB_Boot/boot/iso/*.iso . (THIS WILL TAKE AWHILE!)
6) cp /home/[user]/code/mountoptiso.sh .
7) ./mountoptiso.sh

So one of the reasons for these details are to help people new to Linux to
understand what is needed to do development work. So where to start?

The Debian wiki has a Building Tutorial, so let's start there...

For reference, this is the site that covers modifying Debian source
https://wiki.debian.org/BuildingTutorial

As outlined there, the very first set of packages to be installed are listed.
Even if we aren't going to modify Debian packages, let's get these installed
so we have a good base for doing development work.

For required build tools, etc., make sure to install essentials, e.g.:

apt-get install build-essential fakeroot devscripts[Enter]

At this point, we can actually build (compile) source code and create
working programs. Let's do that with the basic Hello World! program.

See the build script and hello.c
#################################################################
#!/bin/bash

#build script

echo "Begin..."

gcc -o helloworld hello.c

if [ $? -eq 0 ]; then
echo "Hello built!"
else
echo "gcc compile failed with exit code $?"
fi

#################################################################
/***************************************************************/
/*********************************************************************************************
* hello.c
********************************************************************************************/
#include
#include

void main(void)
{
printf("Hello World!\n");
}
/***************************************************************/

For the XLib / X-Window example (buildx, hellox.c) you will
need the X11 XLib headers and libraries. The Debian package is
"libx11-dev" - to install:

apt-get install libx11-dev[Enter]

The buildx script looks like this:
#################################################################
#!/bin/bash

#buildx script

echo "Begin..."

#apt-get install libx11-dev

gcc -o helloworldx hellox.c
#gcc -o helloworldx hellox.c -lX11

if [ $? -eq 0 ]; then
echo "Hello built!"
else
echo "gcc compile failed with exit code $?"
fi

#################################################################

As noted in the comments, this package is required

We won't be including the source code due to the increasing length,
so you have to reference the file directly - hellox.c

For the GTK example (buildgtk, helloworldgtk.c) you will
need the pkgconf (Package Configuration), and the GTK-4 headers
and libraries. The Debian packages are "pkgconf" and "libgtk-4-dev"
To install:

apt-get install pkgconf[Enter]
apt-get install libgtk-4-dev[Enter]

The buildgtk script looks like this:
#################################################################
#!/bin/bash

#buildgtk script

echo "Begin..."

#apt-get install pkgconf
#apt-get install libgtk-4-dev

gcc $(pkg-config --cflags gtk4) -o helloworldgtk helloworldgtk.c $(pkg-config --libs gtk4)

if [ $? -eq 0 ]; then
echo "Hello built!"
else
echo "gcc compile failed with exit code $?"
fi

#################################################################

For the wayland example (buildwayland, hellowayland.c) you will
need the wayland headers and libraries. The Debian package is
"libwayland-dev"
To install:

apt-get install libwayland-dev[Enter]

The buildwayland script looks like this:

#################################################################
#!/bin/bash

#buildwayland script

echo "Begin..."

#apt-get install libwayland-dev

gcc -o hellowayland hellowayland.c xdg-shell-protocol.c -ggdb3 -lm -lwayland-client `pkg-config --cflags --libs pangocairo` `pkg-config --cflags --libs cairo`

#to build with full debug information add in -ggdb3
#gcc -o hellowayland hellowayland.c xdg-shell-protocol.c -ggdb3 -lm -lwayland-client `pkg-config --cflags --libs pangocairo` `pkg-config --cflags --libs cairo`

if [ $? -eq 0 ]; then
echo "Hello built!"
else
echo "gcc compile failed with exit code $?"
fi

#################################################################

As one final note, we introduce valgrind, which is a development tool that can find memory leaks. It is too involved to go into here, but we want you to be aware of it. Refer to valgrind documentation and examples to learn about it. Note in these 4 examples, the high-level ones (GTK/Wayland) have memory leaks, even though there is code to clean things up on exit.

apt-get install valgrind[Enter]

Debian Updates, some customer feedback, news clip
written September 9, 2024 by Time Traveler
Category: BlogEntry Tags: Debian 12.7.0; Debian 11.11.0; Customer feedback; news;    #55
 

With the release of Debian 12.7.0 (now available), Debian has also released 11.11.0, the final release of the Bullseye major release. This will be available shortly, as we have been asked to also provide the final, final release of all major releases.

Recently a customer claimed they had a defective disc, and returned it. After verifying the disc was actually properly duplicated, we proceeded to send them a duplicate (for reference), and an older release to test. Since at this point, the only real winner was the US postal service, we were pleasantly surprised when that customer called and offered to pay for the 2 additional discs we sent. We always recommend customers review this blog entry if any disc issues (or what you think are disc issues): Disc Data

Also, along those pleasant feedback vibes, we just received this from a customer:


Thank you so much for providing so many quality Linux distributions.
I initially tried to do Fedora installations on my own by downloading iso images from Fedora Project archives and using tools to make bootable distributions. I failed terribly.
I finally ordered Fedora Workstation 36 and Fedora KDE 36 from your site. The distributions worked perfectly! I also appreciate the Media Test utility that was included.
You guys rock!
CS

Finally, we posted this on our Facebook pages:
News: "The Linux operating system has reached a notable milestone in desktop market share, according to the latest data from StatCounter. As of July 2024, Linux has achieved a 4.45% market share for desktop operating systems worldwide. What makes this achievement even more thrilling is the upward trajectory of Linux's adoption rate."

Thanks, LinuxCollections.com customers!

USB Collection Updates - Most Popular, Fedora, Ubuntu
written May 1, 2024 by Time Traveler
Category: BlogEntry Tags: USB Collection Updates;Most Popular;Fedora;Ubuntu    #54
 

With the release of Ubuntu 24.04 LTS and Fedora 40, we've updated all the Collection USBs that contain these distros.

Both the Ubuntu & Fedora require 64GB USBs to hold the ever-growing size of the releases. In a bold and almost unbelievable move, we have lowered the price on these USBs down to $29.95. How is that for an inflation fighter?! The Most Popular fits on a 32GB USB, but we have had to drop a few distros since it was originally released, and is available at only $24.95

For the current distros on the Most Popular Collection USB, see the Catalog #51006

For the full listing of the distros on the Fedora USB Collection, see the Catalog #51011

For the full listing of the distros on the Ubuntu USB Collection, see the Catalog #51012

Testimonials, Feedback, Input & Updates
written March 27, 2024 by Time Traveler
Category: BlogEntry Tags: Testimonials; Feedback; Input; Updates;    #53
 

We received 2 unsolicited praiseworthy e-mails in the last few weeks, and figured we would share it on the blog. Thank you to all LinuxCollections.com Customers!


March 14, 2024

Great purchase process...

A phone number with a human (who actually answered the call and patiently answered my pre-sales questions) was also an unexpected and pleasant surprise.

well done!
GW

March 26, 2024

This was my third order from LinuxCollections.com & it was the fastest shipping time yet = seven business days from California to Nova Scotia, with no damages to the cardboard box or the contents.

Awesome job, keep up the great work, & THANK YOU for providing this important service to all of those who use it now & in the future!
RT

It is funny how the world changes. The issue with advertising on Facebook has never been resolved, even with a physical snail mail letter sent to a company with thousands of employees. No one could even bother to respond. This is why the LinuxCollections.com What's New page is the preferred Facebook page. Similarly, the Amazon Pay issue seemingly ended with an e-mail saying we will no longer respond to this issue, even though it was not made clear what we could do to satisfy their requirements. Just for kicks, we also wrote them a physical letter. Again, no response at all. We have left the Amazon Pay option on the site in the hopes that one of the thousands of people who work at Amazon will someday look at the letter, and at least take the effort to explain what the exact issue is. Specifically, they say we are in violation of their policies, and point to dozens of items, not clearly identifying what we can do to satisfy their interpretation. We sort of believe it has to do with accepting Debian donations, but are not really sure. It is both frustrating and sad that even common courtesy, and reasonable customer service is lost on these large organizations. But the only constant is change, and perhaps things will change for the better as time marches on.

Also, it still is amusing to us when people on Facebook take the effort to point out people can do what we do at home. It is possible some people may not realize this, but most or all of our customers know this. We like to say to people it is like a restaurant or car wash - sure people can make the food they want to eat at home, or wash their car themselves, but it is also nice to get the convenience of having the work done for you. Also, we have some customers that don't have reliable internet, or want large quantities of discs, etc., etc. Also downloading all of Debian takes awhile, and it sure makes sense to get it all on the Debian USB Complete Collection at a reasonable price, with no headache or frustration and just a few clicks on our website.

Happy New Year 2024!
written January 2, 2024 by Time Traveler
Category: BlogEntry Tags: USB; Notes; Price; Amazon Pay; What's happening;    #52
 

The Free USB Promo is over - thanks to all our hundreds of customers who received a Free USB! Note: The last few Free USBs may not be reflected in your order as a line item.

To reflect changes in the world at large, we have bumped up our prices just a bit starting in 2024.

Amazon Pay has suspended support for the site because we accept Debian donations. We are working with them to see if we can find a solution. We have been doing this for years, but somehow either due to changes in their policies (or actual enforcement), this has raised an issue from their point of view. Hopefully this can get resolved. Please use PayPal or a credit card.

Archives

Archive Year: 2023

Archive Year: 2022

Archive Year: 2021

Archive Year: 2020

View Current
View News & Commentary
View Support Items
View All

Blog Information

Requests, UEFI, Untested, Updates
December 5, 2025
Time Traveler
Category: BlogEntry
Tags: By Request; UEFI; Untested
 

Linux Desktop Usage breaks 5% of total market! (some say 6%!!)
July 17, 2025
Time Traveler
Category: BlogEntry
Tags: Linux; Usage; Desktop growth;
 

Notes on Debian's sources.list
March 17, 2025
Time Traveler
Category: BlogEntry
Tags: Debian; apt; sources.list; package management;
 

Some interesting tools
February 5, 2025
Time Traveler
Category: BlogEntry
Tags: Bash scripts; Reminder e-mails; screencasting;
 

Introduction to GUI Development
November 1, 2024
Time Traveler
Category: BlogEntry
Tags: Introduction to GUI Development; Development; Graphical User Interface;
 

Debian Updates, some customer feedback, news clip
September 9, 2024
Time Traveler
Category: BlogEntry
Tags: Debian 12.7.0; Debian 11.11.0; Customer feedback; news;
 

USB Collection Updates - Most Popular, Fedora, Ubuntu
May 1, 2024
Time Traveler
Category: BlogEntry
Tags: USB Collection Updates;Most Popular;Fedora;Ubuntu
 

Testimonials, Feedback, Input & Updates
March 27, 2024
Time Traveler
Category: BlogEntry
Tags: Testimonials; Feedback; Input; Updates;
 

Happy New Year 2024!
January 2, 2024
Time Traveler
Category: BlogEntry
Tags: USB; Notes; Price; Amazon Pay; What's happening;
 


Archives

Archive Year: 2023

Archive Year: 2022

Archive Year: 2021

Archive Year: 2020

 
 

LinuxCollections.com Logo
  • LinuxCollections.com News, Technical information, and other interesting items.
  • LinuxCollections.com is your premier source for Linux distros on CD/DVD/USB.

Send LinuxCollections.com a note via e-mail...