Saturday, August 10, 2019

Collect information about your Linux problem, to receive HELP

Article by Debdut Chan first published on Medium.com

Are you having problems with the distribution you just installed? Or after an upgrade? Maybe the display server isn’t working or network interface isn’t showing up. There can be hundreds of problems that you might encounter. The question is what should you do when you face such an issue? First, you’ll need to research the problem by yourself. If that doesn’t work, then you should go to your distribution’s forum or there can be some very good Linux support groups at Facebook. But whatever place you choose, stepping in and posting “My WiFi isn’t working, what should I do?” isn’t gonna do any good neither to the people in the group nor to you. You need to give them some basic details, error reports, logs so that they can understand what’s wrong. But how’re you going to achieve that? Don’t worry. I’m here to help you help the group/forum members help you! Don’t get confused, just continue reading -

I’ll be mentioning 5 commands that’ll help you get those reports. But before talking about those I’d like to take a bit of your time and talk about bash pipelines. If you already know what that is, skip this part. Pipeline is a bash feature that lets us forward one command’s output to another commands parameter. let’s use a simple echo example :

$ echo “lsb”

This will print lsb on the display. Now what if we echo a big big sentence, and we’re asked to find whether that line has the word “Linux” in it or not. This is when a pipeline comes in handy. There’s another command named grep, this prints characters that match a certain parameter(pattern) passed to it. The format of grep is

$ grep pattern FILE

A pattern can be any string. We can use grep and pipelines to get a very convenient log extraction. Let’s see an example :

$ echo “This is Least Significant Bits \
You’re reading one of our posts” | grep Significant

What happens when you press enter? The output will have “Significant” highlighted. What happened here is, the output of the echo command, the full string, got forwarded as the second parameter to the grep command. So if we see that above command in stages, this is what’s happening :

stage 1: echo “This is Least Significant Bits \
You’re reading one of our posts”
stage 2: grep Significant “This is Least Significant Bits \
You’re reading one of our posts”

The second stage doesn’t really work that way, because the second param of grep is a file, and here I’ve written a string. So in a pipe command what happens is after the echo command, the output, as it’s not getting printed right then and there, gets into the buffer cache, and grep reads that from the buffer.

Now that we now know how pipelines and grep work, we can talk about those commands that we mentioned earlier.

1: dmesg

According to the manual of the dmesg command,

dmesg is used to examine or control the kernel ring buffer. The default action is to display all messages from the kernel ring buffer.

So what is kernel ring buffer? A kernel ring buffer is a type of buffer that records operations related to the kernel. Why’s this important? Well, in easy words, the kernel loads the drivers and modules on boot, so through dmesg you’ll be able to look in detail, whether the necessary drivers and modules are loaded or not.

Although there are a lot of options for this command, you won’t need most of them. This command is mostly used with a grep pipe like this :

$ dmesg | grep something

If you know what driver or module you need loaded, you can search for that here. For example, suppose you’re using amdgpu display driver, you can check whether the driver and module are loaded on boot or not, by

$ dmesg | grep amdgpu

You can also use lsmod command to list all the listed modules, and use grep pipe to filter only the modules that concern you or the issue. Use it like this,

$ lsmod | grep amdgpu

Although lsmod tells you if the modules are loaded or not, it doesn’t mention any error or reason why something isn’t loaded. You can also shortlist if there’s any error or warning in the kernel ring buffer by

$ dmesg | grep -i warning
$ dmesg | grep -i error

The “-i” makes the pattern matching case-insensitive. So “Warning” and “warning” will be the same. This way you won’t leave anything out.

2: lspci

Chances are, you’ll cross paths with this command a hundred times in your future (If you stick to Linux). This command lists all the connected pci devices. List-PCI, hence lspci. You can use this command to check your VGA controller, network adapter model, the driver that it’s using, module name, all. Here are a couple of useful options for this command -

