Free Republic
Browse · Search
General/Chat
Topics · Post Article

Skip to comments.

Is Linux Too Dumbed Down?
Datamation ^ | 22 February 2016 | Matt Hartley

Posted on 02/26/2016 11:15:44 AM PST by ShadowAce

Over the years, I've heard some people claim that Linux is finally ready for the masses. I would suggest that outside of a completely locked down OS such as ChromeOS (which is Linux powered), no OS is genuinely ready for the masses. Instead, it has been my experience that the masses should stick to tablets and Chromebooks.

Smartphones make us dumb

I can see how my view of most computer users would seem a bit harsh. But I'd also be the first to point out that using smartphones have made all of us "dumb" in the sense that our complacency is at an all time high. Comparatively speaking, the difference between smartphones and PCs in terms of root access is night and day.

On a computer, running Linux...root is a mere command away from any terminal. With iOS or Android, you must gain access to a deeper level of the phone in order to have this sort of power. It's not nearly as simple and therein lays the comparative difference.

Most people believe their smartphones are completely safe from exploits and other malicious behavior because they have never experienced it on these devices. Mind you, I didn't claim this was a valid point of view. Rather, this is simply a widespread interpretation of how safe smartphones are. These devices also present a minimal learning curve for most people, so there is little to no reason to learn anything new about them.

Install apps, run the apps, and so forth -- this is how we use these tiny computers.

Now take this same person who is complacent with a smartphone and ask them to use a computer safely. Most of the time, they'll treat it with the same regard they treat their smartphone. And as expected, these same individuals end up requiring local tech help due to malware or other related problems. Point is, most people aren't "into computing" enough to be effective with most computing platforms. And the introduction of smartphones hasn't helped things much.

Newbie friendly distributions

When most people go to get a new operating system, they used to buy a boxed copy from their local retail store or simply upgrade their PC, which came with it pre-installed. More recently, we've seen proprietary operating systems making themselves available via a secure download: Emphasis on the word secure.

At this time, distributions of Linux generally rely on using MD5 hash to verify the authenticity. And as we've witnessed from the Linux Mint project's recent attack, turns out many people aren't checking anything.

Why aren't they checking? Because it's yet another hurdle to getting to the ISO image. Some might argue its because people are in a hurry. Others still, might suggest that people simply don't know how. Honestly, the reasons why are immaterial. What does matter is the fact that we don't require newer users to practice using MD5 hash (OpenPGP secret keys?) to make sure the ISO they grabbed from wherever is, in fact, authentic.

From here, we see newbie distributions do everything possible to set things up for the newer users out of the box. Now my view of this is that this is completely fine. However, the problem is when something stops working, this same newer user doesn't have any idea how to rectify the problem.

I see newbie friendliness to computing as an increasingly problematic double-edged sword. Some folks are actively seeking new information, learning all they can on how to manage their desktops. But as I cruise various help forums, the results aren't looking that great. With new users adopting Linux as their platform of choice...we're seeing stragglers who simply refuse to employ an ounce of willingness to learn to use Linux -- well.

With great distributions, come great responsibility

I believe we, as the more experienced members of the Linux community, need to accept that we're taking on newbies to mentor. I don't say this with disdain or disrespect, quite the contrary. Switching to a new OS for most people is a brave move and deserves a high five!

And for the most part, Linux communities such as Ubuntu, Linux Mint, and PCLinuxOSoffer newer users a safe, comfortable place to ask questions as these newbies spread their wings on their learning adventure.

Sadly though, many of these same newcomers fail to utilize the search feature integrated in most forums. This translates into ample repetitive questions, despite the answers usually already being available. Remember, they've been lead to believe that everything just "works," thanks to the modern distributions of Linux available. So the idea of doing anything short of just asking usually never enters the newbies mind.

To be clear, I'm talking about the complacent newbie, not all Linux newcomers.

It's my opinion that we're at a crossroads. Do we start putting security and knowledge first, with ease of use in the backseat...or do we continue as we have been? Perhaps instead, the issue isn't with distributions at all. Perhaps, the issues we see with newbies starts with how they're interacted with as they enter the Linux community?

