Post by philoNow that I've upgraded to 24.04, I've tested pretty much everything out
and it's working quite well. There is one minor bug however.
I've tried three different burning apps and though I can easily "burn"
an iso to USB stick,no option is present for burning to DVD.
Yes,I can write files to it, so it works. Yes, I know, DVD's are going
the way of floppies but still I'm curious why the option to do this was
removed.
# Ubuntu (from clean install, welcome to you, new Windows refugee...)
#
# 1) Can't get Synaptic -- sudo apt install synaptic does not work
# 2) Discover Universe and Multiverse are turned off.
# A weird form of Jedi Religion, this switch-off of thousands of packages.
# 3) Develop a stanza for a clean install of Ubuntu (the year of the Linux Desktop...)
# It's a good thing I have a notes file.
#
# These are the five lines for a savvy shopper. Unnecessary if synaptic
# appears magically for you. No, I don't want to use any Appy/Crappy software App thx.
# As for the refugee, you'll find we walk uphill both ways here.
# I bet Synaptic works in Mint. If you had Synaptic, you could just tick the repo boxes.
sudo add-apt-repository universe # Add Universe to the basic packages
sudo add-apt-repository multiverse # Add Multiverse to the basic packages
sudo apt update # Pull in config files for U and M
sudo apt install synaptic # Install Synaptic package manager
sudo synaptic # Run Synaptic (as root, for pkg mgmt)
Use the lower-left corner of the Desktop in Ubuntu, to "launch synaptic by name".
In the Synaptic Search box, type the word "burn" without the double quotes:
brasero # CD/DVD burning application for GNOME
k3b # burning application (pulls in some bits of KDE)
xfburn # burning application (related to xfce DE)
I've used k3b before and found it good. Takes several minutes to unpack
all the KDE dependencies (on a processor that draws up to 156W).
*******
To improve life on your LAN, as a new user.
From Terminal application.
sudo apt install samba # Or search for samba in Synaptic
sudo gedit /etc/samba/smb.conf
# Below the string workgroup = WORKGROUP, add this. Salt to taste
# or as your "sense of security" demands. The intention here is to
# get something working for the user, not to have a discussion about sec.
workgroup = WORKGROUP # Example of a workgroup choice on a home LAN
server min protocol = NT1 # Win10/Win11 "Programs and Features", turn on SMBV1 if you expect that to work
server max protocol = smb3 # NT1 helps withj WinXP, or with a typical old NAS box running SMB1
client min protocol = NT1
client max protocol = smb3
client lanman auth = yes
ntlm auth = yes
# If you cannot seem to use your account when serving, try this.
sudo smbpasswd -a bullwinkle # We're adding acct "bullwinkle" to the db.
[sudo] password for bullwinkle:
New SMB password:
Retype new SMB password:
Added user bullwinkle.
Now, one last thing in Terminal.
Actually getting to where your Ubuntu DVD ISO is located.
nautilus smb://wallace/shared # Wallace is my daily driver (file share)
# Log in using the sharing account on Wallace
# Nautilus progress, is lower-left corner...
# I put the ISO in ~/Downloads .
(start K3B, navigate to ISO file, double-click it for the dialog needed)
[Picture]
Loading Image...And welcome aboard, new Ubuntu user. Hope the wheel greasing helps...
Paul