$ lspci -k // Lists all the devices with the driver in use and modules.
$ lspci -v // A verbose output. Gives details about each individual devices. Use this if you’re unsure about what to use.
$ lspci -vv // More verbose than the previous.
$ lspci -vvv // No you won’t really need this, this is a more verbose output than the previous.

More on this command later on this article.

3: lshw

List-Hardware — hence lshw. As the name suggests, this command lists all the hardware that your PC has. This command’s very similar to the previous one. Some important options are,

# lshw -html or lshw -xml // Both outputs the device tree as html and xml page respectively.
# lshw -short // Output shows hardware paths.
# lshw -businfo // Shows bus information
# lshw -C or lshw -class // Shows output specific to hardware classes. More on this later.
# lshw -dump filename // Exports the collected information to a file

More on this command later on this article.

4: inxi

This is another handy tool which provides you all the necessary information about your hardware, and much more. Here are some options,

$ inxi -A // Shows audio card information
$ inxi -D // Shows your hard drive details
$ inxi -C // Shows detailed CPU information
$ inxi -F // Shows full inxi output
$ inxi -G // Shows graphics card information
$ inxi -i // Shows ip addresses, interface names etc

There are too many options for this commands. It’s advised to read the manual. To read the man page, open a terminal, type,

$ man commandname

5 : cat /var/log/filename or cp /var/log/filename ~/

In any system, if anything goes wrong, the first thing anyone should be doing is to look for the logs. Most programs generate a log file, where you can see what went wrong. In Linux, all the log files can be found in /var/log/ location, unless said otherwise(Read the package’s documentation for info). So what you can do is first list all the files present in /var/log/ . You can do this by using

$ ls -al /var/log/

After everything is listed, find the name of the package of which’s log you’re trying to find. Let’s say you’re having issues with xorg server. What you can do is use cat command to see the contents of that file,

# cat /var/log/xorg.0.log

or you can copy the file from that directory to your home directory, then either examine it, or provide that file to the forum/group members. You can also use grep to find errors directly,

# cat /var/log/xorg.0.log | grep error > ~/xorg-error

This will see if the “error” pattern matches with anything in the log file or not, if it does, then it’ll cut that portion and forward that to a file named xorg-error in your home directory. You can also remove the xorg-error file part and just grep error, to just examine the error in the terminal.

So now that you know the basic commands let’s just discuss in short, how and when use those commands. I’ll be showing you two example situations.

Case I :

Let’s say you’ve successfully booted your system, and now, the network connection isn’t working. Here’s what you can do to provide the group/forum members some basic information, so that they can smoothly provide you the solution.

First let’s check whether the network interfaces are detected or not. We can check that with the ip command.

$ ip a

This will list all the network interfaces detected by your OS. If your concern is about any ethernet interface, find interface names like “eth0” or “enp2s0”, they normally start with an “e”. And if you’re concerned about you wireless interface, look for something like “wlan0” or “wlp3s0”. They normally start with a “w”.

Now if you can’t find any interface names, you should check whether your device is detecting your network adapters or not, and if it is, then what are the names of those drivers. We can achieve this by either lspci or lshw. It’s your call. I’ll show you both. With lspci :

$ lspci -v

From here, find “Ethernet” or “Wireless” parts.

With lshw, the process is a bit easier,

# lshw -C Network

This command will list all the hardware components that are a part of the Network class.

You can also use inxi,

$ inxi -N

Now if you can’t find any Networking device from these lists or you found one, but there wasn’t any driver or module mentioned, go to the forum or group, post those outputs, and ask for help. But if you got any device name and driver or module name, it’s time to check whether they were loaded in boot or not using dmesg. Let’s say inxi -N gave you r8168 driver for your ethernet controller (You can also use lsmod before dmesg). Use the following command

$ dmesg | grep r8168

Then post that output in the forum or group.

Case II :