Community Tough Love

I believe that the way we handle Linux questions on the forums and even how some distros present things is doing newbies a greater disservice. Understand that I'm not advocating that all Linux distro toss Linux newcomers into the deep end. Instead, I'd like to see greater emphasis on pointing newbies to easy to understand learning resources. YouTube is full of great examples on how to do just about anything. Linux forums are also useful for finding the answer to common Linux questions.

Newbie: "I broke Ubuntu and can't seem to install packages now."

Experienced user: "That is frustrating, but luckily you're not alone in this. As luck would have it, this forum has the answer to this question and many others. Just head over to the search box and type in "can't install software" and you'll have your fix in no time flat."

Now this type of forum dialog provides two points of value. First, it treats the new user with kindness. Second, it also pushes them outside of their comfort zone and encourages them to search for the answer. But, perhaps most importantly...it shows the new Linux user how to search effectively. This is how we prevent the dumbing down of Linux. Instead of hand-holding or, worse, treating the newbie like a pariah, we can accept that all of us are part of the same growing community.

We are a Linux family -- let's act like it

Yes, I think that Linux has become too dumbed down. But, after careful reflection I don't think it's the distributions that are ultimately responsible for this. Despite them making this crazy easy for newbies, much of the problem is the world around us. Bundle that with dumbed down tech devices for the masses, instant answers to questions from chat rooms and forums...it's no wonder why Linux newbies seem like they're too lazy to want to learn anything new!

Why would they, so much of it is being done for them.

What say you? Do you think newbies need more example setting from us and less hand-holding? Perhaps you completely disagree?


TOPICS: Computers/Internet
KEYWORDS: linux
Navigation: use the links below to view more comments.
first previous 1-2021-36 last
To: killermosquito
easiest way to test the hash for iso is to open K3b, then select "tools" and "burn image". Select the file you want to validate. The first then K3b will do is calculate the hash of the file. Compare that to what is specified on the page.

Even easier, but it requires (shudder) the command line, is to simply enter "md5sum filetocheck.iso", where 'filetocheck.iso' is the name of the file you want to check.

 

$ md5sum /home/iso/linuxmint-17.3-kde-64bit.iso
9fae1a87bebe4b57f6a587272f0cee3d  /home/iso/linuxmint-17.3-kde-64bit.iso
 

21 posted on 02/26/2016 1:27:50 PM PST by zeugma (Lon Horiuchi is the true face of the feral government. Remember that. Always.)
[ Post Reply | Private Reply | To 12 | View Replies]

To: killermosquito
oh, and you also have to keep in mind that there are several different hashes that might be used. Most folks use md5, but it's really not a good choice any more because it's been shown to be possible to force a hash collision. When they show you the hash, they should also tell you how it was calculated.  The following shows the same file being tested using several different hashing techniques. Of these, the most secure hash is sha512, but really, anything over sha224 is good. (sha1 has similar known vulnerabilities to md5)

 

$ for x in md5sum sha1sum sha224sum sha256sum sha384sum sha512sum; do $x linuxmint-17.3-kde-64bit.iso;done
9fae1a87bebe4b57f6a587272f0cee3d  linuxmint-17.3-kde-64bit.iso
d3e8f755df63801678af48bf0c2b716d7a066fdd  linuxmint-17.3-kde-64bit.iso
672792a81435ef77296fd403771f911df26d359e0020dd1e7fb9d204  linuxmint-17.3-kde-64bit.iso
aa33bf286e92556163c335b258fe5cbd9f65f4ab8490e277fed94cf20d3920e4  linuxmint-17.3-kde-64bit.iso
7ae57b2bfe931c56bb355fc0817717636edcdc08d009cb64497605a645ecc46725ab259928a2d91489278c15e212df3f  linuxmint-17.3-kde-64bit.iso
d3c8499c6d3ab6b852d2592ab13129c5289f812443c848ca3f9221a516778d46e85f8ca9c7ac08e1a08882d94e28e4d9558a255366560f75065247568b3f7977  linuxmint-17.3-kde-64bit.iso

 

