Caluser2000
Member
Of course good software came with great manuals back then as well..
Oof! Just a month ago, I shotcanned all my Netware 3.22 and SCO related books and install disks and even some of the older linux books.I've collected a whole loot of books/manuals over the years. Here is just some of them...
View attachment 20951
yES AND YES.....Oof! Just a month ago, I shotcanned all my Netware 3.22 and SCO related books and install disks and even some of the older linux books.
But the burning question is... Does that Amiga still work? And do you have a monitor that works with it?
i got into computers when DOS was the only way! I remember a lot of those books. esp the ones for windows systems. Got to say I am so glad we no longer have to switch out the floppies anymore to keep using the system! lol!I've collected a whole loot of books/manuals over the years. Here is just some of them...
View attachment 20951
I am just beginning to look into Linux for a W10 computer that I want to keep using for video conferencing (wonderful screen, audio Mic, and camera). I am presently considering Mint with Cinnamon and Zorin. Thanks for tilting the decision toward Zorin.Yes that's true, especially because some Linux distros, like the rolling release types can break on updating sometimes.
I should really not be complaining about Zorin that's only a little slower than others but works flawlessly and updates don't break anything.
They are both good, but I feel like Zorin makes better use of modern laptops because it features GNOME and Wayland (and therefore it supports ex. 1:1 gestures and has better mutliscreen support). Linux Mint is really solid though and its really hard to breakI am just beginning to look into Linux for a W10 computer that I want to keep using for video conferencing (wonderful screen, audio Mic, and camera). I am presently considering Mint with Cinnamon and Zorin. Thanks for tilting the decision toward Zorin.
exactly!What is frustrating is when everything works well and just one or two programs freeze or crash and I don't know why.
# ================================
update and clean... Maintenance...
# ================================
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get autoremove
sudo apt purge <package-name>
sudo apt-get check
sudo apt --fix-broken install
sudo apt list --upgradable
sudo apt-mark hold <package-name>
sudo apt-mark unhold <package-name>
sudo apt-mark showhold
sudo apt depends -i <package-name>
sudo apt-cache rdepends <package-name> ...who needs this package
sudo apt download <package-name>
sudo apt install -s <package-name> ... Simulates
sudo apt remove -s <package-name> ...Simulates
sudo dpkg --configure -a ...Resolves interrupted
sudo apt-get check ...Checks for broken
sudo apt list --installed
sudo apt-get --reinstall install [package_name]
# ================================
update and clean single line...
# ================================
sudo apt-get update; sudo apt-get dist-upgrade; sudo apt-get clean; sudo apt-get autoclean; sudo apt-get autoremove; sudo apt-get autoremove --purge; sudo apt-get check; nmcli connection show
# ================================
# ================================
Install held back packages...
# ================================
sudo apt -o APT::Get::Always-Include-Phased-Updates=true upgrade
# ================================
# ================================
Clean trash and cache...
# ================================
sudo rm -rf /root/.local/share/Trash/*/**; sudo rm -rf /home/*/.local/share/Trash/*/**; sudo rm -rf ~/.cache/thumbnails/*
# ================================
# ================================
Clear oversized systemlog...
# ================================
sudo sh -c 'echo > /var/log/syslog'
# ================================
# ================================
Become root...
# ================================
su
# ======= Clean Logs ===============
for CLEAN in $(find /var/log/ -type f)
do
cp /dev/null $CLEAN
done
# ================================
exit
I kinna giggle when i read about complaints about it being too different than windows or mac. Of course it is.. It's Linux.![]()