Now, let’s you’re experiencing problem with your display. Maybe xorg isn’t starting, or something else. For this, go to a different tty (I’m considering you are unable to log into any GUI for any possible problem). From there, do the same as before. Collect data about your hardware.

lspci :

$ lspci -v or lspc-k // Find either VGA or Display Controller

lshw :

# lshw -C Display

inxi :

$ inxi -G

If you found any driver or module name, grep that from dmesg output,

$ dmesg | grep displaydriver

Now you can also check for errors inside of the xorg log. Do this by,

# cat /var/log/xorg.0.log | grep error

Now whatever those outputs were, post those along with the question, and trust me, it’ll be much easier to help you.

There you go. A very simple guide to follow that’ll help both, you, to learn more about your hardware, and also the members of the forum or group. Let me clarify one more thing before wrapping this up, all that I mentioned here, are not everything. Those in the group might ask you for some more data. Also, each of those commands has much more to them than just those that I mentioned. But these will help you to start. These will help you learn more about your own system’s hardware. Now if you want to know more about each of those commands, consider reading the man pages by “man commandname”.

Anyway, thank you for reading the whole article. If you’ve read all the way down here, trust me I’m very much grateful. If you liked this article, consider sharing. Sharing will help me a lot. It’ll also help other beginners in getting better help from the forums and groups. Have a nice day. Good Bye. See you later.







Here's a link directed to Medium : https://link.medium.com/ba4fNgE80Y

Thursday, May 23, 2019

3 methods to Encourage Learning Linux in Middle School


  1. ) Kids learn Linux. Kids use that knowledge to help people in the community. Kids use Linux to help our school.

. The Linux Club guide

2. )
Start with a 1 Gigabyte or larger USB Flash drive to install Fatdog64 802 Release software.
http://puppylinux-or-pcbsd.blogspot.com/2019/04/fatdog64-800-release.html
based on this blog post 10 minutes, 2 downloads, 1 usb flash drive
http://puppylinux-or-pcbsd.blogspot.com/2016/08/10-minutes-2-downloads-1-usb-flash_10.html
Two tools useful for MS windows to write a .ISO image file to a USB flash drive:
https://etcher.io and https://rufus.ie Balena Etcher is also available for Linux, MacOS, Windows
Use the frugal install method of booting from the USB flash drive and  keeping the changes and file saved back on to that same USB flash drive.   This method creates a persistant file folder, that holds your changes for use in the next boot.

3. )
Do you live out in the rural area with little to no internet access?  Create your own internet, with a Rachel file server from WorldPossible.org .   Use an existing x86 computer or make from a RaspberryPi ARM computer and a 32 Gigabyte USB flash drive.

4. )  Share your Linux knowledge with others.   Create a blog at  blogger.com.  Create a personal Wiki.


What observations do you have?   How do you create these items?
Write a HowTo blog post.  Pick an idea, write about that idea,  edit in some URL links for more information to read,  Print out your post to a PDF file that you can post for someone to download and read offline.













Thursday, April 11, 2019

Fatdog64 810 Release January 20, 2020


Fatdog64 Installation URL Links.   First Release Notes

Main Web page Fatdog64 800 Release
Fatdog64 810/802/801/800 Final Release Forum page
From the Desk of James, Fatdog64 801 Final notes


http://distro.ibiblio.org/fatdog/web/latest.html  810 Release Notes
Fatdog64-810 Final Release Notes
Fatdog64-810 Final was released on 20 January 2020.
Fatdog64-810 GNU/Linux is the fourth release of Fatdog64 800 series, which is based on LFS 8.2/CLFS 2017.07.
This is a maintenance release. Main reason for the update is Intel ZombieLoad/DMS security flaws requiring kernel update and microcode update, which are included in this update.

Minimum requirements: 64-bit x86-64/AMD64 CPU and 1GB RAM. Most Intel and AMD CPUs produced after 2008 support 64-bit (including many Intel Atoms).

Test drive Fatdog64 801 release online at Distro Test with just your web browser, no download or not installation necessary  Fatdog64 801 release