22 posted on 02/26/2016 1:35:54 PM PST by zeugma (Lon Horiuchi is the true face of the feral government. Remember that. Always.)
[ Post Reply | Private Reply | To 12 | View Replies]

To: ShadowAce

A good design, regardless of what the final product is, will make the complex simple.


23 posted on 02/26/2016 2:13:02 PM PST by Organic Panic
[ Post Reply | Private Reply | To 1 | View Replies]

To: zeugma
It's like two factor authentication (not just like it) but sort of. You calculate the hash as you've indicated. The desired value is published elsewhere. You compare the value you got from the value that is expected. For example if you go to http://lug.mtu.edu/fedora/linux/releases/23/Workstation/x86_64/iso/ You see the following entries:
Fedora-Live-Workstation-x86_64-23-10.iso           29-Oct-2015 21:42          1469054976
Fedora-Workstation-23-x86_64-CHECKSUM              30-Oct-2015 20:37                1156
Fedora-Workstation-netinst-x86_64-23.iso           30-Oct-2015 01:37           433061888
Two of these are giant files and one is a fairly small one. If you calculate the SHA256 hashes on the giant files they should match the values published in the tiny one.
# The image checksum(s) are generated with sha256sum.
SHA256 (Fedora-Workstation-netinst-x86_64-23.iso) = f38d1aca6211b6bbb2873a550f393d03866294e3e5094256feb4cd647c25a310

SHA256 (Fedora-Live-Workstation-x86_64-23-10.iso) = a91eca2492ac84909953ef27040f9b61d8525f7ec5e89f6430319f49f9f823fe
And the checksums are signed with a PGP signature. So if one wants to be super careful one can be. Full disclosure - I am not.
24 posted on 02/26/2016 2:14:59 PM PST by 2 Kool 2 Be 4-Gotten
[ Post Reply | Private Reply | To 22 | View Replies]

To: PAR35

Computers/Internet is not a help forum. It’s discussion forum and the topic is Linux. The article pointed out not only that support communities exist, but how to use them more effectively.

Did you ask a question I missed?


25 posted on 02/26/2016 2:20:46 PM PST by LoneStar42
[ Post Reply | Private Reply | To 20 | View Replies]

To: zeugma

I’ve introduced a few folks to Linux in the past. I don’t do it any more, because I’m not patient enough with folks. Most people don’t have any idea how to really use MS-Windows, and they’ve been using it for years. Asking them to do anything different is an exercise in frustration for both you and them.It has nothing whatsoever with how easy or hard Linux is, because they don’t actually understand computers regardless of what it’s running. Frankly, I think most folks are better off with tablets.


It’s true. I have my wife on linux but I end up helping her let’s say 4 or 5 times a week. Which is fine because she’s my wife. If it was my brother-in-law or my barber it wouldn’t work.


26 posted on 02/26/2016 2:23:07 PM PST by 2 Kool 2 Be 4-Gotten
[ Post Reply | Private Reply | To 19 | View Replies]

To: 2 Kool 2 Be 4-Gotten
It’s true. I have my wife on linux but I end up helping her let’s say 4 or 5 times a week. Which is fine because she’s my wife. If it was my brother-in-law or my barber it wouldn’t work.

Ya. I converted my wife to the side of light and goodness as well. Then she went Mac on me!

Fortunately, once she went Mac, my standard answer quickly became. "I haven't the foggiest." Mom-in-law got the Macbook after wifeofzeugma passed last October. Standard answer is still the same though.

27 posted on 02/26/2016 2:35:17 PM PST by zeugma (Lon Horiuchi is the true face of the feral government. Remember that. Always.)
[ Post Reply | Private Reply | To 26 | View Replies]

To: ShadowAce

One could say that about MAC OSX. But it’s a *nix. Its actually UNIX (I know you know that). Very user friendly. Very locked down.

But open a shell, issue a few commands, and you’re root. The whole system is your oyster. If that’s your gig. For those who don’t need to know, or want to know, it serves their purpose - quite well.

No reason why Linux can’t offer that same sort of friendly user experience, for the uninitiated.


