I had a working Debian stretch, but the version supported had problems with my motherboard ethernet port so I decided to try the Buster version 10.1
https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/
Downloaded debian-10.1.0-amd64-DVD-1.iso and write to a stick using Etcher.
Boot from usb stick, then did "install" (not graphical install)
Answered a few questions
Manual partition, used entire disk
separate partitions for var, tmp, home... (last option)
Setup network mirror
After installing debian, reboot and login as root
Fix Update
To make update work, I had to go find this file /etc/apt/sources.list
cd /etc/aptlscheck directory and make sure sources.list is there
nano sources.listI use nano to edit. Edit the file and add # to start of line (comment out) that starts with "deb cdrom" because debian wanted a cd rom to do an update.
Set up sudo
https://linuxize.com/post/how-to-create-a-sudo-user-on-debian/
Start becoming superuser with
su
Enter your root password.
Now, install sudo with
apt-get install sudoapt-get install --fix-missing sudoDo the following to disable password prompt for a user, must be done from PC as root.
Edit the file /etc/sudoers to add line like these, use visudo to edit
cd /etcvisudo sudoersAdded this line to the end, where randy is the user:
randy ALL=(ALL) NOPASSWD:ALL
Exit.
Add the user account to the group sudo with:
adduser username sudo. Where username is your user account.
REMOTE CONNECT NOW
now go to remote PC, start ssh program, then login as the user
Make sure debian is up to date
sudo apt-get -y update sudo apt-get -y dist-upgrade sudo apt-get -y install linux-image-rt-amd64From this directory, get latest files and install like below: https://www.sonarnerd.net/src/stretch/
Note: The wget commands take a little while, it looks frozen but will finish, be patient.
sudo wget http://www.sonarnerd.net/src/stretch/linux-image-4.9.186-jl+_14_amd64.debsudo wget http://www.sonarnerd.net/src/stretch/linux-headers-4.9.186-jl+_14_amd64.deb sudo dpkg -i linux-headers-4.9.186-jl+_14_amd64.deb sudo dpkg -i linux-image-4.9.186-jl+_14_amd64.debsudo apt-get -y install libglib2.0-0 libflac8 libasound2 libasound2-data libgomp1 rygel alsa-utilsNote that the libgmpris package has been also rebuilt for Buster. So if you upgrade, remember to upgrade that too!