https://distrotest.net/
Test 200+ different Linux Distributions from your web browser on Windows or MacOS.   See which one you like.

10 minutes, 2 downloads, 1 usb flash drive and you can test a live linux distribution of your choice.  Here, I suggest you try Fatdog64 810 Release

Download  Fatdog64 .ISO files here:
http://distro.ibiblio.org/fatdog/iso/Fatdog64-810.iso  810 Release version
http://distro.ibiblio.org/fatdog/iso/Fatdog64-800.iso  800 Release version
http://distro.ibiblio.org/fatdog/iso  ISO directory to see all files there

or Download  BionicPup 8.0 32 bit or 64 bit here: Puppylinux.com  BionicPup 8.0

Download  a USB writer application  Balena Etcher USB Writer  or Rufus USB Writer for Windows
for linux or GhostBSD  use 'dd' command "dd bs=4M if=Fatdog64-810.iso of=sdX"   where sdX could be sdb or sdc or sdd.   Depends on your system setup


Two tools useful for MS Windows to write a .ISO image file to a USB flash drive:
https://etcher.io and https://rufus.ie Balena Etcher is also available for Linux, MacOS, Windows
Use the frugal install method of booting from the USB flash drive and  keeping the changes and file saved back on to that same USB flash drive.   This method creates a persistant file folder, that holds your changes for use in the next boot.


Murga Linux com Forum posts
Forum Posts for Fatdog64 800 Release

FAQ harddrive install page

UEFI. Partition, Windows 8 install notes

super-grub2-disk website. Look for file supergrub2_x86-64.EFI.

Copy file to the EFI fat32 boot partition among the other UEFI boot files.  Use this supergrub2_x86-64.EFI boot file to help select / manage which partition you wish to boot when grub is borked.  Supergrub2 will search and display all the bootable partition/files and give you the choice to select which one to boot.
https://sourceforge.net/projects/supergrub2/files/2.02s10/super_grub2_disk_2.02s10/super_grub2_disk_standalone_x86_64_efi_2.02s10.EFI/download


I like the Fatdog64 810 release for GParted app to partition a SSD or a hard drive, and I like LibreOffice 6.1.2 app for ability to export PDF files from a document file. Last, the ability
to import pictures from smart phone using MTP media Transport Protocol to my puppylinux usb flash drive.  All very fast execution.  This Fatdog64 810 release is a great tool to carry around on a USB flash drive in your pants pockets for when a friends computer has problems.

3 USB flash drive writer tools to install/burn a .ISO file to a USB flash drive.
http://rufus.ie. Rufus 1.5 megabyte single file application for Windows operating system.
http://etcher.io . Balena Etcher tool supports Windows, MacOS, and Linux for safely writing a single .ISO file to a USB flash drive.  This Etcher tool is 50 - 70 megabytes in Size.

Popsicle USB writer tool GitHub https://github.com/pop-os/popsicle

My Twitter post link to here.
https://twitter.com/finster_fred/status/1116450672545632256?s=20


Rufus or balenaEtcher - Home 2 software apps to turn a USB flash drive into a bootable stick
Fatdog64 810 Release January 20, 2020 My blogpost on a small Linux that runs from a usb flash drive without changing your windows setup or partitioning your hard drive.
Puppy Linux Home BionicPup 8.0 is here.
Puppy Linux Discussion Forum :: Index
Puppy Linux Search of the Puppy Linux Discussion Forum :: Index forum posts.

YouTube Video of Fatdog64 Linux 801 release

https://m.youtube.com/watch?v=Nvg-JqttWiY

10 minutes, 2 downloads, 1 usb flash drive and you can test a live linux distribution of your choice.

Monday, March 18, 2019

120 GByte HP SSD S600 $20 at Office Max