28 posted on 02/26/2016 2:37:57 PM PST by AFreeBird
[ Post Reply | Private Reply | To 1 | View Replies]

To: zeugma

My sincere condolences zeugma. Truly.


29 posted on 02/26/2016 2:54:26 PM PST by 2 Kool 2 Be 4-Gotten
[ Post Reply | Private Reply | To 27 | View Replies]

To: LoneStar42

I don’t have to ask a question. My opinion is as valuable (probably more valuable) than yours. Don’t post articles if you don’t want comments.

Sounds like you also may be a stereotypical Linux ‘person’.

Linux would have had more success if it wasn’t for the elitist Linux jerks.


30 posted on 02/26/2016 3:19:21 PM PST by PAR35
[ Post Reply | Private Reply | To 25 | View Replies]

To: PAR35

Actually, it would be more popular with a better informed consumer.

Want some cheese with that whine?


31 posted on 02/26/2016 3:30:29 PM PST by LoneStar42
[ Post Reply | Private Reply | To 30 | View Replies]

To: LoneStar42
Linux is for people who drive stick shifts and do their own maintenance. People not intimidated about getting under the hood.

Which is why Linux has made no inroads into mainstream use, despite Windows sucking rocks for the last few versions. And this author is like the guy who says, if you can't rebuild an engine, you should stick to bicycles, n00b, and then tosses a do-it-yourself manual.

That wins no converts.

32 posted on 02/26/2016 4:40:29 PM PST by LexBaird (Tyrannosaurus Lex, unapologetic carnivore)
[ Post Reply | Private Reply | To 13 | View Replies]

To: LexBaird

I ain’t selling anything. The US govt is aiming for 78% adoption for obvious economic interests.

Use your favorite search tool. I bill $200/hour for consulting, two hour minimum. Either pay me or do it yourself.


33 posted on 02/26/2016 5:24:43 PM PST by LoneStar42
[ Post Reply | Private Reply | To 32 | View Replies]

To: ShadowAce
I believe that the way we handle Linux questions on the forums and even how some distros present things is doing newbies a greater disservice

I remember asking a Mint forum how I could full R+R permissions by login in with real (as in Puppy) root access. That did not go over too well.

ow this type of forum dialog provides two points of value. First, it treats the new user with kindness. Second, it also pushes them outside of their comfort zone and encourages them to search for the answer.

At least it was an answer, while asking for a simple (as in AutoHotKey in Windows) proven way to remap (persistently) CapsLock to ctr+c and Esc to ctrl+v took a lot of asking different forums without success. I finally found a distro that enabled it thru the keyboard shortcuts.

34 posted on 02/26/2016 5:58:21 PM PST by daniel1212 ( Turn to the Lord Jesus as a damned and destitute sinner+ trust Him to save you, then follow Him!)
[ Post Reply | Private Reply | To 1 | View Replies]

To: LoneStar42

Real men know how to run CP/M. Let’s see you young Linux geeks try to make a real operating system work.


35 posted on 02/26/2016 9:27:39 PM PST by PAR35
[ Post Reply | Private Reply | To 31 | View Replies]

To: PAR35

The old saw is “never buy a car from a mechanic.” The reason is that he doesn’t work on his own when he’s off work. I’m sure you understand that talking shop after doing it for ten hours a day, on your own time isn’t fun.

As for CP/M, I asked a coworker at Dell in ‘95 if he knew CP/M. His reply, “Yes. And if I hear it from anyone else here I’m looking for you.”

Young? I just filed for social security. Thanks!


36 posted on 02/27/2016 5:00:30 PM PST by LoneStar42
[ Post Reply | Private Reply | To 35 | View Replies]


Navigation: use the links below to view more comments.
first previous 1-2021-36 last

Disclaimer: Opinions posted on Free Republic are those of the individual posters and do not necessarily represent the opinion of Free Republic or its management. All materials posted herein are protected by copyright law and the exemption for fair use of copyrighted works.

Free Republic
Browse · Search
General/Chat
Topics · Post Article

FreeRepublic, LLC, PO BOX 9771, FRESNO, CA 93794
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson