laskachien wrote:what a serious answer not often I get such an interesting and SIMPLE solution.Yes I just think this morning "why do you not simply use Gmail"I m old 84 and no more a good sight,it goes now only on PC.Before my hobby was electronic and C++ that s finished "It was a good time when I was young F.Sinatra!"
Thanks for all I now had to learn as I learned tha Konsole is not bash !!!Linux is wonderfull to learn not for stable users!I d know the first linuxes awfull to install a simple graphic output(I think years 80)
You're welcome! Thank you for your words of appreciation, they are not all that common.
I'm a few years younger than you but have had a couple of major events that have limited me, and now I am losing some of my remaining faculties, like my short-term memory, and find things much more difficult than I used to. When I started using Linux about 15 years ago I thought that I might never be able to learn it. There is still the other 90% left to learn, but I have made some progress In the meantime. Yes, Linux on the Desktop has made huge progress - some regressions going on at the moment in the GUI, perhaps, but the engine under the hood is pretty well developed now.
One thing that I have found very helpful in gaining [tentative] mastery over my system has been the command line. There is an amazing amount of information embedded in those command line applications and this information is there at your fingertips whenever you need it, so I keep one tab in the konsole window open with the 'man file' and another for doing the work. These days you can select, copy and paste from one to the other, saving typing, errors and time. Also the up-arrow takes you back to the previous command which you can edit for corrections or a repetition with slightly different parameters. Familiarity with these tools enables doing lots of things quickly and easily and I find it just a lot of fun these days.
The other arm of my technique is simply doing a Google search on the text of some issue. Say, "How do I change the root password in Linux?" - select, right-click and choose 'Search Google for ...' and then if the answer is not in the first couple of hits, fine-tune the search until it is found. Most problems have been experienced by others and answers have been given many times over, in How-tos or forum threads, even archived email lists or the official web sites of software, its all there for the finding.
Of course, everybody has their own comfort-zone in terms of technical difficulty that they are prepared to tackle and some of this is a bridge too far for many, but I would encourage everybody to learn some of the few basics so that they are not ever lost in the bush without a compass, figuratively, when it comes to a Linux system.
Some commands to start with : --
- Code: Select all
cd
# change the working directory to your 'Home' directory
cd Downloads
# change from 'Home' to the Downloads directory
cd 'Tab' 'Tab'
# lists all valid completions, meaning all sub-directories in the current directory.
# Note : hitting the 'Tab' key at any point will apply command completion up to the point where an ambiguity occurs at which point you have to supply the next key-stroke manually, etc, saving typing, errors and time.
ls
# list all contents of the working directory
man -k keyword
# list all occurrences of the keyword in the man files
man application
# show the man [manual] file for 'application'
application --help
# give basic help information about 'application'
Those are possibly the basics to get anyone started. At least, once you have had a play around in the command line interface and lost the fear of the unknown, you can then follow some command that someone suggests when offering help. [Not that I suggest you do too much of this but others reading might like to take note.]
And all of this I am forgetting faster than I can learn it these days!
Paul