HP SSD S600 120GB, 240GB available at Office Depot, Office Max, and Staples
2.5" SATA form factor
https://www.officedepot.com/a/products/8517469/HP-S600-25-SATA-III-120GB/?cm_mmc=PLA-_-Google-Mobile-_-Data_Storage_Media-_-8517469&ds_rl=1256068&gclid=Cj0KCQjwg73kBRDVARIsAF-kEH_PCkk9WjbXy-ECTtfrDz2uyeg0_ayC5NQBn1Eueu-jT4Q6Zp5OBxIaAs2_EALw_wcB&gclsrc=aw.ds

PNY SSD CS900 120GB, 240GB  2.5" SATA form factor
https://www.google.com/shopping/product/7714108446963313734?lsf=seller:10048,store:14138474858560335242&prds=oid:2848764633364273692&q=officemax+ssd&hl=en&ei=MSuQXPqpOqvP0PEPhbidoA0&lsft=adlpxid:pla;757375355992;325594113029;m;9032963;pla-757375355992;2801236;pla;local;1405&lsft=gclid:Cj0KCQjwg73kBRDVARIsAF-kEH9NEEdhqeCIxo74trmtpB--5-v_1oo05L42BvSPWxneSIw332jeOe0aAvM5EALw_wcB

Here you go, tryout a 2.5" inch SATA SSD solid state drive in your laptop or desktop to improve Steam Gaming experience.

Fred

I will post about installing LinuxMint 19.1 Tessa to this SSD and then install Steam and update drivers.  Cinnamon, Mate, or Xfce  Desktop Environments your choice.

Http://LinuxMint.com



https://github.com/jonbitzen/ConvergenceOS/issues/1

Here is my fork with updates to jon bitzens ConvergenceOS
https://github.com/wb7odyfred/ConvergenceOS
To use this to help install Steam on Ubuntu 18.04, Linux Mint 19.1, or Debian 9.6:
Open a terminal window, change directory to home, and issue a git command
to download the files of the ConvergenceOS directory
cd ~
git clone https://github.com/wb7odyfred/ConvergenceOS.git
cd ConvergenceOS
./build_convergence_zenity.sh
You may repeat run this bash shell script file ./build_convergence_zenity.sh.  It will update your LinuxMint operating system, create a couple desktop icons, and install Steam application to your user.

My Fedora Reddit Comment on install glibc-i686 32 bit library to fix missing libc.so.6 when starting Steam
https://www.reddit.com/r/Fedora/comments/aoin2k/steam_fedora_29/
 sudo dnf install glibc-i686

I welcome you questions and comments below to create a better Steam Installation experience.

Wednesday, December 19, 2018

Linux Mint 19.1 available

https://betanews.com/2018/12/19/ubuntu-linux-mint-191-tessa/
https://betanews.com/2018/12/19/ubuntu-linux-mint-191-tessa/

 you are tired of the Windows 10 nonsense, and want to try an alternative operating system, Linux Mint is a great starting point. Make no mistake, however, even though it is a good option for beginners, many experts use it too. Today, the newest version becomes available for download -- Linux Mint 19.1 "Tessa." This follows a fairly short beta period.
 I use and enjoy Linux Mint 19.1 Tessa on my own 120 Gigabyte 2.5" inch sata SSDs.   Fred

https://www.forbes.com/sites/jasonevangelho/2019/03/29/shadowhammer-asus-1-million-reasons-switch-from-windows-to-linux/#7e4158ee4a4a

Asus Just Gave You 1 Million Reasons To Switch From Windows To Linux.

Cyber-security and antivirus company Kaspersky dropped a bomb on Asus laptop users this week, revealing that malware was distributed through the Asus Live Update utility. It masqueraded as a legitimate security update, and even boasted a "verified" certificate -- hosted on Asus servers -- to make it appear valid.

Well what is your opinion?  Sticking with Windows 10?   Want to change to Linux?

DistroWatch informattion on 100 Linux distributions.

Puppylinux 8.0 Bionic Beaver version

Fatdog64 800 release

Gaming on Linux series of article by Jason Evangelho at Forbes.com

about using Steam and Proton on various Linux distributions Like:

  1. Linux Mint 19.1 Tessa

  2. Fedora 29

  3. Solus

  4. POP!_OS

  5. Ubuntu 18.04

  6. Manjaro 18.1 KDE

 

I personal have used Linux Mint 19.1 and Fedora 29 and Fatdog64 800

Would you like to buy a 120 Gigabyte 2.5" Sata SSD disk drive with one of those 6 linuxes preinstalled and with application Steam already installed?

$49.00  plus shipping  sent via United States Postal Service (USPS) to any of the 50 states and Puerto Rico.

https://paypal.me/KlikTel 

Fred Finster   Email me Here. I will respond to your questions. 

Friday, February 23, 2018

3 Free Live Linux Distros to Use on a USB Flash Drive. And one BSD, one Android-x86

3 Free Live Linux Distros to Use on  a USB Flash Drive.  And one BSD

PuppyLinux XenialPup 7.5 (UEFI and Legacy BIOS both supported)

http://distro.ibiblio.org/puppylinux/puppy-xenial/
http://www.murga-linux.com/puppy/index.php?f=2  Beginners Forum Help
http://www.murga-linux.com/puppy/viewtopic.php?t=106479  XenialPup 32bit Forum Posts

Slacko PuppyLinux 6.3.2 compatible with Slackware repositories (UEFI BIOS supported and works with Legacy BIOS)

It should work with any Bios.
Being identified with UEFI, only indicates it has the added stuff, that a UEFI bios may need.
  http://www.murga-linux.com/puppy/viewtopic.php?t=101454&start=225&sid=38eb7edb9872bae12fd65d3b41d5c3ab
http://slacko.eezy.xyz/download.php
http://slacko.eezy.xyz/index.php

LinuxMint   

https://linuxmint.com/download.php
https://linuxmint.com/about.php

Pixel Desktop x86 from RaspberryPi.org   

https://www.raspberrypi.org/downloads/raspberry-pi-desktop/
 https://www.raspberrypi.org/downloads/

And one BSD .ISO File,  GhostBSD 11.1

ftp://ghostbsd.org/releases/amd64/ISO-IMAGES/

Exton Linux Live versions.  Many Many to read about
https://linux.exton.net/
 AndEX | Android-x86 Custom  http://andex.exton.net/?p=684

Jide Remix OS for PC
http://www.jide.com/remixos-for-pc#downloadNow

Use either tool to write a .ISO file to a USB Flash drive from MS Windows O/S
  1. Etcher.io  http://etcher.io
  2. Rufus  https://rufus.akeo.ie/
  3. Linux Live USB Creator  http://linuxliveusb.com/

https://en.wikipedia.org/wiki/Rufus_%28software%29  Wikipedia Entry for Rufus
https://www.techrepublic.com/article/pro-tip-use-rufus-to-create-a-bootable-usb-drive-to-install-almost-any-os/   How To use Rufus Article, Tech Republic


The Goal here is to create a usable Live Linux or BSD computer environment on a USB Flash Drive.  You can carry this personalized computer environment in your own pocket.  It is stable and will allow you to connect to the interenet through Wi-Fi or ethernet interfaces.  You may give this USB Flash Drive to someone that does not have a computer.  Maybe they find a computer with out  a hard disk drive.  Plug in this Live Linux USB Flash drive and computer will boot up and be useable!

I like and use PuppyLinux  XenialPup 7.5 (supports UEFI Bios)or Slacko Puppylinux  6.3.2 (supports legacy BIOS).  These are small 300+ Megabytes .ISO file image size.

LinuxMint 18.3 is large and complete Linux at a 1300 Megabytes .ISO file image size

RaspberryPi Pixel Desktop for x86 is large and good Debian 9 "Stretch" Linux with a Pixel Desktop Environment.

GhostBSD 11.1 is large 1900 Gigabytes Mate or Xfce desktop environment on top of FreeBSD 11.0 base.  Check that you have a FreeBSD supported Wi-Fi device.  Atheros,  Qualcomm Atheros devices are supported.   A USB nano Wi-FI device that plugs into USB port provides a workaround if your internal laptop Wi-Fi device is not supported.  Edimax EW-7811un nano USB Wi-FI device setup  http://forums.ghostbsd.org/viewtopic.php?f=64&t=526

FAQ Wiki  http://wiki.ghostbsd.org/index.php/FAQ
Other URL Links
http://ghostbsd.org  http://wiki.ghostbsd.org   http://forums.ghostbsd.org

From  a PuppyLinux Forum entry  Newbies - Puppy needs YOUR help too!

http://www.murga-linux.com/puppy/viewtopic.php?t=42593&start=1035
There are certain quirks that are annoying. I suppose if one is not familiar with linux they are stressful. if not for the people who create programs and lend their experience on this forum, it would be a complete horror. A person would have to realize that any open source program usually relies on volunteer effort and doesn't have to adhere to more stingy corporate Microsoft guidelines.

To me, over the last 10 or years it's been a learning curve mixed with challenges. It taught me discipline and when to walk away without killing or breaking something or someone. both maybe.

As far as public forums go, you can't read emotion very well. that's a dicipline in itself. I will admit, there are a few that can be taken wrong by how they convey there message. Except Mike walsh and musher0. I'm mostly an observer and learner but those two stand out as the most friendly people I've ever....read. LOL. Semme, if he is still around., has my respect for sheer wealth of knowledge packaged in a seemingly first glance textual arrogance.

Not a personal opinion of character, just easy to take the wrong way through grammar.

As far as an out of the box normal puppy, I dunno. Nothing is going to be like that. Never has for me. Reminds me, as a mechanic, I always wondered why there had to be so much complicated computerized equipment that seemed to change everyday. battery in the wheel well, in the trunk, under the seat. alarm systems tied into things that are not accessible to the average joe. I'd love to buy a car that had the simplicity of a Chinese scooter. Not gonna happen in the big corporate USA. Parts and service are a huge profit percentage. I just have to accept it. I could go to a motor forum and complain but that's not gonna change a dang thing. I just have to learn and adapt, take the good with the bad and try not to go mentally insane.

Tuesday, January 9, 2018

XenialPup 7.5 Linux and Etcher.io USB Flash writer

Test Drive XenialPup 7.5 with a UEFI and Legacy BIOS both supported.  Booting Live Linux from a USB flash drive
  1. Create a new folder in your home directory.  
  2. Download XenialPup 7.5 .ISO file into this new folder.   xenialpup-7.5-uefi.iso
  3. Download Etcher.io application program version 1.3.1 or later

    v1.3.1 - 2018-01-23

    and install this Etcher.io program into your MS Windows operating system (or MacOS or Linux 32 bit or 64 bit).
  4. Insert a blank USB Flash drive into USB socket on your computer. 
  5. Execute  the Etcher program.  Select XenialPup 7.5 .ISO file.  Then select the USB Flash drive. Now start the process to write the selected .ISO file into the selected usb flash drive.  This will overwrite the previous contents of that usb flash drive.  None of the previous contents of the usb flash drive will be saved!

Etcher.io  Ether.io the USB Flash Drive and SD memory card writer

XenialPup 32bit Forum Posts

http://www.murga-linux.com/puppy/viewtopic.php?t=106479  

Wikibooks entry for Puppy_Linux

https://en.wikibooks.org/wiki/Puppy_Linux  Introduction to PuppyLinux Slacko

Youtube Video Links for XenialPup 7.5


https://www.youtube.com/watch?v=M_T2wMKm9QU 

Yonn Lopez XenialPUP 7.5, Compatible with Ubuntu 16.04 'Xenial Xerus'